Lines Matching refs:expr1
1056 TokenSequence expr1{expr, first, exprTokens}; in IsIfPredicateTrue() local
1057 if (expr1.HasBlanks()) { in IsIfPredicateTrue()
1058 expr1.RemoveBlanks(); in IsIfPredicateTrue()
1061 for (std::size_t j{0}; j < expr1.SizeInTokens(); ++j) { in IsIfPredicateTrue()
1062 if (ToLowerCaseLetters(expr1.TokenAt(j).ToString()) == "defined") { in IsIfPredicateTrue()
1064 if (j + 3 < expr1.SizeInTokens() && in IsIfPredicateTrue()
1065 expr1.TokenAt(j + 1).ToString() == "(" && in IsIfPredicateTrue()
1066 expr1.TokenAt(j + 3).ToString() == ")") { in IsIfPredicateTrue()
1067 name = expr1.TokenAt(j + 2); in IsIfPredicateTrue()
1069 } else if (j + 1 < expr1.SizeInTokens() && in IsIfPredicateTrue()
1070 IsLegalIdentifierStart(expr1.TokenAt(j + 1))) { in IsIfPredicateTrue()
1071 name = expr1.TokenAt(++j); in IsIfPredicateTrue()
1079 expr2.Put(expr1, j); in IsIfPredicateTrue()