/external/clang/lib/Rewrite/ |
D | RewriteObjC.cpp | 434 T = Context->getObjCIdType(); in convertToUnqualifiedObjCType() 455 if (OCT == Context->getCanonicalType(Context->getObjCIdType()) || in isObjCType() 485 result = Context->getObjCIdType(); in getSimpleFunctionType() 1714 syncExpr = NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), in RewriteObjCSynchronizedStmt() 1881 if (t == Context->getObjCIdType()) { in RewriteObjCTryStmt() 2353 QualType argT = Context->getObjCIdType(); in SynthSuperContructorFunctionDecl() 2357 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthSuperContructorFunctionDecl() 2371 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl() 2377 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendFunctionDecl() 2401 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendSuperFunctionDecl() [all …]
|
D | RewriteModernObjC.cpp | 470 T = isConst ? Context->getObjCIdType().withConst() in convertToUnqualifiedObjCType() 471 : Context->getObjCIdType(); in convertToUnqualifiedObjCType() 493 if (OCT == Context->getCanonicalType(Context->getObjCIdType()) || in isObjCType() 523 result = Context->getObjCIdType(); in getSimpleFunctionType() 2275 QualType argT = Context->getObjCIdType(); in SynthSuperContructorFunctionDecl() 2279 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthSuperContructorFunctionDecl() 2293 QualType argT = Context->getObjCIdType(); in SynthMsgSendFunctionDecl() 2299 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendFunctionDecl() 2315 QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), in SynthMsgSendSuperFunctionDecl() 2330 QualType argT = Context->getObjCIdType(); in SynthMsgSendStretFunctionDecl() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 101 QualType ElementType = Context.getObjCIdType().withConst(); in EmitObjCCollectionLiteral() 845 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCGetterBody() 1123 args.add(RValue::get(self), getContext().getObjCIdType()); in generateObjCSetterBody() 1126 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody() 1134 args.add(RValue::get(arg), getContext().getObjCIdType()); in generateObjCSetterBody() 1319 QualType IdTy(CGM.getContext().getObjCIdType()); in GenerateObjCCtorDtorMethod() 1398 getContext().getConstantArrayType(getContext().getObjCIdType(), in EmitObjCForCollectionStmt() 1500 ConvertType(getContext().getObjCIdType())); in EmitObjCForCollectionStmt() 1502 Args2.add(RValue::get(V), getContext().getObjCIdType()); in EmitObjCForCollectionStmt() 2181 getContext().getObjCIdType(), in EmitObjCMRRAutoreleasePoolPush() [all …]
|
D | CGObjCMac.cpp | 237 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() 4356 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType()); in ObjCCommonTypesHelper() 4377 Ctx.getObjCIdType(), 0, 0, false, false)); in ObjCCommonTypesHelper() 5925 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend() 5929 Receiver, CGF.getContext().getObjCIdType(), in GenerateMessageSend()
|
D | CodeGenModule.cpp | 2168 Context.getPointerType(Context.getObjCIdType()), in getObjCFastEnumerationStateType() 2407 getContext().getObjCIdType(), 0, in EmitObjCIvarInitializations()
|
D | CGObjCGNU.cpp | 731 QualType UnqualIdTy = CGM.getContext().getObjCIdType(); in CGObjCGNU()
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 111 Ty = Context.getObjCIdType(); in BuildObjCStringLiteral() 586 QualType IdT = Context.getObjCIdType(); in BuildObjCArrayLiteral() 720 QualType IdT = Context.getObjCIdType(); in BuildObjCDictionaryLiteral() 1028 return Context.getObjCIdType(); in stripObjCInstanceType() 1132 ReturnType = Context.getObjCIdType(); in CheckMessageArgumentTypes() 2059 Result = forceUnknownAnyToType(Receiver, Context.getObjCIdType()); in BuildInstanceMessage() 2222 !Context.getObjCIdType().isNull() && in BuildInstanceMessage() 2231 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), in BuildInstanceMessage() 2237 Receiver = ImpCastExprToType(Receiver, Context.getObjCIdType(), in BuildInstanceMessage()
|
D | SemaPseudoObject.cpp | 992 S.Context.getObjCIdType() /*ReturnType*/, in findAtIndexGetter() 1005 : S.Context.getObjCIdType(), in findAtIndexGetter() 1116 S.Context.getObjCIdType(), in findAtIndexSetter() 1127 : S.Context.getObjCIdType(), in findAtIndexSetter()
|
D | SemaDeclObjC.cpp | 2722 resultDeclType = Context.getObjCIdType(); in ActOnMethodDeclaration() 2747 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration() 2800 ArgType = Context.getObjCIdType(); in ActOnMethodDeclaration()
|
D | SemaCodeComplete.cpp | 5374 : Context.getObjCIdType(); 5878 QualType PropertyType = Context.getObjCIdType();
|
D | SemaExpr.cpp | 4904 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType() 4906 compositeType = Context.getObjCIdType(); in FindCompositeObjCPointerType() 4914 QualType incompatTy = Context.getObjCIdType(); in FindCompositeObjCPointerType()
|
D | SemaDecl.cpp | 1491 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); in MergeTypedefNameDecl() 6283 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); in AddInitializerToDecl()
|
D | SemaOverload.cpp | 4938 QualType Ty = S.Context.getObjCIdType(); in TryContextuallyConvertToObjCPointer() 4973 QualType Ty = Context.getObjCIdType(); in PerformContextuallyConvertToObjCPointer()
|
D | SemaExprCXX.cpp | 5285 FullExpr = forceUnknownAnyToType(FullExpr.take(), Context.getObjCIdType()); in ActOnFinishFullExpr()
|
/external/clang/lib/AST/ |
D | ASTDiagnostic.cpp | 66 if (QualType(Ty,0) == Context.getObjCIdType() || in Desugar()
|
D | DeclObjC.cpp | 624 selfTy = Context.getObjCIdType(); in createImplicitParams()
|
D | ASTContext.cpp | 3992 getTrivialTypeSourceInfo(getObjCIdType())); in getObjCInstanceTypeDecl() 4666 getObjCEncodingForTypeImpl(getObjCIdType(), S, in getObjCEncodingForTypeImpl() 6375 Type = Context.getObjCIdType(); in DecodeTypeFromStr()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 967 return getObjCIdType(); in getObjCIdRedefinitionType() 1117 QualType getObjCIdType() const { in getObjCIdType() function 1608 return T == getObjCIdType(); in isObjCIdType()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1358 VisitType = Context.getObjCIdType(); in VisitBuiltinTypeLoc()
|