HomeSort by relevance Sort by last modified time
    Searched refs:getline (Results 276 - 300 of 353) sorted by null

<<1112131415

  /external/minijail/
syscall_filter.c 503 * This is like getline() but supports line wrapping with \.
507 ssize_t ret = getline(lineptr, n, stream);
572 /* Reuse |line| in the next getline() call. */
646 /* Reuse |line| in the next getline() call. */
690 /* Reuse |line| in the next getline() call. */
692 /* getline(3) returned -1. This can mean EOF or the below errors. */
  /external/python/cpython3/Lib/idlelib/
run.py 37 line = linecache.getline(filename, lineno)
263 line = rpchandler.remotecall('linecache', 'getline',
  /external/python/cpython3/Lib/
traceback.py 285 self._line = linecache.getline(self.filename, self.lineno).strip()
tracemalloc.py 229 line = linecache.getline(frame.filename, frame.lineno).strip()
  /external/skia/tools/bookmaker/
spellCheck.cpp 636 while (std::getline(ss, token, '_')) {
  /external/skqp/tools/bookmaker/
spellCheck.cpp 636 while (std::getline(ss, token, '_')) {
  /external/tensorflow/tensorflow/compiler/xla/tools/
interactive_graphviz.cc 60 std::getline(std::cin, *line);
  /external/tensorflow/tensorflow/contrib/pi_examples/camera/
camera.cc 295 while (std::getline(file, line)) {
  /external/toybox/toys/pending/
syslogd.c 191 len = getline(&confline, &linelen, fp);
  /frameworks/base/cmds/incident_helper/src/
ih_util.cpp 253 ssize_t read = getline(&buf, &len, mFile);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pdb.py 481 line = linecache.getline(filename, lineno, globs)
810 line = linecache.getline(filename, lineno,
    [all...]
  /external/python/cpython2/Lib/
pdb.py 481 line = linecache.getline(filename, lineno, globs)
810 line = linecache.getline(filename, lineno,
    [all...]
  /external/python/cpython3/Lib/test/
test_tracemalloc.py 574 def getline(filename, lineno): function in function:TestSnapshot.test_format_traceback
576 with unittest.mock.patch('tracemalloc.linecache.getline',
577 side_effect=getline):
    [all...]
  /external/u-boot/tools/env/
fw_env.c 767 while ((len = getline(&line, &linesize, fp)) != -1) {
    [all...]
  /external/vulkan-validation-layers/layers/
gpu_validation.cpp     [all...]
  /bionic/tests/
stdio_test.cpp 65 ASSERT_NE(EOF, getline(&line, &length, fp));
209 TEST(STDIO_TEST, getline) {
213 const char* line_written = "This is a test for getline\n";
228 while ((read_char_count = getline(&line_read, &allocated_length, fp)) != -1) {
240 // getline returns -1 but doesn't set errno if we're already at EOF.
243 ASSERT_EQ(getline(&line_read, &allocated_length, fp), -1);
260 ASSERT_EQ(getline(nullptr, &buffer_length, fp), -1);
265 ASSERT_EQ(getline(&buffer, nullptr, fp), -1);
    [all...]
  /external/one-true-awk/
FIXES 29 Make getline handle numeric strings properly in all cases.
175 changed the name getline() to awkgetline() to avoid yet another
553 after a getline var; because inputFS wasn't initialized,
629 getline, toupper, tolower.
631 getline code is still broken in that recursive calls may wind
643 print >>), process creation (cmd|getline, print |, system), and
857 failed to set numeric state on $0 in cmd|getline context in run.c.
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp     [all...]
  /art/tools/hiddenapi/
hiddenapi.cc     [all...]
hiddenapi_test.cc 146 for (std::string line; std::getline(ifs, line);) {
  /art/tools/jvmti-agents/ti-fast/
tifast.cc 652 while (std::getline(args_stream, item, ',')) {
  /device/google/wahoo/usb/
Usb.cpp 60 if ((read = getline(&line, &len, fp)) != -1) {
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 273 while (std::getline(opSrc, line))
488 while (std::getline(opSrc, line))
561 while (std::getline(opSrc, line))
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.cpp 104 while (std::getline(str, val, ','))
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/
header.cpp 264 while (std::getline(cstream, cline)) // fmt each line

Completed in 3668 milliseconds

<<1112131415