HomeSort by relevance Sort by last modified time
    Searched refs:eof (Results 251 - 275 of 1085) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Lex/
PTHLexer.h 83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 17 Note that read_all() won't read until eof -- it just reads some data
18 -- but it guarantees to read at least one byte unless EOF is hit.
155 Read all data until EOF; may block.
158 Read at least one byte or EOF; may block.
204 self.eof = 0
221 self.eof = 0
260 self.eof = 1
313 while i < 0 and not self.eof:
361 while not self.eof and select.select(*s_args) == s_reply:
379 """Read all data until EOF; block until connection closed.""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 17 Note that read_all() won't read until eof -- it just reads some data
18 -- but it guarantees to read at least one byte unless EOF is hit.
155 Read all data until EOF; may block.
158 Read at least one byte or EOF; may block.
204 self.eof = 0
221 self.eof = 0
260 self.eof = 1
313 while i < 0 and not self.eof:
361 while not self.eof and select.select(*s_args) == s_reply:
379 """Read all data until EOF; block until connection closed.""
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
imports.go 25 eof bool
56 if err == io.EOF {
57 r.eof = true
83 for r.err == nil && !r.eof {
95 for c != '\n' && r.err == nil && !r.eof {
101 if r.eof {
167 if r.eof {
181 if r.eof || c == '\n' {
210 if r.err == nil && !r.eof {
211 // Didn't reach EOF, so must have found a non-space byte. Remove it
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
imports.go 25 eof bool
56 if err == io.EOF {
57 r.eof = true
83 for r.err == nil && !r.eof {
95 for c != '\n' && r.err == nil && !r.eof {
101 if r.eof {
167 if r.eof {
181 if r.eof || c == '\n' {
210 if r.err == nil && !r.eof {
211 // Didn't reach EOF, so must have found a non-space byte. Remove it
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
sputc.pass.cpp 39 int_type overflow(int_type = traits_type::eof())
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 42 assert(in.eof());
64 assert(in.eof());
88 assert(in.eof());
111 assert(in.eof());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 17 Note that read_all() won't read until eof -- it just reads some data
18 -- but it guarantees to read at least one byte unless EOF is hit.
155 Read all data until EOF; may block.
158 Read at least one byte or EOF; may block.
204 self.eof = 0
221 self.eof = 0
260 self.eof = 1
313 while i < 0 and not self.eof:
361 while not self.eof and select.select(*s_args) == s_reply:
379 """Read all data until EOF; block until connection closed.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 17 Note that read_all() won't read until eof -- it just reads some data
18 -- but it guarantees to read at least one byte unless EOF is hit.
155 Read all data until EOF; may block.
158 Read at least one byte or EOF; may block.
204 self.eof = 0
221 self.eof = 0
260 self.eof = 1
313 while i < 0 and not self.eof:
361 while not self.eof and select.select(*s_args) == s_reply:
379 """Read all data until EOF; block until connection closed.""
    [all...]
  /external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java 38 * A stream wrapper that triggers actions on {@link #close close()} and EOF.
47 * on EOF. That decision is left to the {@link EofSensorWatcher watcher}.
84 * is <code>null</code>, we're running in EOF mode.
85 * All read operations will indicate EOF without accessing
98 * Creates a new EOF sensor.
100 * closed when EOF is detected or {@link #close close} is called.
125 * <code>false</code> if this stream is in EOF mode and
202 // no checkEOF() here, available() can't trigger EOF
223 * Detects EOF and notifies the watcher.
228 * If EOF is detected, the watcher will be notified and this strea
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/ext.manip/
get_time.pass.cpp 56 assert(is.eof());
72 assert(is.eof());
put_money.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof())
40 if (ch != base::traits_type::eof())
put_time.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof())
40 if (ch != base::traits_type::eof())
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
seekg_off.pass.cpp 85 assert(is.eof());
88 assert(!is.eof());
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
bool.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof())
39 if (ch != base::traits_type::eof())
pointer.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof())
39 if (ch != base::traits_type::eof())
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
CharT.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof())
40 if (ch != base::traits_type::eof())
CharT_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof())
40 if (ch != base::traits_type::eof())

Completed in 396 milliseconds

<<11121314151617181920>>