CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_xform_expr_mode_decls.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
27  static const xform_expr_mode PRE;
28 
29 
34  static const xform_expr_mode POST;
35 
36 
52  static const xform_expr_mode POST_DEREFS_PRE;
53 
54 
59  static const xform_expr_mode POST_STRICT;
60 
61 
66  static const xform_expr_mode POST_DEREFS_PRE_STRICT;
static const xform_expr_mode POST_DEREFS_PRE
The expression is evaluated as follows.
Definition: cs_xform_expr_mode_decls.hpp:52
static const xform_expr_mode POST_STRICT
The expression should be evaluated using values of variables at the end of the transformation.
Definition: cs_xform_expr_mode_decls.hpp:59
static const xform_expr_mode POST
The expression should be evaluated using values of variables at the end of the transformation.
Definition: cs_xform_expr_mode_decls.hpp:34
static const xform_expr_mode PRE
The expression should be evaluated using values of variables at the beginning of the transformation...
Definition: cs_xform_expr_mode_decls.hpp:27
static const xform_expr_mode POST_DEREFS_PRE_STRICT
The expression is evaluated as specified for xform_expr_mode::POST_DEREFS_PRE.
Definition: cs_xform_expr_mode_decls.hpp:66