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

1 2 3 4 5 6 7 8

  /external/ceres-solver/internal/ceres/
split.cc 97 begin_index = full.find_first_not_of(delim);
105 begin_index = full.find_first_not_of(delim, end_index);
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 25 pos = str.find_first_not_of(WHITESPACE, pos);
39 string::size_type start = str.find_first_not_of(WHITESPACE, 0);
  /external/chromium/base/
string_piece_unittest.cc 285 ASSERT_EQ(a.find_first_not_of(b), 3U);
286 ASSERT_EQ(a.find_first_not_of(c), 0U);
287 ASSERT_EQ(b.find_first_not_of(a), StringPiece::npos);
288 ASSERT_EQ(c.find_first_not_of(a), StringPiece::npos);
289 ASSERT_EQ(f.find_first_not_of(a), 0U);
290 ASSERT_EQ(a.find_first_not_of(f), 0U);
291 ASSERT_EQ(a.find_first_not_of(d), 0U);
292 ASSERT_EQ(a.find_first_not_of(e), 0U);
294 ASSERT_EQ(d.find_first_not_of(a), StringPiece::npos);
295 ASSERT_EQ(e.find_first_not_of(a), StringPiece::npos)
    [all...]
string_piece.cc 116 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:base::StringPiece
126 return find_first_not_of(s.ptr_[0], pos);
138 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:base::StringPiece
  /external/chromium_org/chrome/common/extensions/
manifest_handler_helpers.cc 22 size_t first_non_slash = path->find_first_not_of('/');
  /external/llvm/include/llvm/ADT/
SmallString.h 194 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
195 return str().find_first_not_of(C, From);
202 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
203 return str().find_first_not_of(Chars, From);
StringRef.h 275 size_t find_first_not_of(char C, size_t From = 0) const;
281 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
493 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /external/chromium_org/base/strings/
string_piece_unittest.cc 347 ASSERT_EQ(a.find_first_not_of(b), 3U);
348 ASSERT_EQ(a.find_first_not_of(c), 0U);
349 ASSERT_EQ(b.find_first_not_of(a), StringPiece::npos);
350 ASSERT_EQ(c.find_first_not_of(a), StringPiece::npos);
351 ASSERT_EQ(f.find_first_not_of(a), 0U);
352 ASSERT_EQ(a.find_first_not_of(f), 0U);
353 ASSERT_EQ(a.find_first_not_of(d), 0U);
354 ASSERT_EQ(a.find_first_not_of(e), 0U);
356 ASSERT_EQ(d.find_first_not_of(a), StringPiece::npos);
357 ASSERT_EQ(e.find_first_not_of(a), StringPiece::npos)
    [all...]
string_piece.h 187 BASE_EXPORT StringPieceDetail<std::string>::size_type find_first_not_of(
191 BASE_EXPORT StringPieceDetail<std::string>::size_type find_first_not_of(
311 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
313 return internal::find_first_not_of(*this, s, pos);
316 size_type find_first_not_of(char c, size_type pos = 0) const { function in class:base::BasicStringPiece
317 return internal::find_first_not_of(*this, c, pos);
string_piece.cc 148 StringPiece::size_type find_first_not_of(const StringPiece& self, function in namespace:base::internal
159 return find_first_not_of(self, s.data()[0], pos);
171 StringPiece::size_type find_first_not_of(const StringPiece& self, function in namespace:base::internal
  /external/chromium_org/gpu/config/
gpu_info_collector_android.cc 28 size_t end = version_string.find_first_not_of("01234567890.", begin);
34 end = version_string.find_first_not_of("01234567890.", begin);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
char_size.pass.cpp 12 // size_type find_first_not_of(charT c, size_type pos = 0) const;
24 assert(s.find_first_not_of(c, pos) == x);
33 assert(s.find_first_not_of(c) == x);
  /external/llvm/lib/Support/
StringExtras.cpp 41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 98 while (!Str.empty() && Str.find_first_not_of(" \t\r\n#,") != 0) {
100 if (size_t Pos = Str.find_first_not_of(" \t\r,")) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 85 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, function in namespace:boost::unit_test
109 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, function in namespace:boost::unit_test
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.cc 122 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:i18n::phonenumbers::StringPiece
132 return find_first_not_of(s.ptr_[0], pos);
144 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 140 EXPECT_EQ(1U, theString.find_first_not_of('h'));
141 EXPECT_EQ(4U, theString.find_first_not_of("hel"));
142 EXPECT_EQ(StringRef::npos, theString.find_first_not_of("hello"));
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 200 std::string::size_type start = CStr.find_first_not_of(" \t");
204 wpos = Name.find_first_not_of(" \t");
221 start = CStr.find_first_not_of(" \t");
232 wpos = Name.find_first_not_of(" \t");
258 bidx = CStr.find_first_not_of(delims);
265 bidx = CStr.find_first_not_of(delims, eidx);
  /external/chromium/net/base/
net_util_win.cc 40 size_t first_non_slash = path.find_first_not_of("/\\");
  /external/chromium/net/http/
http_chunked_decoder.cc 190 if (base::StringPiece(start, len).find_first_not_of("0123456789abcdefABCDEF")
  /external/chromium/third_party/libjingle/source/talk/base/
stringutils.cc 135 std::string::size_type first = s.find_first_not_of(kWhitespace);
  /external/chromium_org/net/dns/
dns_hosts.cc 92 pos_ = text_.find_first_not_of(" \t", pos_);
  /external/chromium_org/net/http/
http_chunked_decoder.cc 200 if (chunk_size.find_first_not_of("0123456789abcdefABCDEF")
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.cc 140 std::string::size_type first = s.find_first_not_of(kWhitespace);
  /external/llvm/lib/MC/
MCSectionELF.cpp 48 if (name.find_first_not_of("0123456789_."

Completed in 487 milliseconds

1 2 3 4 5 6 7 8