Home | History | Annotate | Download | only in Sema

Lines Matching defs:ObjectType

165   QualType ObjectType = ObjectTypePtr.get();
168 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
248 QualType ObjectType,
255 if (!ObjectType.isNull()) {
258 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
259 LookupCtx = computeDeclContext(ObjectType);
260 isDependent = ObjectType->isDependentType();
261 assert((isDependent || !ObjectType->isIncompleteType() ||
262 ObjectType->castAs<TagType>()->isBeingDefined()) &&
266 if (ObjectType->isObjCObjectOrInterfaceType()) {
289 if (!ObjectType.isNull() && Found.empty()) {
303 } else if (isDependent && (!S || ObjectType.isNull())) {
312 if (!ObjectType.isNull())
365 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope &&
397 << ObjectType;
400 << ObjectType;
2809 ParsedType ObjectType,
2822 if (!LookupCtx && ObjectType)
2823 LookupCtx = computeDeclContext(ObjectType.get());
2843 ObjectType, EnteringContext, Result,