Searched defs:is_const (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/base/
H A Dtemplate_util.h53 template <class T> struct is_const : false_type {}; struct in namespace:base
54 template <class T> struct is_const<const T> : true_type {}; struct in namespace:base
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dloop_analysis.h202 const bool is_const = (this->num_assignments == 0) local
216 assert(!this->var->read_only || (this->var->read_only && is_const));
218 return is_const;
/external/eigen/Eigen/src/Core/util/
H A DMeta.h74 template <typename T> struct is_const { enum { value = 0 }; }; struct in namespace:Eigen::internal
75 template <typename T> struct is_const<T const> { enum { value = 1 }; }; struct in namespace:Eigen::internal
/external/mesa3d/src/glsl/
H A Dloop_analysis.h202 const bool is_const = (this->num_assignments == 0) local
216 assert(!this->var->read_only || (this->var->read_only && is_const));
218 return is_const;
/external/clang/test/SemaTemplate/
H A 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];
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/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_asm.c727 static int is_const(int sel) function
773 if (is_const(sel)) { /* Any constant, including literal and inline constants. */
/external/libpcap/
H A Doptimize.c524 int is_const; member in struct:vmapinfo
560 vmap[val].is_const = 1;
798 if (vmap[val].is_const) {
869 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_X) {
879 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) {
936 if (alter && vmap[v].is_const) {
968 if (alter && vmap[val[A_ATOM]].is_const) {
1003 if (vmap[val[A_ATOM]].is_const) {
1021 if (alter && vmap[val[X_ATOM]].is_const) {
1022 if (vmap[val[A_ATOM]].is_const) {
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.c727 static int is_const(int sel) function
773 if (is_const(sel)) { /* Any constant, including literal and inline constants. */
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DSymtab.py73 # is_const boolean Is a constant
147 is_const = 0 variable in class:Entry
452 entry.is_const = 1
928 var_entry.is_const = True
1073 entry.is_const = 1 # cached
H A DPyrexTypes.py153 # is_const boolean Is a C const type.
209 is_const = 0 variable in class:PyrexType
1219 is_const = 1 variable in class:CConstType
2237 if self.base_type.is_const:
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1029 ClangASTContext::GetCStringType (bool is_const) argument
1034 if (is_const)
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp881 void is_const() function
/external/chromium_org/v8/src/
H A Dparser.cc2103 bool is_const = false; local
2141 is_const = true;
2201 is_const ? Interface::NewConst() : Interface::NewValue();
2241 Scope* initialization_scope = is_const ? declaration_scope : scope_;
2297 if (is_const) {
2378 if (nvars == 1 && !is_const) {
3116 bool is_const = peek() == Token::CONST; local
3127 is_const ? Interface::NewConst() : Interface::NewValue();
H A Druntime.cc2214 bool is_const, bool is_function) {
2223 if (is_const) return ThrowRedeclarationError(isolate, name);
2276 bool is_const = initial_value->IsTheHole(); local
2278 DCHECK(is_var + is_const + is_function == 1);
2298 if (is_const) attr |= READ_ONLY;
2300 if (!is_const && !is_eval) attr |= DONT_DELETE;
2304 is_var, is_const, is_function);
2390 bool is_const = initial_value->IsTheHole(); local
2392 DCHECK(is_var + is_const + is_function == 1);
2412 value, attr, is_var, is_const, is_functio
2211 DeclareGlobals(Isolate* isolate, Handle<GlobalObject> global, Handle<String> name, Handle<Object> value, PropertyAttributes attr, bool is_var, bool is_const, bool is_function) argument
[all...]

Completed in 421 milliseconds