Home
last modified time | relevance | path

Searched refs:is_const (Results 1 – 7 of 7) sorted by relevance

/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp35 struct is_const { struct
40 struct is_const<const T> { struct
44 int is_const0[is_const<int>::value? -1 : 1]; argument
45 int is_const1[is_const<const int>::value? 1 : -1];
46 int is_const2[is_const<const volatile int>::value? 1 : -1];
47 int is_const3[is_const<const int [3]>::value? 1 : -1];
48 int is_const4[is_const<const volatile int[3]>::value? 1 : -1];
49 int is_const5[is_const<volatile int[3]>::value? -1 : 1];
/external/mesa3d/src/glsl/
Dloop_analysis.h179 const bool is_const = (this->num_assignments == 0) in is_loop_constant() local
193 assert(!this->var->read_only || (this->var->read_only && is_const)); in is_loop_constant()
195 return is_const; in is_loop_constant()
/external/libpcap/
Doptimize.c558 int is_const; member
596 vmap[val].is_const = 1;
843 if (vmap[val].is_const) {
913 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) {
973 if (alter && vmap[v].is_const) {
1005 if (alter && vmap[val[A_ATOM]].is_const) {
1040 if (vmap[val[A_ATOM]].is_const) {
1058 if (alter && vmap[val[X_ATOM]].is_const) {
1059 if (vmap[val[A_ATOM]].is_const) {
1079 if (alter && vmap[val[A_ATOM]].is_const
[all …]
/external/stlport/stlport/
Dtype_traits425 struct is_const :
430 struct is_const<_Tp const> :
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
Dcpp.py2866 is_const = True
2898 is_const = False
2900 if not is_const:
/external/v8/src/
Dparser.cc2073 bool is_const = false; in ParseVariableDeclarations() local
2109 is_const = true; in ParseVariableDeclarations()
2225 Scope* initialization_scope = is_const ? declaration_scope : top_scope_; in ParseVariableDeclarations()
2280 if (is_const) { in ParseVariableDeclarations()
2354 if (nvars == 1 && !is_const) { in ParseVariableDeclarations()
/external/clang/test/SemaCXX/
Dtype-traits.cpp816 void is_const() in is_const() function