/external/chromium_org/chrome/common/local_discovery/ |
service_discovery_client.cc | 18 size_t first_period = service_name.find_first_of('.'); 25 size_t first_period = service_name.find_first_of('.');
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/ |
find_first_of.pass.cpp | 15 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2); 28 assert(std::find_first_of(input_iterator<const int*>(ia), 34 assert(std::find_first_of(input_iterator<const int*>(ia), 39 assert(std::find_first_of(input_iterator<const int*>(ia), 44 assert(std::find_first_of(input_iterator<const int*>(ia),
|
find_first_of_pred.pass.cpp | 16 // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred); 30 assert(std::find_first_of(input_iterator<const int*>(ia), 37 assert(std::find_first_of(input_iterator<const int*>(ia), 43 assert(std::find_first_of(input_iterator<const int*>(ia), 49 assert(std::find_first_of(input_iterator<const int*>(ia),
|
/external/stlport/test/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-gnustl-full/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-stlport/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/external/chromium/chrome/browser/ui/omnibox/ |
location_bar_util.cc | 31 const size_t ws_index = description.find_first_of(kWhitespaceWide);
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
user_image_source.cc | 45 std::string email = path.substr(0, path.find_first_of("?"));
|
/external/chromium_org/net/test/embedded_test_server/ |
http_response.cc | 45 DCHECK(header_value.find_first_of("\n\r") == std::string::npos) <<
|
/external/llvm/include/llvm/ADT/ |
SmallString.h | 180 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString 181 return str().find_first_of(C, From); 188 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString 189 return str().find_first_of(Chars, From);
|
/external/chromium/base/ |
sys_info_chromeos.cc | 92 size_t start_index = lsb_release.find_first_of('=', version_key_index); 94 size_t length = lsb_release.find_first_of('\n', start_index) - start_index;
|
string_piece_unittest.cc | 261 ASSERT_EQ(a.find_first_of(b), 0U); 262 ASSERT_EQ(a.find_first_of(b, 0), 0U); 263 ASSERT_EQ(a.find_first_of(b, 1), 1U); 264 ASSERT_EQ(a.find_first_of(b, 2), 2U); 265 ASSERT_EQ(a.find_first_of(b, 3), StringPiece::npos); 266 ASSERT_EQ(a.find_first_of(c), 23U); 267 ASSERT_EQ(a.find_first_of(c, 23), 23U); 268 ASSERT_EQ(a.find_first_of(c, 24), 24U); 269 ASSERT_EQ(a.find_first_of(c, 25), 25U); 270 ASSERT_EQ(a.find_first_of(c, 26), StringPiece::npos) [all...] |
/external/chromium/net/tools/flip_server/ |
loadtime_measurement.h | 53 size_t b = action.find_first_of('='); 106 size_t e = str.find_first_of(sepa, b); 110 e = str.find_first_of(sepa, b);
|
/external/chromium_org/net/tools/flip_server/ |
loadtime_measurement.h | 52 size_t b = action.find_first_of('='); 107 size_t e = str.find_first_of(sepa, b); 111 e = str.find_first_of(sepa, b);
|
/external/chromium/net/tools/dump_cache/ |
url_utilities.cc | 19 size_t next_slash = url.find_first_of('/', b); 20 size_t next_colon = url.find_first_of(':', b);
|
/external/chromium_org/gpu/config/ |
gpu_info_collector_android.cc | 25 size_t begin = version_string.find_first_of("0123456789"); 31 begin = version_string.find_first_of("0123456789", end);
|
/external/chromium_org/net/tools/dump_cache/ |
url_utilities.cc | 19 size_t next_slash = url.find_first_of('/', b); 20 size_t next_colon = url.find_first_of(':', b);
|
/external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/ |
chrome_subsetter.cc | 86 size_t end = hex_csv.find_first_of(","); 91 end = hex_csv.find_first_of(",", start);
|
/external/sfntly/cpp/src/sample/chromium/ |
chrome_subsetter.cc | 86 size_t end = hex_csv.find_first_of(","); 91 end = hex_csv.find_first_of(",", start);
|
/external/chromium_org/base/strings/ |
string_piece_unittest.cc | 321 StringPiece("one,two:three;four").find_first_of(StringPiece(",:"), 1), 323 ASSERT_EQ(a.find_first_of(b), 0U); 324 ASSERT_EQ(a.find_first_of(b, 0), 0U); 325 ASSERT_EQ(a.find_first_of(b, 1), 1U); 326 ASSERT_EQ(a.find_first_of(b, 2), 2U); 327 ASSERT_EQ(a.find_first_of(b, 3), StringPiece::npos); 328 ASSERT_EQ(a.find_first_of(c), 23U); 329 ASSERT_EQ(a.find_first_of(c, 23), 23U); 330 ASSERT_EQ(a.find_first_of(c, 24), 24U); 331 ASSERT_EQ(a.find_first_of(c, 25), 25U) [all...] |
/external/ceres-solver/internal/ceres/ |
split.cc | 99 end_index = full.find_first_of(delim, begin_index);
|
/external/chromium_org/native_client_sdk/src/examples/api/url_loader/ |
url_loader.cc | 48 size_t sep_pos = message.find_first_of(kMessageArgumentSeparator);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
code_generator.cc | 65 string::size_type equals_pos = parts[i].find_first_of('=');
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
|
/external/protobuf/src/google/protobuf/compiler/ |
code_generator.cc | 60 string::size_type equals_pos = parts[i].find_first_of('=');
|