Searched refs:functionDeclarators (Results 1 – 2 of 2) sorted by relevance
2134 TVector<TFunctionDeclarator> functionDeclarators; in acceptStruct() local2137 bool acceptedList = acceptStructDeclarationList(typeList, nodeList, functionDeclarators); in acceptStruct()2165 for (int b = 0; b < (int)functionDeclarators.size(); ++b) { in acceptStruct()2167 if (functionDeclarators[b].function->hasImplicitThis()) in acceptStruct()2168 functionDeclarators[b].function->addThisParameter(type, intermediate.implicitThisName); in acceptStruct()2174 parseContext.pushThisScope(type, functionDeclarators); in acceptStruct()2176 for (int b = 0; b < (int)functionDeclarators.size() && deferredSuccess; ++b) { in acceptStruct()2178 pushTokenStream(functionDeclarators[b].body); in acceptStruct()2179 if (! acceptFunctionBody(functionDeclarators[b], nodeList)) in acceptStruct()
9125 …xt::pushThisScope(const TType& thisStruct, const TVector<TFunctionDeclarator>& functionDeclarators) in pushThisScope() argument9132 for (auto it = functionDeclarators.begin(); it != functionDeclarators.end(); ++it) { in pushThisScope()