HomeSort by relevance Sort by last modified time
    Searched refs:argument_types (Results 1 - 4 of 4) 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/clang/bindings/python/tests/cindex/
test_type.py 144 """Ensure that Type.argument_types() works as expected."""
149 args = f.type.argument_types()
173 args = f.type.argument_types()
180 """Ensure that negative indexes on argument_types Raises an IndexError."""
183 args = f.type.argument_types()
189 """Ensure that indexes beyond the length of Type.argument_types() raise."""
192 args = f.type.argument_types()
198 """Ensure that obtaining argument_types on a Type without them raises."""
203 i.type.argument_types()
  /external/clang/bindings/python/clang/
cindex.py 1501 def argument_types(self): member in class:Type
    [all...]

Completed in 225 milliseconds