HomeSort by relevance Sort by last modified time
    Searched refs:ClangASTContext (Results 1 - 25 of 39) sorted by null

1 2

  /external/lldb/source/Symbol/
ClangASTContext.cpp 1 //===-- ClangASTContext.cpp -------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/ClangASTContext.h"
83 ClangASTContext::ConvertAccessTypeToAccessSpecifier (AccessType access)
268 ClangASTContext::ClangASTContext (const char *target_triple) :
292 ClangASTContext::~ClangASTContext()
307 ClangASTContext::Clear()
322 ClangASTContext::GetTargetTriple ()
328 ClangASTContext::SetTargetTriple (const char *target_triple
    [all...]
Android.mk 16 ClangASTContext.cpp \
SymbolFile.cpp 85 lldb_private::ClangASTContext &
ClangASTImporter.cpp 16 #include "lldb/Symbol/ClangASTContext.h"
229 if (!ClangASTContext::GetCompleteDecl(decl_origin.ctx, decl_origin.decl))
247 if (!ClangASTContext::GetCompleteDecl(origin_ast_ctx, origin_decl))
274 if (!ClangASTContext::GetCompleteDecl(decl_origin.ctx, decl_origin.decl))
320 return ClangASTContext::GetMetadata(decl_origin.ctx, decl_origin.decl);
322 return ClangASTContext::GetMetadata(&decl->getASTContext(), decl);
486 ClangASTContext::GetCompleteDecl (m_source_ctx, original_decl);
ClangASTType.cpp 42 #include "lldb/Symbol/ClangASTContext.h"
851 ClangASTMetadata *metadata = ClangASTContext::GetMetadata (m_ast, cxx_record_decl);
    [all...]
Type.cpp 19 #include "lldb/Symbol/ClangASTContext.h"
548 ClangASTType void_clang_type (ClangASTContext::GetBasicType(GetClangASTContext().getASTContext(), eBasicTypeVoid));
662 ClangASTContext &
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTypeVendor.h 22 #include "lldb/Symbol/ClangASTContext.h"
53 ClangASTContext m_ast_ctx;
AppleObjCRuntime.cpp 27 #include "lldb/Symbol/ClangASTContext.h"
96 ClangASTContext *ast_context = target->GetScratchClangASTContext();
108 ClangASTContext *ast_context = target->GetScratchClangASTContext();
  /external/lldb/include/lldb/Symbol/
ClangASTContext.h 1 //===-- ClangASTContext.h ---------------------------------------*- C++ -*-===//
35 class ClangASTContext
44 ClangASTContext (const char *triple = NULL);
46 ~ClangASTContext();
105 return ClangASTContext::GetCompleteDecl(getASTContext(), decl);
175 return ClangASTContext::GetUnknownAnyType(getASTContext());
324 // Returns a mask containing bits from the ClangASTContext::eTypeXXX enumerations
361 return ClangASTContext::CreateFunctionType(getASTContext(),
412 // Classes that inherit from ClangASTContext can see and modify these
433 // For ClangASTContext onl
    [all...]
SymbolFile.h 146 virtual ClangASTContext &
Type.h 244 ClangASTContext &
  /external/lldb/include/lldb/Expression/
ClangFunction.h 90 ClangASTContext *ast_context,
627 ClangASTContext *m_clang_ast_context; ///< This is the clang_ast_context that we're getting types from the and value, and the function return the function pointer is NULL.
  /external/lldb/include/lldb/Core/
Module.h 18 #include "lldb/Symbol/ClangASTContext.h"
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
InferiorCallPOSIX.cpp 14 #include "lldb/Symbol/ClangASTContext.h"
78 ClangASTContext *clang_ast_context = process->GetTarget().GetScratchClangASTContext();
224 ClangASTContext *clang_ast_context = process->GetTarget().GetScratchClangASTContext();
  /external/lldb/source/Plugins/SymbolFile/Symtab/
SymbolFileSymtab.cpp 82 ClangASTContext &
85 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext();
SymbolFileSymtab.h 134 lldb_private::ClangASTContext &
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.h 34 #include "lldb/Symbol/ClangASTContext.h"
129 virtual lldb_private::ClangASTContext &
139 // ClangASTContext callbacks for external source lookups.
371 lldb_private::ClangASTContext::TemplateParameterInfos &template_param_infos);
518 lldb_private::ClangASTContext::TemplateParameterInfos &template_param_infos);
523 lldb_private::ClangASTContext::TemplateParameterInfos &template_param_infos);
530 const lldb_private::ClangASTContext::TemplateParameterInfos &template_param_infos);
  /external/lldb/source/API/
SBModule.cpp 509 sb_type = SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
519 return SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), type));
552 SBType sb_type(ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
SBTarget.cpp     [all...]
  /external/lldb/source/Commands/
CommandObjectArgs.cpp 158 ClangASTContext &ast_context = thread_module_sp->GetClangASTContext();
  /external/lldb/source/DataFormatters/
CXXFormatterFunctions.cpp 22 #include "lldb/Symbol/ClangASTContext.h"
526 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar);
614 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar);
    [all...]
  /external/lldb/source/Expression/
ClangExpressionDeclMap.cpp 32 #include "lldb/Symbol/ClangASTContext.h"
775 if (ClangASTContext::AreTypesSame(*type, var_sp->GetType()->GetClangFullType()))
    [all...]
  /external/lldb/include/lldb/Target/
Target.h 961 ClangASTContext *
    [all...]
  /external/lldb/source/Breakpoint/
Watchpoint.cpp 21 #include "lldb/Symbol/ClangASTContext.h"
56 ClangASTContext *ast_context = target.GetScratchClangASTContext();
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 21 #include "lldb/Symbol/ClangASTContext.h"
223 if (ClangASTContext::AreTypesSame (in_value.GetClangType(),

Completed in 710 milliseconds

1 2