Searched refs:is_const (Results 1 - 16 of 16) sorted by relevance

/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/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/base/
H A Dcallback_internal.h81 !is_const<T>::value;
H A Dtemplate_util.h75 template <class T> struct is_const : false_type {}; struct in namespace:base
76 template <class T> struct is_const<const T> : true_type {}; struct in namespace:base
/external/libpcap/
H A Doptimize.c558 int is_const; member in struct:vmapinfo
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/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.h268 bool(internal::is_const<T1>::value),
439 enum { value = !bool(is_const<ExpressionType>::value) &&
/external/chromium_org/v8/src/
H A Dparser.cc1816 bool is_const = false; local
1852 is_const = true;
1929 is_const ? Interface::NewConst() : Interface::NewValue();
1970 Scope* initialization_scope = is_const ? declaration_scope : top_scope_;
2027 if (is_const) {
2107 if (nvars == 1 && !is_const) {
2704 bool is_const = peek() == Token::CONST; local
2715 is_const ? Interface::NewConst() : Interface::NewValue();
H A Druntime.cc2077 bool is_const = value->IsTheHole(); local
2079 ASSERT(is_var + is_const + is_function == 1);
2081 if (is_var || is_const) {
2121 if (is_const || (is_native && is_function)) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py3213 is_const = True
3245 is_const = False
3247 if not is_const:
/external/libvpx/libvpx/tools/
H A Dcpplint.py3380 is_const = True
3404 is_const = False
3406 if not is_const:
/external/v8/src/
H A Dparser.cc2073 bool is_const = false; local
2109 is_const = true;
2225 Scope* initialization_scope = is_const ? declaration_scope : top_scope_;
2280 if (is_const) {
2354 if (nvars == 1 && !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/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/clang/test/SemaCXX/
H A Dtype-traits.cpp842 void is_const() function

Completed in 1030 milliseconds