CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_xform_expr_mode_defs.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  */
18 #ifdef CS_CPP_IMPL
19 const xform_expr_mode xform_expr_mode::PRE = xform_expr_mode(csxem_pre);
20 const xform_expr_mode xform_expr_mode::POST = xform_expr_mode(csxem_post);
21 const xform_expr_mode xform_expr_mode::POST_DEREFS_PRE = xform_expr_mode(csxem_post_derefs_pre);
22 const xform_expr_mode xform_expr_mode::POST_STRICT = xform_expr_mode(csxem_post_strict);
23 const xform_expr_mode xform_expr_mode::POST_DEREFS_PRE_STRICT = xform_expr_mode(csxem_post_derefs_pre_strict);
24 #endif
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