Searched refs:is_array (Results 1 - 25 of 142) sorted by relevance

123456

/external/chromium_org/base/
H A Dtemplate_util_unittest.cc26 // is_array<Type>
27 COMPILE_ASSERT(!is_array<int>::value, IsArray);
28 COMPILE_ASSERT(!is_array<int*>::value, IsArray);
29 COMPILE_ASSERT(!is_array<int(*)[3]>::value, IsArray);
30 COMPILE_ASSERT(is_array<int[]>::value, IsArray);
31 COMPILE_ASSERT(is_array<const int[]>::value, IsArray);
32 COMPILE_ASSERT(is_array<int[3]>::value, IsArray);
H A Dtemplate_util.h45 template<class> struct is_array : public false_type {}; struct in namespace:base
46 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:base
47 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:base
/external/chromium_org/ppapi/cpp/
H A Dvar_array.cc29 if (!var.is_array()) {
58 if (other.is_array()) {
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_injected_script_externs.py91 def __init__(self, type_name, is_array, is_nullable):
93 self.is_array = is_array
104 if self.is_array:
111 return self.is_array or self.type_name == 'object' or not type_map.get(self.type_name)
155 for (optional, type_name, is_array, is_nullable, arg_name) in re.findall(arg_regex, text):
156 arguments.append(Argument(Type(type_name, is_array, is_nullable), optional != '', arg_name))
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dtemplate_util.h36 template<class> struct is_array : public false_type {}; struct in namespace:i18n::addressinput
37 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:i18n::addressinput
38 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:i18n::addressinput
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dtemplate_util.h33 template<class> struct is_array : public false_type {}; struct in namespace:i18n::phonenumbers
34 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:i18n::phonenumbers
35 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:i18n::phonenumbers
/external/chromium_org/third_party/webrtc/base/
H A Dtemplate_util.h38 template<class> struct is_array : public false_type {}; struct in namespace:rtc
39 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:rtc
40 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:rtc
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtemplate_util.h40 template<class> struct is_array : public false_type {}; struct in namespace:webrtc
41 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; struct in namespace:webrtc
42 template<class T> struct is_array<T[]> : public true_type {}; struct in namespace:webrtc
/external/chromium_org/mojo/nacl/generator/
H A Dinterface_dsl.py57 self.is_array = False
76 self.is_array = True
103 self.is_array = True
113 return not self.is_array and not self.is_struct
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
H A Dlvalue_ref.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Drvalue_ref.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Darray.pass.cpp25 static_assert( std::is_array<T>::value, "");
H A Dclass.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Denum.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dfloating_point.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dfunction.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dintegral.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dmember_function_pointer.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dmember_object_pointer.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dnullptr.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dpointer.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dunion.pass.cpp25 static_assert(!std::is_array<T>::value, "");
H A Dvoid.pass.cpp25 static_assert(!std::is_array<T>::value, "");
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlink_uniforms.cpp53 } else if (type->is_array() && type->fields.array->is_sampler()) {
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) {
95 } else if (t->is_array() && t->fields.array->is_record()) {
158 assert(!(type->is_array() && type->fields.array->is_record()));
168 type->is_array() ? type->array_size() : 1;
262 assert(!(type->is_array() && type->fields.array->is_record()));
282 const unsigned shadow = (type->is_array())
297 if (type->is_array()) {
341 if (type->is_array()) {
349 (type->is_array()
[all...]
/external/mesa3d/src/glsl/
H A Dlink_uniforms.cpp53 } else if (type->is_array() && type->fields.array->is_sampler()) {
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) {
95 } else if (t->is_array() && t->fields.array->is_record()) {
158 assert(!(type->is_array() && type->fields.array->is_record()));
168 type->is_array() ? type->array_size() : 1;
262 assert(!(type->is_array() && type->fields.array->is_record()));
282 const unsigned shadow = (type->is_array())
297 if (type->is_array()) {
341 if (type->is_array()) {
349 (type->is_array()
[all...]

Completed in 312 milliseconds

123456