Searched refs:InterfaceAndMethod (Results 1 – 2 of 2) sorted by relevance
33 struct InterfaceAndMethod;77 std::vector<InterfaceAndMethod> allMethodsFromRoot() const;80 std::vector<InterfaceAndMethod> allSuperMethodsFromRoot() const;165 struct InterfaceAndMethod { struct166 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod() argument
632 std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const { in allMethodsFromRoot()633 std::vector<InterfaceAndMethod> v; in allMethodsFromRoot()638 v.push_back(InterfaceAndMethod(iface, userMethod)); in allMethodsFromRoot()642 v.push_back(InterfaceAndMethod( in allMethodsFromRoot()649 std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const { in allSuperMethodsFromRoot()650 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot(); in allSuperMethodsFromRoot()