Searched refs:found_pos (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_split.cc | 49 size_t found_pos = absl::string_view::npos; in GenericFind() local 52 found_pos = find_policy.Find(text, delimiter, pos); in GenericFind() 53 if (found_pos != absl::string_view::npos) { in GenericFind() 54 found = absl::string_view(text.data() + found_pos, in GenericFind() 90 size_t found_pos = text.find(delimiter_[0], pos); in Find() local 91 if (found_pos == absl::string_view::npos) in Find() 93 return text.substr(found_pos, 1); in Find() 103 size_t found_pos = text.find(c_, pos); in Find() local 104 if (found_pos == absl::string_view::npos) in Find() 106 return text.substr(found_pos, 1); in Find()
|
/third_party/abseil-cpp/absl/strings/ |
D | str_split.cc | 49 size_t found_pos = absl::string_view::npos; in GenericFind() local 52 found_pos = find_policy.Find(text, delimiter, pos); in GenericFind() 53 if (found_pos != absl::string_view::npos) { in GenericFind() 54 found = absl::string_view(text.data() + found_pos, in GenericFind() 90 size_t found_pos = text.find(delimiter_[0], pos); in Find() local 91 if (found_pos == absl::string_view::npos) in Find() 93 return text.substr(found_pos, 1); in Find() 103 size_t found_pos = text.find(c_, pos); in Find() local 104 if (found_pos == absl::string_view::npos) in Find() 106 return text.substr(found_pos, 1); in Find()
|
/third_party/glib/gio/ |
D | gdatainputstream.c | 635 gssize found_pos; in scan_for_newline() local 646 found_pos = -1; in scan_for_newline() 661 found_pos = start + i; in scan_for_newline() 668 found_pos = start + i; in scan_for_newline() 675 found_pos = start + i - 1; in scan_for_newline() 686 found_pos = start + i - 1; in scan_for_newline() 692 found_pos = start + i; in scan_for_newline() 699 found_pos = start + i - 1; in scan_for_newline() 708 if (found_pos != -1) in scan_for_newline() 711 return found_pos; in scan_for_newline() [all …]
|
/third_party/mesa3d/src/gallium/targets/opencl/ |
D | meson.build | 49 size_t found_pos = clang::getClangFullVersion().find(CLANG_VERSION_STRING); 50 return found_pos == ::std::string::npos ? 1 : 0;
|
/third_party/protobuf/src/google/protobuf/compiler/ |
D | parser_unittest.cc | 2397 std::string::size_type found_pos = in TEST_F() local 2399 EXPECT_TRUE(found_pos != std::string::npos) in TEST_F()
|