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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/
shlex.py 34 self.eof = None
36 self.eof = ''
105 # Maybe we got EOF instead?
106 while raw == self.eof:
108 return self.eof
112 # Neither inclusion nor EOF
114 if raw != self.eof:
117 print "shlex: token=EOF"
170 print "shlex: I see EOF in quotes state"
189 print "shlex: I see EOF in escape state
    [all...]
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
259 self.eof = 1
314 while i < 0 and not self.eof:
364 while not self.eof and select.select(*s_args) == s_reply:
382 """Read all data until EOF; block until connection closed.""
    [all...]
  /external/python/cpython3/Lib/
shlex.py 33 self.eof = None
35 self.eof = ''
114 # Maybe we got EOF instead?
115 while raw == self.eof:
117 return self.eof
121 # Neither inclusion nor EOF
123 if raw != self.eof:
126 print("shlex: token=EOF")
185 print("shlex: I see EOF in quotes state")
204 print("shlex: I see EOF in escape state"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shlex.py 34 self.eof = None
36 self.eof = ''
105 # Maybe we got EOF instead?
106 while raw == self.eof:
108 return self.eof
112 # Neither inclusion nor EOF
114 if raw != self.eof:
117 print "shlex: token=EOF"
170 print "shlex: I see EOF in quotes state"
189 print "shlex: I see EOF in escape state
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
shlex.py 34 self.eof = None
36 self.eof = ''
105 # Maybe we got EOF instead?
106 while raw == self.eof:
108 return self.eof
112 # Neither inclusion nor EOF
114 if raw != self.eof:
117 print "shlex: token=EOF"
170 print "shlex: I see EOF in quotes state"
189 print "shlex: I see EOF in escape state
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
transform.go 26 eof := atEOF
29 eof = false
32 i, ok := formTable[f].quickSpan(inputBytes(b), n, len(b), eof)
73 eof := atEOF
77 eof = false
79 end, ok := rb.f.quickSpan(rb.src, nSrc, end, eof)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
transform.go 26 eof := atEOF
29 eof = false
32 i, ok := formTable[f].quickSpan(inputBytes(b), n, len(b), eof)
73 eof := atEOF
77 eof = false
79 end, ok := rb.f.quickSpan(rb.src, nSrc, end, eof)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.ops/
stream_input.pass.cpp 29 assert(is.eof());
92 assert(!is.eof());
99 assert(!is.eof());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 34 self.eof = None
36 self.eof = ''
105 # Maybe we got EOF instead?
106 while raw == self.eof:
108 return self.eof
112 # Neither inclusion nor EOF
114 if raw != self.eof:
117 print "shlex: token=EOF"
170 print "shlex: I see EOF in quotes state"
189 print "shlex: I see EOF in escape state
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 34 self.eof = None
36 self.eof = ''
105 # Maybe we got EOF instead?
106 while raw == self.eof:
108 return self.eof
112 # Neither inclusion nor EOF
114 if raw != self.eof:
117 print "shlex: token=EOF"
170 print "shlex: I see EOF in quotes state"
189 print "shlex: I see EOF in escape state
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3cyclicdfa.h 78 const ANTLR3_INT32 * const eof; member in struct:ANTLR3_CYCLIC_DFA_struct
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 10 EOF = [3, 4].freeze
25 dfa.eof.should == DFASubclass::EOF
  /external/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;
  /external/clang/lib/Frontend/Rewrite/
RewriteMacros.cpp 50 assert(CurTok < RawTokens.size() && "Overran eof!");
85 } while (RawTok.isNot(tok::eof));
114 while (RawTok.isNot(tok::eof) || PPTok.isNot(tok::eof)) {
147 while (!RawTok.isAtStartOfLine() && RawTok.isNot(tok::eof))
  /external/libcups/cups/
file-private.h 98 eof, /* End of file? */ member in struct:_cups_file_s
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
sputc.pass.cpp 39 int_type overflow(int_type = traits_type::eof())
  /external/libcxx/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());
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 171 XmlRpcSocket::nbRead(int fd, std::string& s, bool *eof)
177 *eof = false;
179 while ( ! wouldBlock && ! *eof) {
191 *eof = true;
  /external/xmlrpcpp/test/
TestBase64Server.cpp 40 if (infile.eof()) break;
  /prebuilts/clang/host/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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;

Completed in 2465 milliseconds

1 2 3 4 5 6 7 8 91011>>