OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isEOF
(Results
1 - 6
of
6
) sorted by null
/external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java
72
public abstract boolean
isEOF
(T o);
108
if (
isEOF
(o) ) eof = o;
/external/antlr/src/org/antlr/runtime/
UnbufferedTokenStream.java
67
public boolean
isEOF
(Token o) { return o.getType() == Token.EOF; }
/external/antlr/src/org/antlr/runtime/tree/
CommonTreeNodeStream.java
100
public boolean
isEOF
(Object o) { return adaptor.getType(o) == Token.EOF; }
/external/srec/portable/include/
PFile.h
164
* @param
isEof
[out] True if end of file has been reached
167
ESR_ReturnCode(*
isEOF
)(struct PFile_t* self, ESR_BOOL*
isEof
);
339
* @param
isEof
[out] True if end of file has been reached
342
PORTABLE_API ESR_ReturnCode PFileIsEOF(PFile* self, ESR_BOOL*
isEof
);
/external/srec/portable/src/
PANSIFileImpl.c
55
impl->Interface.Interface.
isEOF
= &PANSIFileIsEOFImpl;
332
ESR_ReturnCode PANSIFileIsEOFImpl(PFile* self, ESR_BOOL*
isEof
)
338
if (
isEof
== NULL)
352
*
isEof
= (posCur == posEnd);
356
*
isEof
= feof(impl->value) != 0;
PFile.c
119
ESR_ReturnCode PFileIsEOF(PFile* self, ESR_BOOL*
isEof
)
126
return self->
isEOF
(self,
isEof
);
Completed in 40 milliseconds