Symbol: TOKEN_END_OF_LINE
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1458
if (token.type != TOKEN_END_OF_LINE)
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1609
if (token.type == TOKEN_END_OF_LINE)
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1742
if (token.type == TOKEN_END_OF_LINE)
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1761
if (token.type == TOKEN_END_OF_LINE)
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1817
case TOKEN_END_OF_LINE:
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
271
if (token.type == TOKEN_END_OF_LINE)
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
330
case TOKEN_END_OF_LINE:
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
108
TOKEN_END_OF_LINE);
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
201
type = TOKEN_END_OF_LINE;
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
95
if (fCurrentToken.type == TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
121
if (fCurrentToken.type == TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
137
return fCurrentToken = Token("", 0, _CurrentPos(), TOKEN_END_OF_LINE);
src/kits/shared/ExpressionParser.cpp
246
case TOKEN_END_OF_LINE:
src/kits/shared/ExpressionParser.cpp
388
if (token.type != TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
424
if (token.type != TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
441
if (token.type != TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
557
if (token.type == TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
727
if (token.type == TOKEN_END_OF_LINE)
src/kits/shared/ExpressionParser.cpp
825
case TOKEN_END_OF_LINE:
src/system/kernel/debug/debug_parser.cpp
1101
if (token.type == TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
203
if (fCurrentToken.type == TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
215
fCurrentToken.SetTo("", 0, _CurrentPos(), TOKEN_END_OF_LINE);
src/system/kernel/debug/debug_parser.cpp
509
if (token.type != TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
560
if (token.type != TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
574
if (fTokenizer.NextToken().type == TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
587
if (token.type == TOKEN_END_OF_LINE)
src/system/kernel/debug/debug_parser.cpp
814
while (fTokenizer.NextToken().type != TOKEN_END_OF_LINE) {
src/system/kernel/debug/debug_parser.cpp
925
case TOKEN_END_OF_LINE: