/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | glmark2Benchmark.cpp | 198 while (std::getline(glmark2Output, line) && BeginsWith(line, "INFO:")) in parseOutput() 207 std::getline(glmark2Output, line); in parseOutput() 210 std::getline(glmark2Output, line); in parseOutput() 214 std::getline(glmark2Output, line); in parseOutput() 215 std::getline(glmark2Output, line); in parseOutput() 216 std::getline(glmark2Output, line); in parseOutput() 217 std::getline(glmark2Output, line); in parseOutput() 224 std::getline(glmark2Output, line); in parseOutput() 228 while (std::getline(glmark2Output, line) && line[0] != '=') in parseOutput()
|
/third_party/python/Lib/test/ |
H A D | test_linecache.py | 64 cached_line = linecache.getline(self.file_name, index + 1) 76 self.assertEqual(linecache.getline(self.file_name, 1), '') 103 getline = linecache.getline 106 self.assertEqual(getline(FILENAME, 2**15), EMPTY) 107 self.assertEqual(getline(FILENAME, -1), EMPTY) 110 self.assertRaises(TypeError, getline, FILENAME, 1.1) 113 self.assertEqual(getline(EMPTY, 1), EMPTY) 114 self.assertEqual(getline(INVALID_NAME, 1), EMPTY) 121 self.assertEqual(line, getline(filenam [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | profile-data-reader.cc | 54 for (std::string line; std::getline(file, line);) { in EnsureInitProfileData() 57 if (!std::getline(line_stream, token, ',')) continue; in EnsureInitProfileData() 63 CHECK(std::getline(line_stream, builtin_name, ',')); in EnsureInitProfileData() 64 CHECK(std::getline(line_stream, token, ',')); in EnsureInitProfileData() 68 std::getline(line_stream, token, ','); in EnsureInitProfileData() 82 CHECK(std::getline(line_stream, builtin_name, ',')); in EnsureInitProfileData() 83 std::getline(line_stream, token, ','); in EnsureInitProfileData()
|
/third_party/skia/third_party/externals/tint/src/utils/io/ |
H A D | tmpfile_test.cc | 43 EXPECT_TRUE(std::getline(file, line)); in TEST() 45 EXPECT_FALSE(std::getline(file, line)); in TEST() 56 EXPECT_TRUE(std::getline(file, line)); in TEST() 58 EXPECT_TRUE(std::getline(file, line)); in TEST() 60 EXPECT_FALSE(std::getline(file, line)); in TEST()
|
/third_party/protobuf/examples/ |
H A D | add_person.cc | 24 getline(cin, *person->mutable_name()); in PromptForAddress() 28 getline(cin, email); in PromptForAddress() 36 getline(cin, number); in PromptForAddress() 46 getline(cin, type); in PromptForAddress()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | getline.c | 37 ssize_t read = getline(&line, &len, fp); in getline_0100() 58 ssize_t read = getline(NULL, &len, fp); in getline_0200() 78 ssize_t read = getline(&line, 0, fp); in getline_0300()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/ |
H A D | sfn_test_shaders.cpp | 3070 std::getline(is, line); in from_string() 3088 while (std::getline(is, line)) { in from_string() 3104 while (std::getline(is, line)) { in from_string()
|
/third_party/selinux/libselinux/src/ |
H A D | init.c | 68 num = getline(&buf, &len, fp); in selinuxfs_exists() 74 num = getline(&buf, &len, fp); in selinuxfs_exists() 107 while ((num = getline(&buf, &len, fp)) != -1) { in init_selinuxmnt()
|
/third_party/skia/third_party/externals/dawn/src/tests/ |
H A D | ToggleParser.cpp | 29 while (getline(toggles, toggle, ',')) { in ParseEnabledToggles() 43 while (getline(toggles, toggle, ',')) { in ParseDisabledToggles()
|
/third_party/zlib/contrib/iostream3/ |
H A D | test.cc | 27 while (inf.getline(buf,80,'\n')) { in main() 43 while (inf.getline(buf,80,'\n')) { in main()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkAppParamsUtil.cpp | 60 while (std::getline(file, line)) in readApplicationParameters() 80 while (std::getline(sstream, token, ',')) in readApplicationParameters()
|
/third_party/toybox/toys/posix/ |
H A D | uudecode.c | 38 if ((n = getline(&line, &allocated_length, ifp)) == -1) in uudecode_main() 56 if (m == 2 || (n = getline(&line, &allocated_length, ifp)) == -1) break; in uudecode_main()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerMerge.cpp | 53 if (!std::getline(IS, Line, '\n')) return false; in Parse() 60 if (!std::getline(IS, Line, '\n')) return false; in Parse() 69 if (!std::getline(IS, Files[i].Name, '\n')) in Parse() 76 while (std::getline(IS, Line, '\n')) { in Parse()
|
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_asic_id.c | 124 while ((n = getline(&line, &len, fp)) != -1) { in amdgpu_parse_asic_ids() 139 while ((n = getline(&line, &len, fp)) != -1) { in amdgpu_parse_asic_ids()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | failure_signal_handler_test.cc | 118 std::getline(error_output, error_line); in TEST_P() 132 std::getline(error_output, error_line); in TEST_P()
|
/third_party/cups-filters/filter/ |
H A D | banner.c | 145 if (getline(&line, &len, f) == -1 || in banner_new_from_file() 151 while (getline(&line, &len, f) != -1) { in banner_new_from_file()
|
/third_party/musl/src/stdio/ |
H A D | getline.c | 3 ssize_t getline(char **restrict s, size_t *restrict n, FILE *restrict f) in getline() function
|
H A D | fgetln.c | 15 } else if ((l = getline(&f->getln_buf, (size_t[]){0}, f)) > 0) { in fgetln()
|
/third_party/python/Tools/scripts/ |
H A D | pindent.py | 142 def getline(self): member in PythonIndenter 151 # end def getline 166 line = self.getline() 210 line = self.getline() 239 line = self.getline()
|
/third_party/musl/src/passwd/ |
H A D | fgetspent.c | 12 if (getline(&line, &size, f) >= 0 && __parsespent(line, &sp) >= 0) res = &sp; in fgetspent()
|
/third_party/json/docs/examples/ |
H A D | json_lines.cpp | 18 while (std::getline(input, line)) in main()
|
/third_party/musl/porting/liteos_a/user/src/legacy/ |
H A D | getusershell.c | 30 l = getline(&line, &linesize, f); in getusershell()
|
/third_party/musl/src/legacy/ |
H A D | getusershell.c | 30 l = getline(&line, &linesize, f); in getusershell()
|
/third_party/node/deps/v8/src/libplatform/tracing/ |
H A D | trace-config.cc | 27 getline(category_stream, category, ','); in IsCategoryGroupEnabled()
|
/third_party/tzdata/ |
H A D | checknow.awk | 13 while (getline <zdump_table) {
|