HomeSort by relevance Sort by last modified time
    Searched full:argument_types (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
check_injected_webgl_calls_info.py 59 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)) if argument_types[i] == enum_type
    [all...]
  /art/compiler/sea_ir/types/
type_inference.cc 70 std::vector<const Type*> argument_types; local
73 argument_types.push_back(&(type_cache_->Integer()));
82 argument_types.push_back(&(type_cache_->UninitializedThisArgument(declaring_class)));
84 argument_types.push_back(&declaring_class);
107 argument_types.push_back(&reg_type);
111 argument_types.push_back(&type_cache_->Boolean());
114 argument_types.push_back(&type_cache_->Char());
117 argument_types.push_back(&type_cache_->Byte());
120 argument_types.push_back(&type_cache_->Integer());
123 argument_types.push_back(&type_cache_->Short())
    [all...]
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.cc 103 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:__anon10627::InstructionSet::Instruction
  /external/clang/bindings/python/tests/cindex/
test_type.py 160 """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()[0
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 1652 def argument_types(self): member in class:Type
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 

Completed in 1341 milliseconds