Searched refs:function_decl (Results 1 - 15 of 15) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DASTResultSynthesizer.cpp99 else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D))
102 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr"))
104 RecordPersistentTypes(function_decl);
105 SynthesizeFunctionResult(function_decl);
137 FunctionDecl *function_decl = FunDecl;
139 if (!function_decl)
147 function_decl->print(os);
154 Stmt *function_body = function_decl->getBody();
158 function_decl);
165 function_decl
[all...]
H A DASTStructExtractor.cpp138 FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D); local
141 function_decl &&
142 !m_function.m_wrapper_function_name.compare(function_decl->getNameAsString().c_str()))
144 ExtractFromFunctionDecl(function_decl);
H A DClangExpressionDeclMap.cpp1853 NamedDecl *function_decl = NULL; local
1884 function_decl = context.AddFunDecl(copied_function_type);
1886 if (!function_decl)
1914 function_decl = context.AddGenericFunDecl();
1956 parser_vars->m_named_decl = function_decl;
1961 ASTDumper ast_dumper(function_decl);
H A DClangUserExpression.cpp223 else if (clang::FunctionDecl *function_decl = llvm::dyn_cast<clang::FunctionDecl>(decl_context))
230 ClangASTMetadata *metadata = ClangASTContext::GetMetadata (&decl_context->getParentASTContext(), function_decl);
/freebsd-10.2-release/contrib/gcc/
H A Ddebug.h86 void (* function_decl) (tree decl); member in struct:gcc_debug_hooks
H A Dtarget.h181 tree function_decl);
191 tree function_decl);
H A Dtree.h2497 (FUNCTION_DECL_CHECK (NODE)->function_decl.function_code)
3081 #define DECL_UNINLINABLE(NODE) (FUNCTION_DECL_CHECK (NODE)->function_decl.uninlinable)
3090 #define DECL_IS_MALLOC(NODE) (FUNCTION_DECL_CHECK (NODE)->function_decl.malloc_flag)
3095 (FUNCTION_DECL_CHECK (NODE)->function_decl.returns_twice_flag)
3099 #define DECL_IS_PURE(NODE) (FUNCTION_DECL_CHECK (NODE)->function_decl.pure_flag)
3104 #define DECL_IS_NOVOPS(NODE) (FUNCTION_DECL_CHECK (NODE)->function_decl.novops_flag)
3109 (FUNCTION_DECL_CHECK (NODE)->function_decl.static_ctor_flag)
3112 (FUNCTION_DECL_CHECK (NODE)->function_decl.static_dtor_flag)
3117 (FUNCTION_DECL_CHECK (NODE)->function_decl.no_instrument_function_entry_exit)
3122 (FUNCTION_DECL_CHECK (NODE)->function_decl
[all...]
H A Dvmsdbgout.c1665 (*dwarf2_debug_hooks.function_decl) (decl);
H A Dfinal.c3979 (*debug_hooks->function_decl) (current_function_decl);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h375 SetFunctionParameters (clang::FunctionDecl *function_decl,
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp2004 ClangASTContext::SetFunctionParameters (FunctionDecl *function_decl, ParmVarDecl **params, unsigned num_params) argument
2006 if (function_decl)
2007 function_decl->setParams (ArrayRef<ParmVarDecl*>(params, num_params));
2283 else if (clang::FunctionDecl *function_decl = llvm::dyn_cast<clang::FunctionDecl>(decl_ctx))
2285 ClangASTMetadata *metadata = GetMetadata (&decl_ctx->getParentASTContext(), function_decl);
/freebsd-10.2-release/contrib/gcc/cp/
H A Dtree.c2128 if (s->function_decl && s->function_decl != prev_fn)
2130 VARRAY_PUSH_TREE (*fnsp, s->function_decl);
2131 prev_fn = s->function_decl;
H A Dname-lookup.c1844 tree function_decl = current_function_decl;
1862 current_function_decl = function_decl;
5119 s->function_decl = current_function_decl;
5160 current_function_decl = s->function_decl;
1841 tree function_decl = current_function_decl; local
H A Dcp-tree.h660 tree function_decl;
658 tree function_decl; local
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp6872 clang::FunctionDecl *function_decl = ast.CreateFunctionDeclaration (ignore_containing_context ? GetClangASTContext().GetTranslationUnitDecl() : containing_decl_ctx, local
6881 // function_decl,
6885 // ast.CreateFunctionTemplateSpecializationInfo (function_decl,
6890 assert (function_decl);
6891 LinkDeclContextToDIE(function_decl, die);
6893 ast.SetFunctionParameters (function_decl,
6906 function_decl);
6908 GetClangASTContext().SetMetadata (function_decl, metadata);

Completed in 389 milliseconds