Searched refs:is_const (Results 1 - 25 of 29) sorted by path

12

/external/chromium_org/base/
H A Dcallback_internal.h81 !is_const<T>::value;
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/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py3247 is_const = True
3279 is_const = False
3281 if not is_const:
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCode.py627 if type.is_const:
1152 if entry.is_builtin and entry.is_const:
H A DExprNodes.py696 if src_type.is_const:
1615 if var_entry.is_builtin and var_entry.is_const:
1701 if self.type.is_const:
1725 if entry.is_builtin and entry.is_const:
1742 if not entry.is_const: # cached builtins are ok
1771 if not (entry.is_const or entry.is_variable
1818 if entry is not None and not (entry.is_const or entry.is_cfunction or entry.is_builtin):
1854 if entry.is_builtin and entry.is_const:
2493 if item_type.is_const:
2903 if node.type.is_const
[all...]
H A DOptimize.py854 and cond.operand2.entry.is_const:
860 and cond.operand1.entry.is_const:
H A DParsing.py307 is_const = isinstance(base_type, Nodes.CConstTypeNode)
308 if (not is_memslice and not is_template and not is_const
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:
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 DTypeInference.py499 if result_type.is_const:
507 if result_type.is_const:
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dcpplint.py3961 is_const = True
3985 is_const = False
3987 if not is_const:
/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/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/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...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp881 void is_const() function
/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/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py3384 is_const = True
3408 is_const = False
3410 if not 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
H A DXprHelper.h290 bool(internal::is_const<T1>::value),
461 enum { value = !bool(is_const<ExpressionType>::value) &&
/external/libcxx/test/support/
H A Dmin_allocator.h50 !std::is_const<T>::value
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A DAndroid.mk163 test_name := utilities/meta/meta.unary/meta.unary.prop/is_const
164 test_src := is_const.pass.cpp
H A Dis_const.pass.cpp12 // is_const
19 static_assert(!std::is_const<T>::value, "");
20 static_assert( std::is_const<const T>::value, "");
21 static_assert(!std::is_const<volatile T>::value, "");
22 static_assert( std::is_const<const volatile T>::value, "");
35 static_assert(!std::is_const<int&>::value, "");
36 static_assert(!std::is_const<const int&>::value, "");
/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/libvpx/libvpx/tools/
H A Dcpplint.py3961 is_const = True
3985 is_const = False
3987 if not is_const:

Completed in 3480 milliseconds

12