Lines Matching refs:functions
33 auto functions = GetFunctions(*entry->second); in operator []() local
34 if (functions.size() > 0) { in operator []()
41 for (const FunctionDeclaration* current : functions) { in operator []()
48 functions.push_back(prev); in operator []()
53 ASSERT(functions.size() > 1); in operator []()
54 return this->takeOwnership(new UnresolvedFunction(functions)); in operator []()
79 std::vector<const FunctionDeclaration*> functions; in addWithoutOwnership() local
80 functions.push_back((const FunctionDeclaration*) oldSymbol); in addWithoutOwnership()
81 functions.push_back((const FunctionDeclaration*) symbol); in addWithoutOwnership()
82 UnresolvedFunction* u = new UnresolvedFunction(std::move(functions)); in addWithoutOwnership()
86 std::vector<const FunctionDeclaration*> functions; in addWithoutOwnership() local
88 functions.push_back(f); in addWithoutOwnership()
90 functions.push_back((const FunctionDeclaration*) symbol); in addWithoutOwnership()
91 UnresolvedFunction* u = new UnresolvedFunction(std::move(functions)); in addWithoutOwnership()