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

/external/clang/test/CodeGen/
H A D2005-09-24-BitFieldCrash.c25 struct tree_function_decl function_decl; member in union:tree_node
30 decl->function_decl.built_in_class != 0;
/external/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.cpp1766 NamedDecl *function_decl = NULL; local
1797 function_decl = context.AddFunDecl(copied_function_type);
1799 if (!function_decl)
1827 function_decl = context.AddGenericFunDecl();
1869 parser_vars->m_named_decl = function_decl;
1874 ASTDumper ast_dumper(function_decl);
H A DClangUserExpression.cpp229 else if (clang::FunctionDecl *function_decl = llvm::dyn_cast<clang::FunctionDecl>(decl_context))
236 ClangASTMetadata *metadata = ClangASTContext::GetMetadata (&decl_context->getParentASTContext(), function_decl);
/external/chromium_org/tools/clang/rewrite_scoped_refptr/
H A DRewriteScopedRefptr.cpp216 const clang::FunctionDecl* const function_decl = member in class:__anon16429::clang
218 assert(function_decl && "Unexpected match! No FunctionDecl captured!");
230 for (clang::FunctionDecl* f : function_decl->redecls()) {
/external/lldb/include/lldb/Symbol/
H A DClangASTContext.h375 SetFunctionParameters (clang::FunctionDecl *function_decl,
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1998 ClangASTContext::SetFunctionParameters (FunctionDecl *function_decl, ParmVarDecl **params, unsigned num_params) argument
2000 if (function_decl)
2001 function_decl->setParams (ArrayRef<ParmVarDecl*>(params, num_params));
2277 else if (clang::FunctionDecl *function_decl = llvm::dyn_cast<clang::FunctionDecl>(decl_ctx))
2279 ClangASTMetadata *metadata = GetMetadata (&decl_ctx->getParentASTContext(), function_decl);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp6781 clang::FunctionDecl *function_decl = ast.CreateFunctionDeclaration (ignore_containing_context ? GetClangASTContext().GetTranslationUnitDecl() : containing_decl_ctx, local
6790 // function_decl,
6794 // ast.CreateFunctionTemplateSpecializationInfo (function_decl,
6799 assert (function_decl);
6800 LinkDeclContextToDIE(function_decl, die);
6802 ast.SetFunctionParameters (function_decl,
6815 function_decl);
6817 GetClangASTContext().SetMetadata (function_decl, metadata);

Completed in 3555 milliseconds