HomeSort by relevance Sort by last modified time
    Searched refs:find_first_not_of (Results 1 - 25 of 177) 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_org/extensions/common/
manifest_handler_helpers.cc 24 size_t first_non_slash = path->find_first_not_of('/');
  /external/llvm/include/llvm/ADT/
SmallString.h 191 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
192 return str().find_first_not_of(C, From);
199 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
200 return str().find_first_not_of(Chars, From);
StringRef.h 287 size_t find_first_not_of(char C, size_t From = 0) const;
293 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
505 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /external/chromium_org/base/strings/
string_piece_unittest.cc 355 ASSERT_EQ(a.find_first_not_of(b), 3U);
356 ASSERT_EQ(a.find_first_not_of(c), 0U);
357 ASSERT_EQ(b.find_first_not_of(a), Piece::npos);
358 ASSERT_EQ(c.find_first_not_of(a), Piece::npos);
359 ASSERT_EQ(f.find_first_not_of(a), 0U);
360 ASSERT_EQ(a.find_first_not_of(f), 0U);
361 ASSERT_EQ(a.find_first_not_of(d), 0U);
362 ASSERT_EQ(a.find_first_not_of(e), 0U);
364 ASSERT_EQ(d.find_first_not_of(a), Piece::npos);
365 ASSERT_EQ(e.find_first_not_of(a), Piece::npos)
    [all...]
string_piece.h 101 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
104 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
107 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
110 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
308 // find_first_not_of: Find the first occurence not of a set of characters.
309 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
311 return internal::find_first_not_of(*this, s, pos);
313 size_type find_first_not_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
314 return internal::find_first_not_of(*this, c, pos);
  /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);
gpu_info_collector_ozone.cc 63 size_t pos = driver_version.find_first_not_of("0123456789.");
  /external/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);
  /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 101 while (!Str.empty() && Str.find_first_not_of(" \t\r\n#,") != 0) {
103 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"));
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_basic_string.i 161 find_first_not_of(const basic_string& __str, size_type __pos = 0) const;
164 find_first_not_of(const _CharT* __s, size_type __pos,
168 find_first_not_of(_CharT __c, size_type __pos = 0) const;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiTestHarness.h 98 s.erase(0, s.find_first_not_of(separators));
125 size_t lastPos = str.find_first_not_of(separators); // skip leading spaces
130 lastPos = str.find_first_not_of(separators, pos);
  /external/chromium_org/chrome/browser/chromeos/
version_loader.cc 95 size_t found = str.find_first_not_of("| ");
  /external/chromium_org/net/base/
filename_util.cc 84 size_t first_non_slash = path.find_first_not_of("/\\");
  /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 202 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/chromium_org/third_party/webrtc/base/
stringutils.cc 123 std::string::size_type first = s.find_first_not_of(kWhitespace);
  /external/llvm/lib/MC/
MCSectionELF.cpp 36 if (Name.find_first_not_of("0123456789_."

Completed in 627 milliseconds

1 2 3 4 5 6 7 8