Searched refs:return_type (Results 1 - 25 of 95) sorted by relevance

1234

/external/bluetooth/bluedroid/stack/smp/
H A Daes.h60 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/testing/gmock/scripts/generator/cpp/
H A Dgmock_class.py65 return_type = 'void'
66 if node.return_type:
69 if node.return_type.modifiers:
70 modifiers = ' '.join(node.return_type.modifiers) + ' '
71 return_type = modifiers + node.return_type.name
72 template_args = [arg.name for arg in node.return_type.templated_types]
74 return_type += '<' + ', '.join(template_args) + '>'
81 if node.return_type.pointer:
82 return_type
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcheck_injected_webgl_calls_info.py54 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/
H A Djni_generator_tests.py89 NativeMethod(return_type='int', static=False,
94 NativeMethod(return_type='void', static=False, name='Destroy',
100 NativeMethod(return_type='long', static=False, name='AddBookmark',
114 NativeMethod(return_type='String', static=True,
120 NativeMethod(return_type='void', static=True,
128 NativeMethod(return_type='byte[]', static=False,
133 NativeMethod(return_type='String[]', static=True,
137 NativeMethod(return_type='void', static=False,
143 NativeMethod(return_type='long', static=False,
164 NativeMethod(return_type
[all...]
H A Djni_generator.py49 self.return_type = kwargs['return_type']
75 self.return_type = kwargs['return_type']
81 self.return_type)
82 self.static_cast = GetStaticCastForReturnType(self.return_type)
295 '(?P<return_type>\S*?) '
302 return_type=match.group('return_type'),
309 def GetStaticCastForReturnType(return_type)
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglxextensions.h270 # 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/
H A Dglxextensions.h270 # 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/renderer_host/java/
H A Djava_method.h27 const JavaType& return_type() const;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A DglX_proto_send.py125 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 !
[all...]
H A Dgl_table.py52 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)
H A Dgl_procs.py142 print '%s GLAPIENTRY gl_dispatch_stub_%u(%s);' % (func.return_type, func.offset, func.get_parameter_string())
154 % (func.return_type, "gl" + n, func.get_parameter_string(n))
H A Dgl_apitemp.py87 if f.return_type != 'void':
100 print '%s %s KEYWORD2 NAME(%s)(%s);' % (keyword, f.return_type, n, f.get_parameter_string(name))
103 print '%s %s KEYWORD2 NAME(%s)(%s)' % (keyword, f.return_type, n, f.get_parameter_string(name))
/external/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_send.py125 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 !
[all...]
H A Dgl_table.py52 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)
H A Dgl_procs.py142 print '%s GLAPIENTRY gl_dispatch_stub_%u(%s);' % (func.return_type, func.offset, func.get_parameter_string())
154 % (func.return_type, "gl" + n, func.get_parameter_string(n))
H A Dgl_apitemp.py87 if f.return_type != 'void':
100 print '%s %s KEYWORD2 NAME(%s)(%s);' % (keyword, f.return_type, n, f.get_parameter_string(name))
103 print '%s %s KEYWORD2 NAME(%s)(%s)' % (keyword, f.return_type, n, f.get_parameter_string(name))
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInstrumentation.py70 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 + "()"
273 self.return_type, self.name, ", ".join(map(Parameter.to_str_class, self.params_impl))))
303 return_type
[all...]
/external/libffi/src/sh64/
H A Dffi.c37 return_type (ffi_type *arg) function
71 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
166 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
218 cif->flags = return_type (cif->rtype);
262 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
289 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
361 if (return_type (cif->rtype) == FFI_TYPE_STRUCT)
451 return return_type (cif->rtype);
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema.py100 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)
187 name, parameters, return_type = (Callspec(node, parameter_comments)
190 if return_type is not None:
191 properties['returns'] = return_type
/external/libffi/src/sh/
H A Dffi.c57 return_type (ffi_type *arg) function
127 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
334 greg = ((return_type (cif->rtype) == FFI_TYPE_STRUCT) &&
390 cif->flags += (unsigned) (return_type (cif->rtype)) << 24;
424 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
447 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
470 insn = (return_type (cif->rtype) == FFI_TYPE_STRUCT
715 return return_type (cif->rtype);
/external/chromium_org/ui/gl/
H A Dgenerate_bindings.py15 { 'return_type': 'void',
18 { 'return_type': 'void',
21 { 'return_type': 'void',
24 { 'return_type': 'void',
27 { 'return_type': 'void',
30 { 'return_type': 'void',
33 { 'return_type': 'void',
36 { 'return_type': 'void',
40 { 'return_type': 'void',
43 { 'return_type'
1420 return_type = func['return_type'] variable
1519 return_type = func['return_type'] variable
1542 return_type = func['return_type'] variable
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-unicode-private.hh74 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
75 inline return_type name (hb_codepoint_t unicode) { return func.name (this, unicode, user_data.name); }
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_function_detect_recursion.cpp295 char *proto = prototype_string(f->sig->return_type,
316 char *proto = prototype_string(f->sig->return_type,
/external/harfbuzz_ng/src/
H A Dhb-unicode-private.hh74 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
75 inline return_type name (hb_codepoint_t unicode) { return func.name (this, unicode, user_data.name); }
/external/mesa3d/src/glsl/
H A Dir_function_detect_recursion.cpp295 char *proto = prototype_string(f->sig->return_type,
316 char *proto = prototype_string(f->sig->return_type,

Completed in 1618 milliseconds

1234