Home
last modified time | relevance | path

Searched refs:for_expression (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCTypeEncodingParser.cpp67 bool for_expression) { in ReadStructElement() argument
74 retval.type = BuildType(ast_ctx, type, for_expression, &bitfield_size); in ReadStructElement()
80 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression) { in BuildStruct() argument
81 return BuildAggregate(ast_ctx, type, for_expression, '{', '}', in BuildStruct()
86 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression) { in BuildUnion() argument
87 return BuildAggregate(ast_ctx, type, for_expression, '(', ')', in BuildUnion()
92 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression, in BuildAggregate() argument
113 auto element = ReadStructElement(ast_ctx, type, for_expression); in BuildAggregate()
150 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression) { in BuildArray() argument
154 clang::QualType element_type(BuildType(ast_ctx, type, for_expression)); in BuildArray()
[all …]
DAppleObjCTypeEncodingParser.h26 bool for_expression) override;
39 bool for_expression,
43 bool for_expression);
46 StringLexer &type, bool for_expression,
50 bool for_expression);
53 bool for_expression);
58 bool for_expression);
62 bool for_expression);
DAppleObjCDeclVendor.cpp319 const bool for_expression = true; in BuildMethod() local
351 clang_ast_ctxt, m_type_vector[0].c_str(), for_expression)); in BuildMethod()
365 const bool for_expression = true; in BuildMethod() local
368 clang_ast_ctxt, m_type_vector[ai].c_str(), for_expression)); in BuildMethod()
480 const bool for_expression = false; in FinishDecl() local
487 m_ast_ctx, type, for_expression); in FinishDecl()
DAppleObjCClassDescriptorV2.cpp546 const bool for_expression = false; in fill() local
551 encoding_to_type_sp->RealizeType(type, for_expression); in fill()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
DObjCLanguageRuntime.h148 bool for_expression) = 0;
149 virtual CompilerType RealizeType(const char *name, bool for_expression);
DObjCLanguageRuntime.cpp302 bool for_expression) { in RealizeType() argument
304 return RealizeType(*m_scratch_ast_ctx_up, name, for_expression); in RealizeType()