CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_xr_kind_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  */
21  static const xr_kind TYPE;
22 
23 
25  static const xr_kind NAMESPACE;
26 
27 
29  static const xr_kind FUNC;
30 
31 
33  static const xr_kind FUNC_STATIC;
34 
35 
37  static const xr_kind METHOD;
38 
39 
41  static const xr_kind METHOD_STATIC;
42 
43 
45  static const xr_kind VAR_GLOBAL;
46 
47 
49  static const xr_kind VAR_STATIC;
50 
51 
53  static const xr_kind VAR_LOCAL_STATIC;
54 
55 
57  static const xr_kind VAR_LOCAL;
58 
59 
61  static const xr_kind VAR_PARAMETER;
62 
63 
65  static const xr_kind MACRO;
66 
67 
69  static const xr_kind FIELD;
70 
71 
73  static const xr_kind ENUM;
74 
75 
77  static const xr_kind STRINGLIT;
78 
79 
81  static const xr_kind TLT;
82 
83 
85  static const xr_kind TLV;
86 
87 
89  static const xr_kind LABEL;
90 
91 
93  static const xr_kind FILE;
94 
95 
97  static const xr_kind TAG;
98 
99 
101  static const xr_kind BUILTIN;
static const xr_kind LABEL
label: an identifier used as a label.
Definition: cs_xr_kind_decls.hpp:89
static const xr_kind METHOD
a (non-static) method method name.
Definition: cs_xr_kind_decls.hpp:37
static const xr_kind ENUM
enum: an individual enum symbol.
Definition: cs_xr_kind_decls.hpp:73
static const xr_kind FILE
file: a file name (including extension).
Definition: cs_xr_kind_decls.hpp:93
static const xr_kind STRINGLIT
A string literal.
Definition: cs_xr_kind_decls.hpp:77
static const xr_kind TLV
[C++ only] template value parameter: the name of a value parameter for a template.
Definition: cs_xr_kind_decls.hpp:85
static const xr_kind BUILTIN
[C++ / GNU C only] builtin: the name of a __builtin_*() function.
Definition: cs_xr_kind_decls.hpp:101
static const xr_kind FIELD
field: a field name in an aggregate.
Definition: cs_xr_kind_decls.hpp:69
static const xr_kind VAR_STATIC
a static variable name.
Definition: cs_xr_kind_decls.hpp:49
static const xr_kind TAG
tag: a type tag.
Definition: cs_xr_kind_decls.hpp:97
static const xr_kind METHOD_STATIC
a static method name.
Definition: cs_xr_kind_decls.hpp:41
static const xr_kind NAMESPACE
[C++ only] namespace: a namespace name.
Definition: cs_xr_kind_decls.hpp:25
static const xr_kind FUNC
a (non-static) function name.
Definition: cs_xr_kind_decls.hpp:29
static const xr_kind FUNC_STATIC
a static function name.
Definition: cs_xr_kind_decls.hpp:33
static const xr_kind TLT
[C++ only] template type parameter: the name of a type parameter for a template.
Definition: cs_xr_kind_decls.hpp:81
static const xr_kind VAR_GLOBAL
a global variable name.
Definition: cs_xr_kind_decls.hpp:45
static const xr_kind VAR_LOCAL
a local variable name.
Definition: cs_xr_kind_decls.hpp:57
static const xr_kind TYPE
type: a type name.
Definition: cs_xr_kind_decls.hpp:21
static const xr_kind VAR_LOCAL_STATIC
a locally-scoped static variable name.
Definition: cs_xr_kind_decls.hpp:53
static const xr_kind VAR_PARAMETER
a parameter name.
Definition: cs_xr_kind_decls.hpp:61
static const xr_kind MACRO
macro: a macro name.
Definition: cs_xr_kind_decls.hpp:65