Home
last modified time | relevance | path

Searched refs:ast_ctx (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp74 AppleObjCTypeEncodingParser::ReadStructElement(TypeSystemClang &ast_ctx, in ReadStructElement() argument
85 retval.type = BuildType(ast_ctx, type, for_expression, &bitfield_size); in ReadStructElement()
91 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression) { in BuildStruct() argument
92 return BuildAggregate(ast_ctx, type, for_expression, _C_STRUCT_B, _C_STRUCT_E, in BuildStruct()
97 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression) { in BuildUnion() argument
98 return BuildAggregate(ast_ctx, type, for_expression, _C_UNION_B, _C_UNION_E, in BuildUnion()
103 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression, in BuildAggregate() argument
124 auto element = ReadStructElement(ast_ctx, type, for_expression); in BuildAggregate()
137 CompilerType union_type(ast_ctx.CreateRecordType( in BuildAggregate()
151 union_type, element.name.c_str(), ast_ctx.GetType(element.type), in BuildAggregate()
[all …]
H A DAppleObjCDeclVendor.cpp152 clang::ASTContext &ast_ctx = m_ast_ctx->getASTContext(); in GetDeclForISA() local
163 ast_ctx.Idents.get(name.GetStringRef()); in GetDeclForISA()
166 ast_ctx, ast_ctx.getTranslationUnitDecl(), clang::SourceLocation(), in GetDeclForISA()
176 ast_ctx.getTranslationUnitDecl()->addDecl(new_iface_decl); in GetDeclForISA()
307 clang::ASTContext &ast_ctx(interface_decl->getASTContext()); in BuildMethod() local
329 &ast_ctx.Idents.get(llvm::StringRef(name_cursor))); in BuildMethod()
333 selector_components.push_back(&ast_ctx.Idents.get( in BuildMethod()
344 clang::Selector sel = ast_ctx.Selectors.getSelector( in BuildMethod()
356 ast_ctx, clang::SourceLocation(), clang::SourceLocation(), sel, in BuildMethod()
374 ast_ctx, ret, clang::SourceLocation(), clang::SourceLocation(), in BuildMethod()
[all …]
H A DAppleObjCTypeEncodingParser.h25 CompilerType RealizeType(TypeSystemClang &ast_ctx, const char *name,
42 clang::QualType BuildStruct(TypeSystemClang &ast_ctx, StringLexer &type,
49 clang::QualType BuildUnion(TypeSystemClang &ast_ctx, StringLexer &type,
52 clang::QualType BuildArray(TypeSystemClang &ast_ctx, StringLexer &type,
57 StructElement ReadStructElement(TypeSystemClang &ast_ctx, StringLexer &type,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCoroutines.cpp136 auto ast_ctx = valobj_sp->GetCompilerType().GetTypeSystem<TypeSystemClang>(); in Update() local
137 if (!ast_ctx) in Update()
144 CompilerType void_type = ast_ctx->GetBasicType(lldb::eBasicTypeVoid); in Update()
165 CompilerType coro_func_type = ast_ctx->CreateFunctionType( in Update()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h164 virtual CompilerType RealizeType(TypeSystemClang &ast_ctx, const char *name,
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h160 static TypeSystemClang *GetASTContext(clang::ASTContext *ast_ctx);
H A DTypeSystemClang.cpp4301 clang::ASTContext &ast_ctx = getASTContext(); in GetArrayType() local
4303 return GetType(ast_ctx.getConstantArrayType( in GetArrayType()
4307 return GetType(ast_ctx.getIncompleteArrayType( in GetArrayType()