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

/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/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h137 template <class _Tp> struct is_const : public false_type {}; struct in namespace:std
138 template <class _Tp> struct is_const<_Tp const> : public true_type {}; struct in namespace:std
146 template <class _Tp, bool = is_const<_Tp>::value || is_reference<_Tp>::value >
/external/eigen/Eigen/src/Core/util/
H A DMeta.h115 template <typename T> struct is_const { enum { value = 0 }; }; struct in namespace:Eigen::internal
116 template <typename T> struct is_const<T const> { enum { value = 1 }; }; struct in namespace:Eigen::internal
/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/v8/tools/clang/rewrite_to_chrome_style/
H A DRewriteToChromeStyle.cpp414 bool is_const = IsProbablyConst(decl, context); local
415 if (is_const) {
437 if (!is_const && decl.isStaticDataMember()) {
/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/libpcap/
H A Doptimize.c520 int is_const; member in struct:vmapinfo
556 vmap[val].is_const = 1;
804 if (vmap[val].is_const) {
875 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_X) {
885 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) {
942 if (alter && vmap[v].is_const) {
974 if (alter && vmap[val[A_ATOM]].is_const) {
1011 if (vmap[val[A_ATOM]].is_const) {
1031 if (alter && vmap[val[X_ATOM]].is_const) {
1032 if (vmap[val[A_ATOM]].is_const) {
[all...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp908 void is_const() function

Completed in 362 milliseconds