HomeSort by relevance Sort by last modified time
    Searched defs:isfirstline (Results 1 - 9 of 9) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
165 def isfirstline(): function
172 return _state.isfirstline()
187 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
374 def isfirstline(self): member in class:FileInput
413 isfirstline() and "*" or "", line)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
166 def isfirstline(): function
173 return _state.isfirstline()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
371 def isfirstline(self): member in class:FileInput
409 isfirstline() and "*" or "", line)
  /external/python/cpython2/Lib/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
78 "isfirstline","isstdin","FileInput"]
159 def isfirstline(): function
166 return _state.isfirstline()
181 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
362 def isfirstline(self): member in class:FileInput
401 isfirstline() and "*" or "", line)
  /external/python/cpython3/Lib/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
78 "fileno", "isfirstline", "isstdin", "FileInput", "hook_compressed",
157 def isfirstline(): function
164 return _state.isfirstline()
179 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
384 def isfirstline(self): member in class:FileInput
421 isfirstline() and "*" or "", line))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
166 def isfirstline(): function
173 return _state.isfirstline()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
371 def isfirstline(self): member in class:FileInput
409 isfirstline() and "*" or "", line)
  /prebuilts/gdb/linux-x86/lib/python2.7/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
166 def isfirstline(): function
173 return _state.isfirstline()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
371 def isfirstline(self): member in class:FileInput
409 isfirstline() and "*" or "", line)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
166 def isfirstline(): function
173 return _state.isfirstline()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
371 def isfirstline(self): member in class:FileInput
409 isfirstline() and "*" or "", line)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 17 line number in the current file; isfirstline() returns true iff the
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
85 "isfirstline","isstdin","FileInput"]
166 def isfirstline(): function
173 return _state.isfirstline()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
371 def isfirstline(self): member in class:FileInput
409 isfirstline() and "*" or "", line)
  /external/python/cpython3/Lib/test/
test_fileinput.py 128 self.assertFalse(fi.isfirstline())
571 def isfirstline(self): member in class:MockFileInput
572 self.invocation_counts["isfirstline"] += 1
573 return self.return_values["isfirstline"]
821 """Unit tests for fileinput.isfirstline()"""
824 """Tests fileinput.isfirstline() when fileinput._state is None.
829 fileinput.isfirstline()
834 """Tests fileinput.isfirstline() when fileinput._state is not None.
835 Ensure that it invokes fileinput._state.isfirstline() exactly once,
840 instance.return_values["isfirstline"] = isfirstline_retva
    [all...]

Completed in 542 milliseconds