Home
last modified time | relevance | path

Searched refs:is_array (Results 1 – 25 of 153) sorted by relevance

1234567

/external/chromium_org/tools/gyp/test/variables/commands/
Dcommands-repeated.gyp.stdout1 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
3 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
5 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
7 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
9 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
11 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'third_letters', 'is_array': '', 'repla…
13 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
15 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
17 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
18 …ariables Matches: {'content': 'python -c "print \'<!(python -c "<(pi', 'is_array': '', 'replace': …
[all …]
Dcommands.gyp.stdout1 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
3 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
5 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
7 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
9 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
11 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'third_letters', 'is_array': '', 'repla…
13 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
15 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
17 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'default_empty_files', 'is_array': '', …
19 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'default_int_files', 'is_array': '', 'r…
[all …]
Dcommands.gyp.ignore-env.stdout1 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
3 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
5 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
7 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
9 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'included_variable', 'is_array': '', 'r…
11 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'third_letters', 'is_array': '', 'repla…
13 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'other_letters', 'is_array': '', 'repla…
15 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'letters_list', 'is_array': '', 'replac…
17 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'default_empty_files', 'is_array': '', …
19 VARIABLES:input.py:724:ExpandVariables Matches: {'content': 'default_int_files', 'is_array': '', 'r…
[all …]
/external/chromium_org/tools/gyp/test/variables/filelist/
Dfilelist.gyp.stdout1 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'names.txt <@(names', 'is_array': '', '…
2 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'names', 'is_array': '', 'replace': '<@…
5 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'names_listfile', 'is_array': '', 'repl…
7 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'names_listfile', 'is_array': '', 'repl…
9 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'cat <(names_listfile', 'is_array': '',…
10 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'names_listfile', 'is_array': '', 'repl…
14 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'sources.txt <@(_sources', 'is_array': …
15 VARIABLES:input.py:562:ExpandVariables Matches: {'content': '_sources', 'is_array': '', 'replace': …
18 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'sources_listfile', 'is_array': '', 're…
20 VARIABLES:input.py:562:ExpandVariables Matches: {'content': 'sources_listfile', 'is_array': '', 're…
[all …]
/external/chromium_org/base/
Dtemplate_util_unittest.cc27 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);
Dtemplate_util.h45 template<class> struct is_array : public false_type {};
46 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
47 template<class T> struct is_array<T[]> : public true_type {};
Dbind.h111 !is_array<P1>::value, in Bind()
159 !is_array<P1>::value, in Bind()
212 !is_array<P1>::value, in Bind()
270 !is_array<P1>::value, in Bind()
335 !is_array<P1>::value, in Bind()
405 !is_array<P1>::value, in Bind()
480 !is_array<P1>::value, in Bind()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Dgenerate_injected_script_externs.py91 def __init__(self, type_name, is_array, is_nullable): argument
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/mesa/src/src/glsl/
Dlink_uniforms.cpp53 } else if (type->is_array() && type->fields.array->is_sampler()) { in values_for_type()
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) { in process()
95 } else if (t->is_array() && t->fields.array->is_record()) { in recursion()
158 assert(!(type->is_array() && type->fields.array->is_record())); in visit_field()
168 type->is_array() ? type->array_size() : 1; in visit_field()
262 assert(!(type->is_array() && type->fields.array->is_record())); in visit_field()
282 const unsigned shadow = (type->is_array()) in visit_field()
297 if (type->is_array()) { in visit_field()
341 if (type->is_array()) { in visit_field()
349 (type->is_array() && type->fields.array->is_matrix())) { in visit_field()
Dast.h320 ast_declaration(const char *identifier, int is_array, ast_expression *array_size,
326 int is_array; variable
475 is_array(false), array_size(NULL), precision(ast_precision_none), in ast_type_specifier()
484 is_array(false), array_size(NULL), precision(ast_precision_none), in ast_type_specifier()
501 int is_array; variable
553 this->is_array = false; in ast_parameter_declarator()
564 int is_array; variable
Dglsl_types.h212 return is_array() ? fields.array : NULL; in element_type()
383 bool is_array() const in is_array() function
467 return is_array() ? length : -1; in array_size()
Dglsl_parser_extras.cpp489 ast_opt_array_size_print(bool is_array, const ast_expression *array_size) in ast_opt_array_size_print() argument
491 if (is_array) { in ast_opt_array_size_print()
706 ast_opt_array_size_print(is_array, array_size); in print()
722 ast_opt_array_size_print(is_array, array_size); in print()
731 ast_declaration::ast_declaration(const char *identifier, int is_array, in ast_declaration() argument
736 this->is_array = is_array; in ast_declaration()
Dglsl_types.cpp117 if (this->is_array()) { in contains_sampler()
133 const glsl_type *const t = (this->is_array()) ? this->fields.array : this; in sampler_index()
676 if (this->is_array()) { in std140_base_alignment()
779 if (this->is_matrix() || (this->is_array() && in std140_size()
785 if (this->is_array()) { in std140_size()
818 if (this->is_array()) { in std140_size()
/external/mesa3d/src/glsl/
Dlink_uniforms.cpp53 } else if (type->is_array() && type->fields.array->is_sampler()) { in values_for_type()
66 if (t->is_record() || (t->is_array() && t->fields.array->is_record())) { in process()
95 } else if (t->is_array() && t->fields.array->is_record()) { in recursion()
158 assert(!(type->is_array() && type->fields.array->is_record())); in visit_field()
168 type->is_array() ? type->array_size() : 1; in visit_field()
262 assert(!(type->is_array() && type->fields.array->is_record())); in visit_field()
282 const unsigned shadow = (type->is_array()) in visit_field()
297 if (type->is_array()) { in visit_field()
341 if (type->is_array()) { in visit_field()
349 (type->is_array() && type->fields.array->is_matrix())) { in visit_field()
Dast.h320 ast_declaration(const char *identifier, int is_array, ast_expression *array_size,
326 int is_array; variable
475 is_array(false), array_size(NULL), precision(ast_precision_none), in ast_type_specifier()
484 is_array(false), array_size(NULL), precision(ast_precision_none), in ast_type_specifier()
501 int is_array; variable
553 this->is_array = false; in ast_parameter_declarator()
564 int is_array; variable
Dglsl_types.h212 return is_array() ? fields.array : NULL; in element_type()
383 bool is_array() const in is_array() function
467 return is_array() ? length : -1; in array_size()
Dglsl_parser_extras.cpp489 ast_opt_array_size_print(bool is_array, const ast_expression *array_size) in ast_opt_array_size_print() argument
491 if (is_array) { in ast_opt_array_size_print()
706 ast_opt_array_size_print(is_array, array_size); in print()
722 ast_opt_array_size_print(is_array, array_size); in print()
731 ast_declaration::ast_declaration(const char *identifier, int is_array, in ast_declaration() argument
736 this->is_array = is_array; in ast_declaration()
Dglsl_types.cpp117 if (this->is_array()) { in contains_sampler()
133 const glsl_type *const t = (this->is_array()) ? this->fields.array : this; in sampler_index()
676 if (this->is_array()) { in std140_base_alignment()
779 if (this->is_matrix() || (this->is_array() && in std140_size()
785 if (this->is_array()) { in std140_size()
818 if (this->is_array()) { in std140_size()
/external/llvm/include/llvm/ADT/
DSTLExtras.h392 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
406 typename std::enable_if<std::is_array<T>::value && std::extent<T>::value == 0,
420 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
426 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
432 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
439 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
447 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
455 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
465 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
476 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
[all …]
/external/chromium_org/mojo/nacl/generator/
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/chromium_org/third_party/webrtc/base/
Dtemplate_util.h38 template<class> struct is_array : public false_type {};
39 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
40 template<class T> struct is_array<T[]> : public true_type {};
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
Dtemplate_util.h36 template<class> struct is_array : public false_type {};
37 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
38 template<class T> struct is_array<T[]> : public true_type {};
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
Dtemplate_util.h33 template<class> struct is_array : public false_type {};
34 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
35 template<class T> struct is_array<T[]> : public true_type {};
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
Dtemplate_util.h40 template<class> struct is_array : public false_type {};
41 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
42 template<class T> struct is_array<T[]> : public true_type {};
/external/chromium_org/ppapi/cpp/
Dvar_array.cc29 if (!var.is_array()) { in VarArray()
58 if (other.is_array()) { in operator =()

1234567