/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Builtin.py | 33 utility_code=None, sig=None, func_type=None, argument 37 self.func_type, self.sig = func_type, sig 46 func_type = sig.function_type(self_arg) 48 func_type.is_strict_signature = True 50 func_type.return_type = builtin_types[self.builtin_return_type] 51 return func_type 73 func_type, sig = self.func_type, self.sig 74 if func_type is None: 75 func_type = self.build_func_type(sig) 76 scope.declare_builtin_cfunction(self.py_name, func_type, self.cname, [all …]
|
D | PyrexTypes.py | 3199 func_type = operator_entry.type 3200 if func_type.is_ptr: 3201 func_type = func_type.base_type 3202 return func_type.return_type 3526 func_type = func.type 3527 if func_type.is_ptr: 3528 func_type = func_type.base_type 3530 if not func_type.is_cfunction: 3531 if not func_type.is_error and pos is not None: 3532 error_mesg = "Calling non-function type '%s'" % func_type [all …]
|
D | ExprNodes.py | 1508 func_type = PyrexTypes.CFuncType(type, [], exception_check='+') 1509 type.scope.declare_cfunction(u'<init>', func_type, self.pos) 3194 func_type = function.type 3195 if func_type.is_ptr: 3196 func_type = func_type.base_type 3197 self.index = self.index.coerce_to(func_type.args[0].type, env) 3198 self.type = func_type.return_type 3199 if setting and not func_type.return_type.is_reference: 4241 func_type = function.infer_type(env) 4245 if func_type is py_object_type: [all …]
|
D | Nodes.py | 688 func_type = PyrexTypes.CFuncType( 698 if func_type.is_fused: 702 def declare_opt_arg_struct(func_type, fused_cname): argument 703 self.declare_optional_arg_struct(func_type, env, fused_cname) 705 func_type.declare_opt_arg_struct = declare_opt_arg_struct 707 self.declare_optional_arg_struct(func_type, env) 711 current = func_type.calling_convention 715 func_type.calling_convention = callspec 716 return self.base.analyse(func_type, env) 718 def declare_optional_arg_struct(self, func_type, env, fused_cname=None): argument [all …]
|
D | Optimize.py | 1276 def _inject_capi_function(self, node, cname, func_type, utility_code=None): argument 1278 node.function.pos, node.function.name, cname, func_type, 2450 func_type = self.PyByteArray_Append_func_type 2463 func_type = self.PyByteArray_AppendObject_func_type 2469 node.pos, func_name, func_type, 3162 def _substitute_method_call(self, node, function, name, func_type, argument 3182 node.pos, name, func_type,
|
/external/tcpdump/ |
D | print-atm.c | 359 u_int8_t cell_type, func_type, payload, clp; in oam_print() local 369 func_type = (*(p+ATM_HDR_LEN_NOHEC+hec)) & 0x0f; in oam_print() 391 printf(", func-type unknown (%u)", func_type); in oam_print() 394 tok2str(oam_functype_values[cell_type],"none",func_type), in oam_print() 395 func_type); in oam_print() 399 switch (cell_type << 4 | func_type) { in oam_print()
|
/external/lldb/source/API/ |
D | SBFunction.cpp | 113 Type *func_type = m_opaque_ptr->GetType(); in GetDescription() local 114 if (func_type) in GetDescription() 115 s.Printf(", type = %s", func_type->GetName().AsCString()); in GetDescription()
|
/external/lldb/include/lldb/Symbol/ |
D | Function.h | 370 Type * func_type, 409 Type * func_type,
|
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
D | TypeConversion.c | 506 #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func) \ 508 func_type value = func(x); \ 509 if (sizeof(target_type) < sizeof(func_type)) { \ 510 if (unlikely(value != (func_type) (target_type) value)) { \ 511 func_type zero = 0; \
|
/external/clang/test/SemaCXX/ |
D | conversion-function.cpp | 22 typedef int func_type(int); typedef 36 operator func_type(); // expected-error{{conversion function cannot convert to a function type}}
|
/external/lldb/source/Symbol/ |
D | Function.cpp | 340 Type* func_type = GetType(); in GetDescription() local 341 const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>"; in GetDescription()
|
D | SymbolContext.cpp | 259 Type *func_type = function->GetType(); in GetDescription() local 260 if (func_type) in GetDescription() 263 func_type->GetDescription (s, level, false); in GetDescription() 349 Type* func_type = function->GetType(); in Dump() local 350 if (func_type) in Dump() 353 func_type->Dump (s, false); in Dump()
|
D | Block.cpp | 406 Type *func_type = function->GetType(); in AddRange() local 408 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange()
|
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
D | crazy_linker_shared_library.cpp | 86 void CallFunction(linker_function_t func, const char* func_type) { in CallFunction() argument 89 LOG("%s: %p %s\n", __FUNCTION__, func, func_type); in CallFunction()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_setup.c | 675 LLVMTypeRef func_type; in generate_setup_variant() local 720 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), in generate_setup_variant() 723 variant->function = LLVMAddFunction(gallivm->module, func_name, func_type); in generate_setup_variant()
|
D | lp_state_fs.c | 775 LLVMTypeRef func_type; in generate_fragment() local 871 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), in generate_fragment() 874 function = LLVMAddFunction(gallivm->module, func_name, func_type); in generate_fragment()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_state_setup.c | 675 LLVMTypeRef func_type; in generate_setup_variant() local 720 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), in generate_setup_variant() 723 variant->function = LLVMAddFunction(gallivm->module, func_name, func_type); in generate_setup_variant()
|
D | lp_state_fs.c | 775 LLVMTypeRef func_type; in generate_fragment() local 871 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), in generate_fragment() 874 function = LLVMAddFunction(gallivm->module, func_name, func_type); in generate_fragment()
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_llvm.c | 1066 LLVMTypeRef func_type; in draw_llvm_generate() local 1111 func_type = LLVMFunctionType(int32_type, arg_types, Elements(arg_types), 0); in draw_llvm_generate() 1115 func_type); in draw_llvm_generate()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
D | draw_llvm.c | 1066 LLVMTypeRef func_type; in draw_llvm_generate() local 1111 func_type = LLVMFunctionType(int32_type, arg_types, Elements(arg_types), 0); in draw_llvm_generate() 1115 func_type); in draw_llvm_generate()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 1080 Type *func_type = m_die_to_type.lookup (die); in ParseCompileUnitFunction() local 1082 assert(func_type == NULL || func_type != DIE_IS_BEING_PARSED); in ParseCompileUnitFunction() 1091 func_type, in ParseCompileUnitFunction() 6471 Type *func_type = NULL; in ParseType() local 6474 func_type = ResolveTypeUID(type_die_offset); in ParseType() 6476 if (func_type) in ParseType() 6477 return_clang_type = func_type->GetClangForwardType(); in ParseType()
|
/external/valgrind/main/perf/ |
D | tinycc.c | 5955 void gfunc_prolog(CType *func_type) in gfunc_prolog() argument 5962 sym = func_type->ref; in gfunc_prolog() 12693 int func_type; in gfunc_param_typed() local 12696 func_type = func->c; in gfunc_param_typed() 12697 if (func_type == FUNC_OLD || in gfunc_param_typed() 12698 (func_type == FUNC_ELLIPSIS && arg == NULL)) { in gfunc_param_typed()
|