HomeSort by relevance Sort by last modified time
    Searched defs:is_const (Results 1 - 11 of 11) sorted by null

  /external/libchrome/base/
template_util.h 53 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/eigen/Eigen/src/Core/util/
Meta.h 74 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/
loop_analysis.h 202 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/opencv3/modules/cudev/include/opencv2/cudev/util/
type_traits.hpp 136 enum { is_const = type_traits_detail::UnConst<T>::value }; enumerator in enum:cv::cudev::TypeTraits::__anon22429
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 411 bool is_const; member in struct:android::filterfw::ShaderProgram::VertexAttrib
  /external/v8/src/runtime/
runtime-scopes.cc 37 bool is_const, bool is_function) {
54 if (is_const) return ThrowRedeclarationError(isolate, name);
108 bool is_const = initial_value->IsTheHole(); local
111 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
131 if (is_const) attr |= READ_ONLY;
133 if (!is_const && !is_eval) attr |= DONT_DELETE;
137 is_var, is_const, is_function);
220 bool is_const = initial_value->IsTheHole(); local
223 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
258 value, attr, is_var, is_const, is_function)
    [all...]
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 35 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/libpcap/
optimize.c 520 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/mesa3d/src/gallium/drivers/r600/
r600_asm.c 727 static int is_const(int sel) function
773 if (is_const(sel)) { /* Any constant, including literal and inline constants. */
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 908 void is_const() function
    [all...]
  /external/v8/src/parsing/
parser.cc 3543 bool is_const = false; local
    [all...]

Completed in 1712 milliseconds