HomeSort by relevance Sort by last modified time
    Searched full:return_type (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/ui/gl/
generate_bindings.py 35 { 'return_type': 'void',
38 { 'return_type': 'void',
41 { 'return_type': 'void',
44 { 'return_type': 'void',
47 { 'return_type': 'void',
50 { 'return_type': 'void',
53 { 'return_type': 'void',
56 { 'return_type': 'void',
60 { 'return_type': 'void',
63 { 'return_type': 'void'
    [all...]
  /bionic/libc/tools/
bionic_utils.py 65 return_type = line[:pos_lparen].strip().split()
66 if len(return_type) < 2:
70 syscall_func = return_type[-1]
71 return_type = string.join(return_type[:-1],' ')
119 "decl" : "%-15s %s (%s);" % (return_type, syscall_func, params),
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
check_injected_webgl_calls_info.py 54 return_type = match.group(1).strip()
73 return_type = "GLenum"
75 parsed_webgl_calls.append({"function_name": function_name, "return_type": return_type, "argument_types": argument_types})
95 return_type = call["return_type"]
98 if not (return_type in enum_types or set(enum_types).intersection(argument_types)):
103 if return_type in enum_types:
104 result["returnType"] = return_type[2:]
  /external/chromium_org/base/android/jni_generator/
jni_generator_tests.py 156 NativeMethod(return_type='int', static=False,
161 NativeMethod(return_type='void', static=False, name='Destroy',
167 NativeMethod(return_type='long', static=False, name='AddBookmark',
181 NativeMethod(return_type='String', static=True,
187 NativeMethod(return_type='void', static=True,
195 NativeMethod(return_type='byte[]', static=False,
200 NativeMethod(return_type='String[]', static=True,
204 NativeMethod(return_type='void', static=False,
210 NativeMethod(return_type='long', static=False,
231 NativeMethod(return_type='int', static=False
    [all...]
jni_generator.py 49 self.return_type = kwargs['return_type']
75 self.return_type = kwargs['return_type']
82 self.return_type)
83 self.static_cast = GetStaticCastForReturnType(self.return_type)
399 '(?P<return_type>\S*) '
406 return_type=match.group('return_type'),
414 def GetStaticCastForReturnType(return_type)
    [all...]
  /cts/tools/dasm/src/dasm/
Utils.java 80 * Splits string "package/class/method(param)return_type" into
81 * "package/class", "method", "(param)return_type"
139 * Splits string "method(param)return_type" into "method" and
140 * "(param)return_type"
  /external/bluetooth/bluedroid/stack/smp/
aes.h 60 typedef uint_8t return_type; typedef
83 return_type aes_set_key( const unsigned char key[],
90 return_type aes_encrypt( const unsigned char in[N_BLOCK],
94 return_type aes_cbc_encrypt( const unsigned char *in,
103 return_type aes_decrypt( const unsigned char in[N_BLOCK],
107 return_type aes_cbc_decrypt( const unsigned char *in,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInstrumentation.py 70 inline ${return_type} ${name}(${params_public})
97 ${return_type} ${name}Impl(${params_impl})
236 self.return_type = match.group(2)
244 self.returns_cookie = self.return_type == "InspectorInstrumentationCookie"
246 self.returns_value = self.return_type != "void"
248 if self.return_type == "bool":
250 elif self.return_type == "String":
253 self.default_return_value = self.return_type + "()"
272 self.return_type, self.name, ", ".join(map(Parameter.to_str_class, self.params_impl))))
301 return_type=self.return_type
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
glxextensions.h 270 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func)
274 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
275 return_type real_func proto_args \
280 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
281 return_type real_func proto_args \
  /external/mesa3d/src/glx/
glxextensions.h 270 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func)
274 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
275 return_type real_func proto_args \
280 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
281 return_type real_func proto_args \
  /external/chromium_org/content/browser/android/java/
java_method.h 29 const JavaType& return_type() const;
gin_java_method_invocation_helper.cc 159 NULL, cls.obj(), method->return_type(), method->id(), &parameters[0]);
162 obj.obj(), NULL, method->return_type(), method->id(), &parameters[0]);
217 const JavaType& return_type,
223 switch (return_type.type) {
  /external/lldb/examples/functions/
main.cpp 267 SBType return_type = function_type.GetFunctionReturnType(); local
270 return_type = return_type.GetCanonicalType();
276 printf ("%s %s\n", return_type.GetName(), func_demangled_name);
289 printf("%c(%s)[%s\n", func_demangled_name[0], return_type.GetName(), class_name_start);
295 printf ("%c(%s)[%*.*s", func_demangled_name[0], return_type.GetName(), class_name_len, class_name_len, class_name_start);
323 printf ("%s ", return_type.GetName());
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 100 return_type = None
102 return_type = Typeref(self.node.GetProperty('TYPEREF'),
108 if return_type.get('type') == 'object' or '$ref' in return_type:
109 return_type['optional'] = True
115 return (self.node.GetName(), parameters, return_type)
194 name, parameters, return_type = (Callspec(node, parameter_comments)
197 if return_type is not None:
198 properties['returns'] = return_type
  /art/compiler/sea_ir/types/
type_inference_visitor.cc 26 const Type* return_type = fti.GetReturnValueType(); local
27 crt_type_.push_back(return_type);
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 71 SIGNATURE_REGEX = re.compile('(?P<return_type>.+?)'
87 # return_type: The return type.
93 """extern %(return_type)s %(name)s(%(params)s) __attribute__((weak));
94 %(return_type)s %(name)s(%(params)s) {
102 # return_type: The return type.
110 """extern %(return_type)s %(name)s(%(params)s) __attribute__((weak));
111 %(return_type)s %(name)s(%(params)s) {
114 %(return_type)s ret___ = %(name)s_ptr(%(arg_list)s, va_arg(args___, void*));
233 # return_type: The return type.
236 reinterpret_cast<%(return_type)s (*)(%(parameters)s)>
    [all...]
  /art/runtime/verifier/
method_verifier.cc 1559 RegType& return_type = GetMethodReturnType(); local
1584 RegType& return_type = GetMethodReturnType(); local
1599 RegType& return_type = GetMethodReturnType(); local
1619 << "', but expected from declaration '" << return_type << "'"; local
2192 RegType* return_type = nullptr; local
2230 RegType* return_type = nullptr; local
2322 RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor, local
2380 RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor, local
2646 RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor, local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
common_decoder.cc 106 template <typename RETURN_TYPE, typename COMMAND_TYPE>
107 RETURN_TYPE GetImmediateDataAs(const COMMAND_TYPE& pod) {
108 return static_cast<RETURN_TYPE>(const_cast<void*>(AddressAfterStruct(pod)));
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_table.py 52 print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (f.return_type, f.name, arg_string, f.offset)
189 print 'typedef %s (GLAPIENTRYP _glptr_%s)(%s);' % (f.return_type, f.name, arg_string)
196 print 'static inline void SET_%s(struct _glapi_table *disp, %s (GLAPIENTRYP fn)(%s)) {' % (f.name, f.return_type, arg_string)
glX_proto_send.py 125 self.return_type = func.return_type
408 print 'static %s' % (func.return_type)
413 if func.return_type == "void":
420 print '%s gl%s(%s)' % (func.return_type, func_name, func.get_parameter_string())
438 print '%s __indirect_gl%s(%s)' % (func.return_type, name, func.get_parameter_string())
606 if f.return_type != 'void':
607 print ' %s retval = (%s) 0;' % (f.return_type, f.return_type)
622 if f.return_type != 'void'
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
gl_table.py 52 print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (f.return_type, f.name, arg_string, f.offset)
189 print 'typedef %s (GLAPIENTRYP _glptr_%s)(%s);' % (f.return_type, f.name, arg_string)
196 print 'static inline void SET_%s(struct _glapi_table *disp, %s (GLAPIENTRYP fn)(%s)) {' % (f.name, f.return_type, arg_string)
glX_proto_send.py 125 self.return_type = func.return_type
408 print 'static %s' % (func.return_type)
413 if func.return_type == "void":
420 print '%s gl%s(%s)' % (func.return_type, func_name, func.get_parameter_string())
438 print '%s __indirect_gl%s(%s)' % (func.return_type, name, func.get_parameter_string())
606 if f.return_type != 'void':
607 print ' %s retval = (%s) 0;' % (f.return_type, f.return_type)
622 if f.return_type != 'void'
    [all...]
  /external/lldb/include/lldb/Target/
ThreadPlanCallFunction.h 31 const ClangASTType &return_type,
41 const ClangASTType &return_type,
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
texture_builtins.py 62 return_type = "float"
64 return_type = vec_type("i", get_txs_dim(sampler_type))
66 return_type = g + "vec4"
69 print " (signature", return_type
88 print ")\n ((return (" + tex_inst, return_type, "(var_ref sampler)",
  /external/mesa3d/src/glsl/builtins/tools/
texture_builtins.py 62 return_type = "float"
64 return_type = vec_type("i", get_txs_dim(sampler_type))
66 return_type = g + "vec4"
69 print " (signature", return_type
88 print ")\n ((return (" + tex_inst, return_type, "(var_ref sampler)",

Completed in 1548 milliseconds

1 2 3 4 5 6 7