Searched defs:paren_stack (Results 1 - 1 of 1) sorted by relevance

/build/kati/
H A Dstrutil.cc401 stack<char> paren_stack; local
404 if (cond(c) && paren_stack.empty() && !prev_backslash) {
409 paren_stack.push(')');
412 paren_stack.push('}');
417 if (!paren_stack.empty() && c == paren_stack.top()) {
418 paren_stack.pop();

Completed in 64 milliseconds