Searched refs:argument_types (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcheck_injected_webgl_calls_info.py59 argument_types = []
64 argument_types.append(match.group(1).strip())
71 argument_types[2] = "GLenum"
75 parsed_webgl_calls.append({"function_name": function_name, "return_type": return_type, "argument_types": argument_types})
96 argument_types = call["argument_types"]
98 if not (return_type in enum_types or set(enum_types).intersection(argument_types)):
107 if not enum_type in argument_types:
109 result[enum_type[2:]] = [i for i in range(len(argument_types)) i
[all...]
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.cc103 if (instruction.argument_types.size() != arguments.GetSize())
107 switch (instruction.argument_types[i]) {
169 const std::vector<ArgumentType>& argument_types)
170 : name(name), op_code(op_code), argument_types(argument_types) {}
174 std::vector<ArgumentType> argument_types; member in struct:__anon6002::InstructionSet::Instruction
167 Instruction(const char* name, jtl_foundation::OpCodes op_code, const std::vector<ArgumentType>& argument_types) argument
/external/clang/bindings/python/tests/cindex/
H A Dtest_type.py160 """Ensure that Type.argument_types() works as expected."""
165 args = f.type.argument_types()
189 args = f.type.argument_types()
196 """Ensure that negative indexes on argument_types Raises an IndexError."""
199 args = f.type.argument_types()
205 """Ensure that indexes beyond the length of Type.argument_types() raise."""
208 args = f.type.argument_types()
214 """Ensure that obtaining argument_types on a Type without them raises."""
219 i.type.argument_types()
393 a = foo.type.argument_types()[
[all...]
/external/clang/bindings/python/clang/
H A Dcindex.py1652 def argument_types(self): member in class:Type

Completed in 1335 milliseconds