Home | History | Annotate | Download | only in AST

Lines Matching refs:Instance

66 // Get the local instance/class method declared in this interface.
78 // Since instance & class methods can have the same name, the loop below
114 // for a user declared instance method.
133 // Also look into protocols, for a user declared instance method.
180 // If queryKind is unknown, we return the instance property if one
195 // We can't find the instance property, return the class property.
649 /// lookupMethod - This method returns an instance/class method by looking in
709 // If failed, then we search in class's root for an instance method.
713 bool Instance) const {
723 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
728 Method = getCategoryMethod(Sel, Instance);
730 // Before we give up, check if the selector is an instance method.
733 if (!Instance && !Method && !getSuperClass()) {
742 return getSuperClass()->lookupPrivateMethod(Sel, Instance);
938 // init only has a conventional meaning for an instance method, and
946 // instance methods, but they require an object return.
955 // These selectors have a conventional meaning only for instance methods.
1818 // lookupMethod - Lookup a instance/class method in the protocol and protocols
2054 // If queryKind is unknown, we return the instance property if one
2070 // We can't find the instance property, return the class property.