Searched refs:eof (Results 201 - 225 of 476) sorted by relevance

1234567891011>>

/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelody.c333 EAS_BOOL eof; local
379 eof = EAS_FALSE;
380 while (!eof)
458 eof = EAS_TRUE;
473 eof = EAS_TRUE;
492 eof = EAS_TRUE;
498 eof = EAS_TRUE;
504 eof = EAS_TRUE;
512 eof = EAS_TRUE;
519 eof
[all...]
/external/ImageMagick/Magick++/tests/
H A DreadWriteBlob.cpp39 if ((!stream_.eof()) || (blobLen == 0))
94 if ((!in.eof()) || (blobLen == 0))
/external/libchrome/base/strings/
H A Dstring16.h72 // addition, the distinct value of eof().
117 return eq_int_type(c, eof()) ? 0 : c;
132 static int_type eof() {
/external/libxkbcommon/xkbcommon/src/
H A Dscanner-utils.h96 eof(struct scanner *s) function
119 if (unlikely(eof(s)))
/external/libxml2/
H A Dxzlib.c62 int eof; /* true if end of input file reached */ member in struct:__anon13507
126 state->eof = 0; /* not at end of file */
250 state->eof = 1;
261 if (state->eof == 0) {
549 if (state->eof)
621 if (strm->avail_in != 0 || !state->eof) {
676 else if (state->eof && state->strm.avail_in == 0)
736 else if (state->eof && strm->avail_in == 0)
/external/syslinux/gpxe/src/arch/i386/core/
H A Dwince_loader.c69 static sector_t ce_loader(unsigned char *data, unsigned int len, int eof);
79 static sector_t ce_loader(unsigned char *data, unsigned int len, int eof) argument
/external/webrtc/webrtc/modules/video_processing/test/
H A DreadYUV420file.m16 fseek(fid,0,'eof'); % move to end of file
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs83 return _outer.eof;
117 protected object eof; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
167 eof = adaptor.Create(TokenTypes.EndOfFile, "EOF");
336 return eof;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs89 return _outer.eof;
126 protected object eof; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
179 eof = adaptor.Create( TokenTypes.EndOfFile, "EOF" );
399 return eof;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java73 return eof;
86 protected Object eof; field in class:BufferedTreeNodeStream
136 eof = adaptor.create(Token.EOF, "EOF");
229 return eof;
/external/clang/lib/Rewrite/
H A DTokenRewriter.cpp35 while (RawTok.isNot(tok::eof)) {
H A DHTMLRewrite.cpp374 while (Tok.isNot(tok::eof)) {
424 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
479 if (Tok.is(tok::eof)) break;
512 while (Tok.isNot(tok::eof)) {
545 while (!Tok.is(tok::eof) &&
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-use-machine.rl155 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
164 pe = eof = buffer->len;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXScanner.java113 h.eof(buff, 0, 0);
/external/valgrind/coregrind/
H A Dm_errormgr.c1084 0 if eof or < 0 if error. */
1102 return 0; /* eof */
1111 // Returns True if eof.
1172 Bool eof = get_nbnc_line (fd, bufpp, nBufp, lineno); local
1174 if (eof)
1256 Bool eof; local
1299 eof = get_nbnc_line ( fd, &buf, &nBuf, &lineno );
1300 if (eof) {
1307 eof = get_nbnc_line ( fd, &buf, &nBuf, &lineno );
1309 if (eof || VG_STRE
[all...]
/external/clang/include/clang/Lex/
H A DToken.h182 if (is(tok::eof)) return nullptr;
190 assert(is(tok::eof));
194 assert(is(tok::eof));
/external/skqp/tools/bookmaker/
H A DmdOut.cpp83 if (!t.eof() && '~' == base[0] && !isalnum(base[1])) {
92 if (!t.eof() && '"' == t.peek() && start > wordStart && '"' == start[-1]) {
103 if (!t.eof() && '(' == t.peek() && t.strnchr(')', t.fEnd)) {
141 all_lower(ref) && (t.eof() || '(' != t.peek())) {
148 if (!t.eof() && '(' == t.peek()) {
219 if (!t.eof() && ' ' != t.peek()) {
256 } while (!t.eof());
461 if (parser.eof()) {
466 SkASSERT(!parser.eof());
1016 while (!code.eof()) {
[all...]
/external/python/cpython2/Lib/
H A Dbinhex.py283 self.eof = 0
293 if self.eof: return decdata
303 decdatacur, self.eof = \
315 if not decdata and not self.eof:
329 self.eof = 0
340 if self.ifp.eof:
/external/python/cpython3/Lib/
H A Dbinhex.py259 self.eof = 0
269 if self.eof: return decdata
279 decdatacur, self.eof = binascii.a2b_hqx(data)
289 if not decdata and not self.eof:
303 self.eof = 0
314 if self.ifp.eof:
/external/python/cpython3/Modules/zlib/
H A Dgzread.c18 state->fd, and update state->eof, state->err, and state->msg as appropriate.
45 state->eof = 1;
49 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
50 error, 0 otherwise. Note that the eof flag is set when the end of the input
64 if (state->eof == 0) {
151 state->eof = 1;
254 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
278 else if (state->eof && state->strm.avail_in == 0)
331 else if (state->eof && state->strm.avail_in == 0) {
/external/zlib/src/
H A Dgzread.c18 state->fd, and update state->eof, state->err, and state->msg as appropriate.
45 state->eof = 1;
49 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
50 error, 0 otherwise. Note that the eof flag is set when the end of the input
64 if (state->eof == 0) {
151 state->eof = 1;
254 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
278 else if (state->eof && state->strm.avail_in == 0)
331 else if (state->eof && state->strm.avail_in == 0) {
/external/clang/lib/AST/
H A DCommentBriefParser.cpp71 while (Tok.isNot(tok::eof)) {
/external/clang/lib/Format/
H A DUnwrappedLineParser.h112 bool eof() const;
/external/icu/icu4c/source/io/
H A Dustream.cpp101 if (stream.eof()) {
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Doverflow.pass.cpp14 // int_type overflow(int_type c = traits::eof());
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}

Completed in 2493 milliseconds

1234567891011>>