Home
last modified time | relevance | path

Searched refs:getObjCIdType (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp223 return ast_ctx.getObjCIdType(); in BuildObjCObjectPointerType()
241 return ast_ctx.getObjCIdType(); in BuildObjCObjectPointerType()
247 return ast_ctx.getObjCIdType(); in BuildObjCObjectPointerType()
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp434 T = Context->getObjCIdType(); in convertToUnqualifiedObjCType()
484 result = Context->getObjCIdType(); in getSimpleFunctionType()
1860 if (t == Context->getObjCIdType()) { in RewriteObjCTryStmt()
2324 QualType argT = Context->getObjCIdType(); in SynthSuperConstructorFunctionDecl()
2341 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl()
2382 QualType argT = Context->getObjCIdType(); in SynthMsgSendStretFunctionDecl()
2426 QualType argT = Context->getObjCIdType(); in SynthMsgSendFpretFunctionDecl()
2540 FieldTypes[0] = Context->getObjCIdType(); in getSuperStructType()
2568 FieldTypes[0] = Context->getObjCIdType(); in getConstantStringStructType()
2863 type = Context->getObjCIdType(); in SynthMessageExpr()
[all …]
H A DRewriteModernObjC.cpp527 : Context->getObjCIdType(); in convertToUnqualifiedObjCType()
579 result = Context->getObjCIdType(); in getSimpleFunctionType()
2414 QualType argT = Context->getObjCIdType(); in SynthSuperConstructorFunctionDecl()
2431 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl()
2464 QualType argT = Context->getObjCIdType(); in SynthMsgSendStretFunctionDecl()
2500 QualType argT = Context->getObjCIdType(); in SynthMsgSendFpretFunctionDecl()
2987 FieldTypes[0] = Context->getObjCIdType(); in getSuperStructType()
2989 FieldTypes[1] = Context->getObjCIdType(); in getSuperStructType()
3015 FieldTypes[0] = Context->getObjCIdType(); in getConstantStringStructType()
3434 type = Context->getObjCIdType(); in SynthMessageExpr()
[all …]
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjC.cpp134 QualType IdTy(CGM.getContext().getObjCIdType()); in EmitObjCCollectionLiteral()
148 QualType ElementType = Context.getObjCIdType().withConst(); in EmitObjCCollectionLiteral()
1198 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCGetterBody()
1208 getContext().getObjCIdType(), args), in generateObjCGetterBody()
1488 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCSetterBody()
1491 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody()
1498 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody()
1686 QualType IdTy(CGM.getContext().getObjCIdType()); in GenerateObjCCtorDtorMethod()
1869 Args2.add(RValue::get(V), getContext().getObjCIdType()); in EmitObjCForCollectionStmt()
2701 getContext().getObjCIdType(), in EmitObjCMRRAutoreleasePoolPush()
[all …]
H A DCGObjCMac.cpp239 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getGetPropertyFn()
254 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getSetPropertyFn()
282 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getOptimizedSetPropertyFn()
343 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType())); in getEnumerationMutationFn()
2123 CGF.getContext().getObjCIdType(), false, CallArgs, in GenerateMessageSend()
4051 auto ResultType = CGF.getContext().getObjCIdType(); in GenerateDirectMethodPrologue()
5757 cast<llvm::PointerType>(Types.ConvertType(Ctx.getObjCIdType())); in ObjCCommonTypesHelper()
5780 nullptr, Ctx.getObjCIdType(), nullptr, nullptr, in ObjCCommonTypesHelper()
7383 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
7386 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
H A DCodeGenModule.cpp5647 Context.getPointerType(Context.getObjCIdType()), in getObjCFastEnumerationStateType()
6042 getContext().getObjCIdType(), nullptr, D, /*isInstance=*/true, in EmitObjCIvarInitializations()
H A DCGObjCGNU.cpp2190 QualType UnqualIdTy = CGM.getContext().getObjCIdType(); in CGObjCGNU()
H A DCGDebugInfo.cpp988 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit); in CreateType()
H A DCGBuiltin.cpp2892 ArgType = CGM.getContext().getObjCIdType(); in EmitBuiltinExpr()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprObjC.cpp113 Ty = Context.getObjCIdType(); in BuildObjCStringLiteral()
805 QualType IdT = Context.getObjCIdType(); in BuildObjCArrayLiteral()
967 QualType IdT = Context.getObjCIdType(); in BuildObjCDictionaryLiteral()
1436 Context.getObjCIdType(), in stripObjCInstanceType()
1437 Context.getObjCIdType()); in stripObjCInstanceType()
1444 return Context.getObjCIdType(); in stripObjCInstanceType()
1787 ReturnType = Context.getObjCIdType(); in CheckMessageArgumentTypes()
2876 Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType()); in BuildInstanceMessage()
2909 !Context.getObjCIdType().isNull() && in BuildInstanceMessage()
2916 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), in BuildInstanceMessage()
[all …]
H A DSemaPseudoObject.cpp1187 S.Context.getObjCIdType() /*ReturnType*/, nullptr /*TypeSourceInfo */, in findAtIndexGetter()
1199 : S.Context.getObjCIdType(), in findAtIndexGetter()
1304 S.Context.getObjCIdType(), in findAtIndexSetter()
1314 : S.Context.getObjCIdType(), in findAtIndexSetter()
H A DSemaDeclObjC.cpp761 typeBoundInfo = Context.getTrivialTypeSourceInfo(Context.getObjCIdType()); in actOnObjCTypeParam()
4740 resultDeclType = Context.getObjCIdType(); in ActOnMethodDeclaration()
4761 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration()
4813 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration()
H A DSemaStmt.cpp2311 OpaqueValueExpr OpaqueId(D->getLocation(), Context.getObjCIdType(), in ActOnObjCForCollectionStmt()
H A DSemaCodeComplete.cpp8101 : Context.getObjCIdType(); in CodeCompleteObjCInstanceMessage()
8593 QualType PropertyType = Context.getObjCIdType(); in CodeCompleteObjCPropertySynthesizeIvar()
H A DSemaDecl.cpp2510 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); in MergeTypedefNameDecl()
12283 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); in deduceVarTypeFromInitializer()
12789 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); in AddInitializerToDecl()
H A DSemaExpr.cpp8862 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType()
8864 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType()
8869 QualType incompatTy = Context.getObjCIdType(); in FindCompositeObjCPointerType()
H A DSemaOverload.cpp5895 QualType Ty = S.Context.getObjCIdType(); in TryContextuallyConvertToObjCPointer()
5932 QualType Ty = Context.getObjCIdType(); in PerformContextuallyConvertToObjCPointer()
H A DSemaExprCXX.cpp8763 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType()); in ActOnFinishFullExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h1845 return getObjCIdType(); in getObjCIdRedefinitionType()
2042 QualType getObjCIdType() const { in getObjCIdType() function
2823 return T == getObjCIdType(); in isObjCIdType()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp90 context.getObjCIdType())); in TEST_F()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTDiagnostic.cpp163 if (QualType(Ty,0) == Context.getObjCIdType() || in desugarForDiagnostic()
H A DDeclObjC.cpp1124 selfTy = Context.getObjCIdType(); in getSelfType()
H A DASTContext.cpp7471 buildImplicitTypedef(getObjCIdType(), "instancetype"); in getObjCInstanceTypeDecl()
8335 getObjCIdType(), S, in getObjCEncodingForTypeImpl()
11112 Type = Context.getObjCIdType(); in DecodeTypeFromStr()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp1639 VisitType = Context.getObjCIdType(); in VisitBuiltinTypeLoc()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2068 return ast->getObjCIdType().getAsOpaquePtr(); in GetOpaqueCompilerType()