Home
last modified time | relevance | path

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

/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp439 T = Context->getObjCIdType(); in convertToUnqualifiedObjCType()
460 if (OCT == Context->getCanonicalType(Context->getObjCIdType()) || in isObjCType()
490 result = Context->getObjCIdType(); in getSimpleFunctionType()
1719 syncExpr = NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), in RewriteObjCSynchronizedStmt()
1885 if (t == Context->getObjCIdType()) { in RewriteObjCTryStmt()
2357 QualType argT = Context->getObjCIdType(); in SynthSuperContructorFunctionDecl()
2361 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthSuperContructorFunctionDecl()
2375 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl()
2381 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendFunctionDecl()
2405 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendSuperFunctionDecl()
[all …]
DRewriteModernObjC.cpp484 T = isConst ? Context->getObjCIdType().withConst() in convertToUnqualifiedObjCType()
485 : Context->getObjCIdType(); in convertToUnqualifiedObjCType()
507 if (OCT == Context->getCanonicalType(Context->getObjCIdType()) || in isObjCType()
537 result = Context->getObjCIdType(); in getSimpleFunctionType()
2370 QualType argT = Context->getObjCIdType(); in SynthSuperContructorFunctionDecl()
2374 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthSuperContructorFunctionDecl()
2388 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl()
2394 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendFunctionDecl()
2410 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendSuperFunctionDecl()
2425 QualType argT = Context->getObjCIdType(); in SynthMsgSendStretFunctionDecl()
[all …]
/external/clang/lib/CodeGen/
DCGObjC.cpp101 QualType ElementType = Context.getObjCIdType().withConst(); in EmitObjCCollectionLiteral()
857 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCGetterBody()
1139 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCSetterBody()
1142 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody()
1150 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody()
1336 QualType IdTy(CGM.getContext().getObjCIdType()); in GenerateObjCCtorDtorMethod()
1415 getContext().getConstantArrayType(getContext().getObjCIdType(), in EmitObjCForCollectionStmt()
1517 ConvertType(getContext().getObjCIdType())); in EmitObjCForCollectionStmt()
1519 Args2.add(RValue::get(V), getContext().getObjCIdType()); in EmitObjCForCollectionStmt()
2203 getContext().getObjCIdType(), in EmitObjCMRRAutoreleasePoolPush()
[all …]
DCGObjCMac.cpp237 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getGetPropertyFn()
255 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getSetPropertyFn()
283 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getOptimizedSetPropertyFn()
347 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType())); in getEnumerationMutationFn()
1701 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
4368 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType()); in ObjCCommonTypesHelper()
4389 Ctx.getObjCIdType(), 0, 0, false, ICIS_NoInit)); in ObjCCommonTypesHelper()
5939 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
5943 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
DCodeGenModule.cpp2256 Context.getPointerType(Context.getObjCIdType()), in getObjCFastEnumerationStateType()
2495 getContext().getObjCIdType(), 0, in EmitObjCIvarInitializations()
DCGObjCGNU.cpp793 QualType UnqualIdTy = CGM.getContext().getObjCIdType(); in CGObjCGNU()
/external/clang/lib/Sema/
DSemaExprObjC.cpp111 Ty = Context.getObjCIdType(); in BuildObjCStringLiteral()
636 QualType IdT = Context.getObjCIdType(); in BuildObjCArrayLiteral()
755 QualType IdT = Context.getObjCIdType(); in BuildObjCDictionaryLiteral()
1053 return Context.getObjCIdType(); in stripObjCInstanceType()
1160 ReturnType = Context.getObjCIdType(); in CheckMessageArgumentTypes()
2097 Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType()); in BuildInstanceMessage()
2261 !Context.getObjCIdType().isNull() && in BuildInstanceMessage()
2270 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), in BuildInstanceMessage()
2277 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), in BuildInstanceMessage()
DSemaPseudoObject.cpp1033 S.Context.getObjCIdType() /*ReturnType*/, in findAtIndexGetter()
1046 : S.Context.getObjCIdType(), in findAtIndexGetter()
1161 S.Context.getObjCIdType(), in findAtIndexSetter()
1172 : S.Context.getObjCIdType(), in findAtIndexSetter()
DSemaDeclObjC.cpp2817 resultDeclType = Context.getObjCIdType(); in ActOnMethodDeclaration()
2842 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration()
2895 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration()
DSemaCodeComplete.cpp5432 : Context.getObjCIdType(); in CodeCompleteObjCInstanceMessage()
5936 QualType PropertyType = Context.getObjCIdType(); in CodeCompleteObjCPropertySynthesizeIvar()
DSemaExpr.cpp5091 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType()
5093 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType()
5101 QualType incompatTy = Context.getObjCIdType(); in FindCompositeObjCPointerType()
DSemaOverload.cpp4972 QualType Ty = S.Context.getObjCIdType(); in TryContextuallyConvertToObjCPointer()
5007 QualType Ty = Context.getObjCIdType(); in PerformContextuallyConvertToObjCPointer()
DSemaDecl.cpp1606 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); in MergeTypedefNameDecl()
6536 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); in AddInitializerToDecl()
DSemaExprCXX.cpp5496 FullExpr = forceUnknownAnyToType(FullExpr.take(), Context.getObjCIdType()); in ActOnFinishFullExpr()
/external/clang/include/clang/AST/
DASTContext.h1109 return getObjCIdType(); in getObjCIdRedefinitionType()
1262 QualType getObjCIdType() const { in getObjCIdType() function
1795 return T == getObjCIdType(); in isObjCIdType()
/external/clang/lib/AST/
DASTDiagnostic.cpp70 if (QualType(Ty,0) == Context.getObjCIdType() || in Desugar()
DDeclObjC.cpp650 selfTy = Context.getObjCIdType(); in createImplicitParams()
DASTContext.cpp4358 getTrivialTypeSourceInfo(getObjCIdType())); in getObjCInstanceTypeDecl()
5034 getObjCEncodingForTypeImpl(getObjCIdType(), S, in getObjCEncodingForTypeImpl()
6977 Type = Context.getObjCIdType(); in DecodeTypeFromStr()
/external/clang/tools/libclang/
DCIndex.cpp1376 VisitType = Context.getObjCIdType(); in VisitBuiltinTypeLoc()