OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:iseof
(Results
1 - 19
of
19
) sorted by null
/sdk/emulator/qtools/
decoder.h
15
bool
IsEOF
() { return (end_ == next_) && feof(fstream_); }
/frameworks/base/include/utils/
Tokenizer.h
47
inline bool
isEof
() const { return mCurrent == getEnd(); }
52
inline bool isEol() const { return
isEof
() || *mCurrent == '\n'; }
74
inline char peekChar() const { return
isEof
() ? '\0' : *mCurrent; }
85
inline char nextChar() { return
isEof
() ? '\0' : *(mCurrent++); }
/external/srec/portable/src/
PFileWrap.c
155
ESR_ReturnCode PFileIsEOF ( PFile *self, ESR_BOOL *
isEof
)
166
*
isEof
= ESR_TRUE;
168
*
isEof
= ESR_FALSE;
176
*
isEof
= ESR_TRUE;
178
*
isEof
= ESR_FALSE;
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
);
/external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java
72
public abstract boolean
isEOF
(T o);
108
if (
isEOF
(o) ) eof = o;
/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
);
PANSIFileImpl.h
102
PORTABLE_API ESR_ReturnCode PANSIFileIsEOFImpl(PFile* self, ESR_BOOL*
isEof
);
/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; }
/frameworks/base/libs/ui/
VirtualKeyMap.cpp
94
while (!mTokenizer->
isEof
()) {
KeyLayoutMap.cpp
148
while (!mTokenizer->
isEof
()) {
KeyCharacterMap.cpp
467
while (!mTokenizer->
isEof
()) {
/frameworks/base/libs/utils/
PropertyMap.cpp
164
while (!mTokenizer->
isEof
()) {
/external/svox/pico/lib/
picoos.c
[
all
...]
/external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp
746
bool
isEof
() const { return m_position >= m_length; }
1052
while (!m_reader.
isEof
()) {
[
all
...]
/external/mksh/src/
lex.c
1140
gethere(bool
iseof
)
1145
if (
iseof
&& (*p)->delim[1] != '<')
[
all
...]
/prebuilt/common/http-client/
httpcore-4.1.jar
/external/webkit/Source/WebCore/
ChangeLog-2010-01-29
[
all
...]
Completed in 375 milliseconds