Searched refs:operatorStack (Results 1 - 1 of 1) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DDefSymParser.cpp36 std::stack<const char*> operatorStack; local
60 if (operatorStack.empty()) {
61 operatorStack.push(si);
64 if (precedence(si) <= precedence(operatorStack.top())) {
68 while (!operatorStack.empty()) {
69 if (precedence(si) <= precedence(operatorStack.top())) {
70 postfixString.push_back(std::string(operatorStack.top(),1));
71 operatorStack.pop();
78 operatorStack.push(si);
89 while (!operatorStack
[all...]

Completed in 65 milliseconds