Searched defs:func_type (Results 1 - 15 of 15) sorted by relevance

/external/lldb/source/API/
H A DSBFunction.cpp113 Type *func_type = m_opaque_ptr->GetType(); local
114 if (func_type)
115 s.Printf(", type = %s", func_type->GetName().AsCString());
/external/lldb/source/Symbol/
H A DFunction.cpp340 Type* func_type = GetType(); local
341 const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>";
H A DBlock.cpp406 Type *func_type = function->GetType(); local
408 const Declaration &func_decl = func_type->GetDeclaration();
H A DSymbolContext.cpp259 Type *func_type = function->GetType(); local
260 if (func_type)
263 func_type->GetDescription (s, level, false);
349 Type* func_type = function->GetType(); local
350 if (func_type)
353 func_type->Dump (s, false);
/external/tcpdump/
H A Dprint-atm.c359 u_int8_t cell_type, func_type, payload, clp; local
369 func_type = (*(p+ATM_HDR_LEN_NOHEC+hec)) & 0x0f;
391 printf(", func-type unknown (%u)", func_type);
394 tok2str(oam_functype_values[cell_type],"none",func_type),
395 func_type);
399 switch (cell_type << 4 | func_type) {
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_shared_library.cpp84 // |func_type| corresponds to the type of the function, and is only
86 void CallFunction(linker_function_t func, const char* func_type) { argument
89 LOG("%s: %p %s\n", __FUNCTION__, func, func_type);
/external/clang/test/SemaCXX/
H A Dconversion-function.cpp22 typedef int func_type(int); typedef
36 operator func_type(); // expected-error{{conversion function cannot convert to a function type}}
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c775 LLVMTypeRef func_type; local
871 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context),
874 function = LLVMAddFunction(gallivm->module, func_name, func_type);
H A Dlp_state_setup.c675 LLVMTypeRef func_type; local
720 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context),
723 variant->function = LLVMAddFunction(gallivm->module, func_name, func_type);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c775 LLVMTypeRef func_type; local
871 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context),
874 function = LLVMAddFunction(gallivm->module, func_name, func_type);
H A Dlp_state_setup.c675 LLVMTypeRef func_type; local
720 func_type = LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context),
723 variant->function = LLVMAddFunction(gallivm->module, func_name, func_type);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c1066 LLVMTypeRef func_type; local
1111 func_type = LLVMFunctionType(int32_type, arg_types, Elements(arg_types), 0);
1115 func_type);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c1066 LLVMTypeRef func_type; local
1111 func_type = LLVMFunctionType(int32_type, arg_types, Elements(arg_types), 0);
1115 func_type);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1080 Type *func_type = m_die_to_type.lookup (die); local
1082 assert(func_type == NULL || func_type != DIE_IS_BEING_PARSED);
1091 func_type,
6471 Type *func_type = NULL; local
6474 func_type = ResolveTypeUID(type_die_offset);
6476 if (func_type)
6477 return_clang_type = func_type->GetClangForwardType();
/external/valgrind/main/perf/
H A Dtinycc.c5957 void gfunc_prolog(CType *func_type)
5964 sym = func_type->ref;
12695 int func_type;
12698 func_type = func->c;
12699 if (func_type == FUNC_OLD ||
12700 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
5955 gfunc_prolog(CType *func_type) argument
12693 int func_type; local

Completed in 459 milliseconds