HomeSort by relevance Sort by last modified time
    Searched refs:find_first_of (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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('.');
  /external/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),
Android.mk 23 test_name := algorithms/alg.nonmodifying/alg.find.first.of/find_first_of
24 test_src := find_first_of.pass.cpp
  /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/chromium_org/chrome/browser/ui/location_bar/
location_bar_util.cc 16 const size_t chop_index = description.find_first_of(
  /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_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 177 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
178 return str().find_first_of(C, From);
185 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
186 return str().find_first_of(Chars, From);
  /external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/
string.pxd 70 size_t find_first_of(string&, size_t) nogil
71 size_t find_first_of(char* s, size_t, size_t) nogil
72 size_t find_first_of(char*, size_t pos) nogil
73 size_t find_first_of(char c, size_t) nogil
74 size_t find_first_of(char c) nogil
  /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 330 ASSERT_EQ(3U, Piece(one_two_three_four).find_first_of(comma_colon));
331 ASSERT_EQ(a.find_first_of(b), 0U);
332 ASSERT_EQ(a.find_first_of(b, 0), 0U);
333 ASSERT_EQ(a.find_first_of(b, 1), 1U);
334 ASSERT_EQ(a.find_first_of(b, 2), 2U);
335 ASSERT_EQ(a.find_first_of(b, 3), Piece::npos);
336 ASSERT_EQ(a.find_first_of(c), 23U);
337 ASSERT_EQ(a.find_first_of(c, 23), 23U);
338 ASSERT_EQ(a.find_first_of(c, 24), 24U);
339 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/chrome/browser/local_discovery/
device_description.cc 53 size_t equals_pos = i->find_first_of('=');
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader.cc 43 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/llvm/tools/opt/
Passes.cpp 146 size_t End = PipelineText.find_first_of(",)");
196 size_t End = PipelineText.find_first_of(",)");
259 size_t End = PipelineText.find_first_of(",)");
304 PipelineText.substr(0, PipelineText.find_first_of(",)"));
  /external/protobuf/src/google/protobuf/compiler/
code_generator.cc 60 string::size_type equals_pos = parts[i].find_first_of('=');

Completed in 1817 milliseconds

1 2 3 4 5 6 7 8 91011>>