Searched defs:return_type (Results 1 - 25 of 34) sorted by relevance

12

/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_org/content/browser/android/java/
H A Djava_method.cc95 const JavaType& JavaMethod::return_type() const { function in class:content::JavaMethod
H A Dgin_java_method_invocation_helper.cc166 NULL, cls.obj(), method->return_type(), method->id(), &parameters[0]);
169 obj.obj(), NULL, method->return_type(), method->id(), &parameters[0]);
227 const JavaType& return_type,
233 switch (return_type.type) {
225 InvokeMethod(jobject object, jclass clazz, const JavaType& return_type, jmethodID id, jvalue* parameters) argument
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.h37 StreamBuilder(InstructionSelectorTest* test, MachineType return_type) argument
39 MakeMachineSignature(test->zone(), return_type)),
41 StreamBuilder(InstructionSelectorTest* test, MachineType return_type, argument
45 MakeMachineSignature(test->zone(), return_type, parameter0_type)),
47 StreamBuilder(InstructionSelectorTest* test, MachineType return_type, argument
51 MakeMachineSignature(test->zone(), return_type, parameter0_type,
54 StreamBuilder(InstructionSelectorTest* test, MachineType return_type, argument
59 MakeMachineSignature(test->zone(), return_type, parameter0_type,
77 MachineType return_type) {
79 builder.AddReturn(return_type);
76 MakeMachineSignature(Zone* zone, MachineType return_type) argument
83 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type) argument
91 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type, MachineType parameter1_type) argument
101 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type, MachineType parameter1_type, MachineType parameter2_type) argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dcall-tester.h140 Zone* zone, MachineType return_type, MachineType p0 = kMachNone,
148 size_t return_count = return_type == kMachNone ? 0 : 1;
152 if (return_count > 0) builder.AddReturn(return_type);
139 MakeMachineSignature( Zone* zone, MachineType return_type, MachineType p0 = kMachNone, MachineType p1 = kMachNone, MachineType p2 = kMachNone, MachineType p3 = kMachNone, MachineType p4 = kMachNone) argument
H A Dcodegen-tester.h24 MachineAssemblerTester(MachineType return_type, MachineType p0, argument
30 MakeMachineSignature(main_zone(), return_type, p0, p1, p2, p3, p4)),
33 MakeMachineSignature(main_zone(), return_type, p0, p1, p2, p3, p4),
/external/lldb/examples/functions/
H A Dmain.cpp267 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/lldb/source/Expression/
H A DClangFunction.cpp54 const ClangASTType &return_type,
60 m_function_return_type(return_type),
51 ClangFunction( ExecutionContextScope &exe_scope, const ClangASTType &return_type, const Address& functionAddress, const ValueList &arg_value_list ) argument
/external/lldb/source/Target/
H A DThreadPlanCallFunction.cpp130 const ClangASTType &return_type,
142 m_return_type (return_type),
193 const ClangASTType &return_type,
208 m_return_type (return_type),
128 ThreadPlanCallFunction(Thread &thread, const Address &function, const ClangASTType &return_type, addr_t arg, bool stop_other_threads, bool unwind_on_error, bool ignore_breakpoints, addr_t *this_arg, addr_t *cmd_arg) argument
191 ThreadPlanCallFunction(Thread &thread, const Address &function, const ClangASTType &return_type, bool stop_other_threads, bool unwind_on_error, bool ignore_breakpoints, addr_t *arg1_ptr, addr_t *arg2_ptr, addr_t *arg3_ptr, addr_t *arg4_ptr, addr_t *arg5_ptr, addr_t *arg6_ptr) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dweb_view_impl.cc580 EvaluateScriptReturnType return_type,
586 params.SetBoolean("returnByValue", return_type == ReturnByValue);
577 EvaluateScript(DevToolsClient* client, int context_id, const std::string& expression, EvaluateScriptReturnType return_type, scoped_ptr<base::DictionaryValue>* result) argument
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTypeSlots.py113 def return_type(self): member in class:Signature
137 ret_type = self.return_type()
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_function.cpp63 * \param return_type Return type of the function. May be \c NULL.
74 prototype_string(const glsl_type *return_type, const char *name, argument
79 if (return_type != NULL)
80 str = ralloc_asprintf(NULL, "%s ", return_type->name);
288 if (!sig->return_type->is_void()) {
292 var = new(ctx) ir_variable(sig->return_type,
416 str = prototype_string(sig->return_type, f->name, &sig->parameters);
H A Dir.cpp1539 ir_function_signature::ir_function_signature(const glsl_type *return_type) argument
1540 : return_type(return_type), is_defined(false), _function(NULL)
H A Dir_reader.cpp226 const glsl_type *return_type = read_type(type_expr); local
227 if (return_type == NULL)
252 sig = new(mem_ctx) ir_function_signature(return_type);
263 if (sig->return_type != return_type) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
H A Dast.h593 ast_fully_specified_type *return_type; member in class:ast_function
H A Dast_to_hir.cpp3192 const glsl_type *return_type = local
3193 this->return_type->specifier->glsl_type(& return_type_name, state);
3195 if (!return_type) {
3200 return_type = glsl_type::error_type;
3206 if (this->return_type->has_qualifiers()) {
3217 if (return_type->contains_sampler()) {
3240 if (sig->return_type != return_type) {
3269 if (! return_type->is_void()) {
3285 sig = new(ctx) ir_function_signature(return_type);
[all...]
H A Dir.h528 ir_function_signature(const glsl_type *return_type);
590 const struct glsl_type *return_type; member in class:ir_function_signature
1135 assert(callee->return_type != NULL);
1886 prototype_string(const glsl_type *return_type, const char *name,
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dir.py260 def return_type(self): member in class:Function
264 ret = property(return_type)
/external/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h237 ScriptReturnType return_type,
236 ExecuteOneLineWithReturn(const char *in_string, ScriptReturnType return_type, void *ret_value, const ExecuteScriptOptions &options = ExecuteScriptOptions()) argument
/external/lldb/source/DataFormatters/
H A DCXXFormatterFunctions.cpp103 const char* return_type,
108 if (!return_type || !*return_type)
115 expr.Printf("(%s)[%s %s:%" PRId64 "]",return_type,expr_path_stream.GetData(),selector,index);
138 const char* return_type,
143 if (!return_type || !*return_type)
152 expr.Printf("(%s)[%s %s:%s]",return_type,expr_path_stream.GetData(),selector,key);
102 CallSelectorOnObject(ValueObject &valobj, const char* return_type, const char* selector, uint64_t index) argument
137 CallSelectorOnObject(ValueObject &valobj, const char* return_type, const char* selector, const char* key) argument
/external/lldb/source/Interpreter/
H A DCommandObject.cpp679 CommandArgumentType return_type = eArgTypeLastArg; local
690 return_type = g_arguments_data[i].arg_type;
692 return return_type;
/external/mesa3d/src/glsl/
H A Dast_function.cpp63 * \param return_type Return type of the function. May be \c NULL.
74 prototype_string(const glsl_type *return_type, const char *name, argument
79 if (return_type != NULL)
80 str = ralloc_asprintf(NULL, "%s ", return_type->name);
288 if (!sig->return_type->is_void()) {
292 var = new(ctx) ir_variable(sig->return_type,
416 str = prototype_string(sig->return_type, f->name, &sig->parameters);
H A Dir.cpp1539 ir_function_signature::ir_function_signature(const glsl_type *return_type) argument
1540 : return_type(return_type), is_defined(false), _function(NULL)
H A Dir_reader.cpp226 const glsl_type *return_type = read_type(type_expr); local
227 if (return_type == NULL)
252 sig = new(mem_ctx) ir_function_signature(return_type);
263 if (sig->return_type != return_type) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
/external/gcc-demangle/
H A Dcp-demangle.c2383 struct demangle_component *return_type; local
2398 return_type = cplus_demangle_type (di);
2399 if (return_type == NULL)
2403 return_type = NULL;
2410 return_type, tl);

Completed in 497 milliseconds

12