Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp67 bool for_expression) { in ReadStructElement() argument
81 return BuildAggregate(ast_ctx, type, for_expression, '{', '}', in BuildStruct()
87 return BuildAggregate(ast_ctx, type, for_expression, '(', ')', in BuildUnion()
92 TypeSystemClang &ast_ctx, StringLexer &type, bool for_expression, in BuildAggregate() argument
218 if (for_expression && !name.empty()) { in BuildObjCObjectPointerType()
264 return BuildStruct(clang_ast_ctx, type, for_expression); in BuildType()
266 return BuildArray(clang_ast_ctx, type, for_expression); in BuildType()
268 return BuildUnion(clang_ast_ctx, type, for_expression); in BuildType()
326 BuildType(clang_ast_ctx, type, for_expression); in BuildType()
335 if (!for_expression && type.NextIf('?')) { in BuildType()
[all …]
H A 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);
H A 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()
H A DAppleObjCClassDescriptorV2.cpp548 const bool for_expression = false; in fill() local
553 encoding_to_type_sp->RealizeType(type, for_expression); in fill()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h156 bool for_expression) = 0;
157 virtual CompilerType RealizeType(const char *name, bool for_expression);
H A DObjCLanguageRuntime.cpp302 bool for_expression) { in RealizeType() argument
304 return RealizeType(*m_scratch_ast_ctx_up, name, for_expression); in RealizeType()