Home
last modified time | relevance | path

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

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