OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Eof
(Results
1 - 25
of
27
) sorted by relevancy
1
2
/src/external/bsd/openldap/dist/libraries/liblmdb/
mdb_load.c
37
static int
Eof
;
188
if (c ==
EOF
) {
189
Eof
= 1;
190
return
EOF
;
196
Eof
= 1;
198
return
EOF
;
201
return
EOF
;
206
Eof
= 1;
207
return
EOF
;
219
Eof
= 1
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MILexer.h
29
Eof
,
189
bool isNewlineOrEOF() const { return Kind == Newline || Kind ==
Eof
; }
191
bool isErrorOrEOF() const { return Kind == Error || Kind ==
Eof
; }
MIParser.cpp
875
!Token.is(MIToken::
Eof
)) {
952
assert(Token.is(MIToken::MachineBasicBlockLabel) || Token.is(MIToken::
Eof
));
953
} while (Token.isNot(MIToken::
Eof
));
1098
if (Token.isNot(MIToken::
Eof
))
1111
if (Token.isNot(MIToken::
Eof
))
1123
if (Token.isNot(MIToken::
Eof
))
1139
if (Token.isNot(MIToken::
Eof
))
1150
if (Token.isNot(MIToken::
Eof
))
1168
if (Token.isNot(MIToken::
Eof
))
MILexer.cpp
707
Token.reset(MIToken::
Eof
, C.remaining());
/src/external/apache2/llvm/dist/llvm/lib/Object/
COFFModuleDefinition.cpp
35
Eof
,
95
return Token(
Eof
);
99
return Token(
Eof
);
155
} while (Tok.K !=
Eof
);
188
case
Eof
:
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h
34
Eof
, Error,
88
tgtok::TokKind CurCode = tgtok::TokKind::
Eof
;
153
// Process
EOF
encountered in LexToken().
154
// If
EOF
is met in an include file, then the method will update
156
// If
EOF
is met in the top-level file, then the method will
207
//
EOF
210
//
EOF
339
// or
EOF
, CurPtr is set to point to this symbol. The method returns false,
373
// Report an error, if we reach
EOF
with non-empty preprocessing control
TGLexer.cpp
84
// the final
EOF
and stop lexing more tokens by returning false
116
--CurPtr; // Arrange for another call to return
EOF
again.
117
return
EOF
;
153
case
EOF
:
162
// Return
EOF
denoting the end of lexing.
163
return tgtok::
Eof
;
437
case
EOF
:
524
if (Char ==
EOF
) break;
529
if (Char ==
EOF
) break;
640
// New line and
EOF
may follow only #else/#endif. It will be reporte
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h
25
Eof
, Error,
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmLexer.cpp
69
case AsmToken::
Eof
: OS << "
Eof
"; break;
MasmParser.cpp
616
/// exit will be either this kind or
EOF
. Reads through instantiated macro
623
/// either the EndOfStatement or
EOF
.
1170
if (tok->is(AsmToken::
Eof
)) {
1241
while (Lexer.isNot(AsmToken::
Eof
) ||
1243
// Skip through the
EOF
at the end of an inclusion.
1244
if (Lexer.is(AsmToken::
Eof
))
1341
if (Lexer.is(AsmToken::
Eof
)) {
1364
if (Lexer.is(AsmToken::
Eof
)) {
1395
while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::
Eof
))
2930
if (Lexer.is(AsmToken::
Eof
) || Lexer.is(AsmToken::Equal)
[
all
...]
AsmParser.cpp
352
/// will be either the EndOfStatement or
EOF
.
907
if (tok->is(AsmToken::
Eof
)) {
977
while (Lexer.isNot(AsmToken::
Eof
)) {
1071
while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::
Eof
))
1082
while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::
Eof
))
1093
Lexer.isNot(AsmToken::Comma) && Lexer.isNot(AsmToken::
Eof
))
2685
if (Lexer.is(AsmToken::
Eof
) || Lexer.is(AsmToken::Equal))
4537
if (getLexer().is(AsmToken::
Eof
))
5314
while (Lexer.isNot(AsmToken::
Eof
))
5564
if (getLexer().is(AsmToken::
Eof
)) {
[
all
...]
AsmLexer.cpp
64
return
EOF
;
70
return
EOF
;
229
while (CurChar != '\n' && CurChar != '\r' && CurChar !=
EOF
)
574
while (CurChar !=
EOF
) {
586
if (CurChar ==
EOF
)
594
if (CurChar ==
EOF
)
631
while (CurChar !=
EOF
) {
643
if (CurChar ==
EOF
)
655
if (CurChar ==
EOF
)
701
if (Token.is(AsmToken::
Eof
))
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseCXXInlineMethods.cpp
211
// Store an artificial
EOF
token to ensure that we don't run off the end of
213
Token
Eof
;
214
Eof
.startToken();
215
Eof
.setKind(tok::
eof
);
216
Eof
.setLocation(Tok.getLocation());
217
Eof
.setEofData(VarD);
218
Toks.push_back(
Eof
);
354
DefArgEnd.setKind(tok::
eof
);
386
if (Tok.isNot(tok::
eof
) || Tok.getEofData() != Param)
[
all
...]
ParseObjc.cpp
328
if (Tok.is(tok::
eof
))
781
//
EOF
. In the former case, eat the @end. In the later case, emit an error.
798
// This passes in an invalid SourceLocation for AtEndLoc when
EOF
is hit.
1795
if (Tok.is(tok::
eof
)) // Nothing else to do here...
1845
if (Tok.is(tok::
eof
))
3650
// Store an artificial
EOF
token to ensure that we don't run off the end of
3652
Token
Eof
;
3653
Eof
.startToken();
3654
Eof
.setKind(tok::
eof
);
[
all
...]
ParseDecl.cpp
234
Token
Eof
;
235
Eof
.startToken();
236
Eof
.setLocation(Tok.getLocation());
237
LA->Toks.push_back(
Eof
);
1937
case tok::
eof
:
4271
Tok.isNot(tok::
eof
)) {
6703
&& (!Tok.is(tok::
eof
) &&
/src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLToken.h
20
Eof
,
/src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
llvm-ml.cpp
117
while (Lexer.Lex().isNot(AsmToken::
Eof
)) {
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp
177
--CurPtr; // Another call to lex will return
EOF
again.
178
return
EOF
;
194
case
EOF
: return lltok::
Eof
;
249
if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() ==
EOF
)
276
if (CurChar ==
EOF
) {
305
if (CurChar ==
EOF
) {
359
if (CurChar ==
EOF
) {
396
if (kind == lltok::Error || kind == lltok::
Eof
)
LLParser.cpp
93
if (Lex.getKind() != lltok::
Eof
)
327
case lltok::
Eof
:
347
case lltok::
Eof
: return false;
866
case lltok::
Eof
:
6151
if (Token == lltok::
Eof
)
/src/external/apache2/llvm/dist/llvm/tools/llvm-mc/
llvm-mc.cpp
259
while (Lexer.Lex().isNot(AsmToken::
Eof
)) {
/src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
ir.d
130
Eof
= 0b1_10001_00, //end of "file" (string) $
742
case IR.GroupStart, IR.GroupEnd, IR.Bol, IR.Eol, IR.
Eof
,
backtracking.d
449
case IR.
Eof
:
1416
case IR.
Eof
:
parser.d
874
g.put(Bytecode(IR.
Eof
, 0));
thompson.d
206
static bool op(IR code:IR.
Eof
)(E e, S* state)
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp
1073
case AsmToken::TokenKind::
Eof
:
1110
case AsmToken::
Eof
:
Completed in 127 milliseconds
1
2
Indexes created Tue Feb 24 01:34:59 UTC 2026