/external/lldb/include/lldb/Symbol/ |
H A D | TaggedASTType.h | 28 TaggedASTType (lldb::clang_type_t type, clang::ASTContext *ast_context) : argument 29 ClangASTType(ast_context, type)
|
H A D | ClangASTType.h | 62 ClangASTType (clang::ASTContext *ast_context, lldb::clang_type_t type) : argument 64 m_ast (ast_context) 68 ClangASTType (clang::ASTContext *ast_context, clang::QualType qual_type);
|
/external/lldb/source/Commands/ |
H A D | CommandObjectArgs.cpp | 158 ClangASTContext &ast_context = thread_module_sp->GetClangASTContext(); local 210 clang_type = ast_context.GetBuiltinTypeForEncodingAndBitSize(encoding, width); 226 clang_type = ast_context.GetBasicType(eBasicTypeVoid).GetPointerType(); 228 clang_type = ast_context.GetCStringType (false);
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCRuntime.cpp | 96 ClangASTContext *ast_context = target->GetScratchClangASTContext(); local 97 ClangASTType opaque_type = ast_context->GetBasicType(eBasicTypeObjCID); 99 opaque_type = ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); 108 ClangASTContext *ast_context = target->GetScratchClangASTContext(); local 110 ClangASTType return_clang_type = ast_context->GetCStringType(true);
|
/external/v8/src/compiler/ |
H A D | ast-graph-builder.cc | 237 : kind_(kind), owner_(own), outer_(own->ast_context()) { 811 ast_context()->ProduceValue(value); 836 ast_context()->ReplaceValue(); 842 ast_context()->ProduceValue(value); 848 ast_context()->ProduceValue(value); 864 ast_context()->ProduceValue(literal); 975 ast_context()->ProduceValue(environment()->Pop()); 1012 ast_context()->ProduceValue(environment()->Pop()); 1148 ast_context()->ProduceValue(value); 1158 ast_context() [all...] |
H A D | ast-graph-builder.h | 47 AstContext* ast_context() const { return ast_context_; } function in class:v8::internal::compiler::AstGraphBuilder
|
/external/lldb/include/lldb/Expression/ |
H A D | ClangASTSource.h | 75 void InstallASTContext (clang::ASTContext *ast_context) argument 77 m_ast_context = ast_context; 78 m_ast_importer->InstallMapCompleter(ast_context, *this);
|
H A D | ClangFunction.h | 81 /// @param[in] ast_context 90 ClangASTContext *ast_context, 100 /// @param[in] ast_context 105 /// defined in ast_context.
|
/external/v8/src/ |
H A D | hydrogen.cc | 3939 if (owner->ast_context()->IsTest()) { 3944 TestContext* outer_test_context = TestContext::cast(owner->ast_context()); 3954 call_context_ = owner->ast_context(); 3988 outer_(owner->ast_context()), 5241 return ast_context()->ReturnInstruction(instr, expr->id()); 5290 if (!ast_context()->IsTest()) { 5293 if (join != NULL && !ast_context()->IsEffect()) { 5294 return ast_context()->ReturnValue(Pop()); 5359 return ast_context()->ReturnInstruction(instr, expr->id()); 5377 return ast_context() [all...] |
H A D | hydrogen.h | 2163 AstContext* ast_context() const { return ast_context_; } function in class:v8::internal::HOptimizedGraphBuilder
|
/external/lldb/source/Expression/ |
H A D | ClangExpressionParser.cpp | 352 std::unique_ptr<clang::ASTContext> ast_context(new ASTContext(m_compiler->getLangOpts(), 365 decl_map->InstallASTContext(ast_context.get()); 366 ast_context->setExternalSource(ast_source); 369 m_compiler->setASTContext(ast_context.release());
|
H A D | ClangFunction.cpp | 77 ClangASTContext *ast_context, 83 m_clang_ast_context (ast_context), 73 ClangFunction( ExecutionContextScope &exe_scope, Function &function, ClangASTContext *ast_context, const ValueList &arg_value_list ) argument
|
H A D | ClangASTSource.cpp | 832 clang::ASTContext *ast_context, 886 Decl *copied_decl = ast_importer->CopyDecl(ast_context, &result_method->getASTContext(), result_method); 1195 clang::ASTContext &ast_context, 1214 DeclFromParser<ObjCPropertyDecl> parser_property_decl(origin_property_decl.Import(ast_importer, ast_context)); 1232 DeclFromParser<ObjCIvarDecl> parser_ivar_decl(origin_ivar_decl.Import(ast_importer, ast_context)); 829 FindObjCMethodDeclsWithOrigin(unsigned int current_id, NameSearchContext &context, ObjCInterfaceDecl *original_interface_decl, clang::ASTContext *ast_context, ClangASTImporter *ast_importer, const char *log_info) argument 1193 FindObjCPropertyAndIvarDeclsWithOrigin(unsigned int current_id, NameSearchContext &context, clang::ASTContext &ast_context, ClangASTImporter *ast_importer, DeclFromUser<const ObjCInterfaceDecl> &origin_iface_decl) argument
|
H A D | ClangExpressionDeclMap.cpp | 1360 ASTContext *ast_context, 1389 QualType generic_function_type = ast_context->getFunctionNoProtoType(ast_context->UnknownAnyTy); 1390 QualType block_pointer_type = ast_context->getBlockPointerType(generic_function_type); 1358 MaybePromoteToBlockPointerType( ASTContext *ast_context, clang_type_t candidate_type ) argument
|
/external/lldb/source/Breakpoint/ |
H A D | Watchpoint.cpp | 56 ClangASTContext *ast_context = target.GetScratchClangASTContext(); local 57 m_type = ast_context->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 8 * size);
|
/external/lldb/source/Plugins/ABI/MacOSX-arm/ |
H A D | ABIMacOSX_arm.cpp | 430 clang::ASTContext *ast_context = clang_type.GetASTContext(); 431 if (!ast_context)
|