Home
last modified time | relevance | path

Searched refs:parenthesesNesting (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/flang/lib/Parser/
Dpreprocessor.cpp144 int parenthesesNesting{0}; in Apply() local
152 ++parenthesesNesting; in Apply()
154 skipping = --parenthesesNesting > 0; in Apply()
210 parenthesesNesting == 0) { in Apply()
211 parenthesesNesting = 1; in Apply()
215 if (bytes == 1 && parenthesesNesting > 0 && token[0] == '(') { in Apply()
216 ++parenthesesNesting; in Apply()
217 } else if (bytes == 1 && parenthesesNesting > 0 && token[0] == ')') { in Apply()
218 if (--parenthesesNesting == 0) { in Apply()