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

1 2 3 4 5

  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_first_not_of_char_size.pass.cpp 12 // constexpr 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);
77 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
78 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
79 static_assert (sv2.find_first_not_of( 'q', 0 ) == 0, "" );
80 static_assert (sv2.find_first_not_of( 'q', 1 ) == 1, "" );
81 static_assert (sv2.find_first_not_of( 'q', 5 ) == SV::npos, "" );
find_first_not_of_pointer_size.pass.cpp 12 // constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
24 assert(s.find_first_not_of(str, pos) == x);
33 assert(s.find_first_not_of(str) == x);
158 static_assert (sv1.find_first_not_of( "", 0) == SV::npos, "" );
159 static_assert (sv1.find_first_not_of( "irkhs", 0) == SV::npos, "" );
160 static_assert (sv2.find_first_not_of( "", 0) == 0, "" );
161 static_assert (sv2.find_first_not_of( "gfsrt", 0) == 0, "" );
162 static_assert (sv2.find_first_not_of( "lecar", 0) == 1, "" );
find_first_not_of_pointer_size_size.pass.cpp 12 // constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_first_not_of(str, pos, n) == x);
385 static_assert (sv1.find_first_not_of( "", 0, 0) == SV::npos, "" );
386 static_assert (sv1.find_first_not_of( "irkhs", 0, 5) == SV::npos, "" );
387 static_assert (sv2.find_first_not_of( "", 0, 0) == 0, "" );
388 static_assert (sv2.find_first_not_of( "gfsrt", 0, 5) == 0, "" );
389 static_assert (sv2.find_first_not_of( "lecar", 0, 5) == 1, "" );
find_first_not_of_string_view_size.pass.cpp 12 // size_type find_first_not_of(const basic_string& str, size_type pos = 0) const;
21 assert(s.find_first_not_of(str, pos) == x);
30 assert(s.find_first_not_of(str) == x);
  /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);
  /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);
  /external/libchrome/base/strings/
string_piece_unittest.cc 357 ASSERT_EQ(a.find_first_not_of(b), 3U);
358 ASSERT_EQ(a.find_first_not_of(c), 0U);
359 ASSERT_EQ(b.find_first_not_of(a), Piece::npos);
360 ASSERT_EQ(c.find_first_not_of(a), Piece::npos);
361 ASSERT_EQ(f.find_first_not_of(a), 0U);
362 ASSERT_EQ(a.find_first_not_of(f), 0U);
363 ASSERT_EQ(a.find_first_not_of(d), 0U);
364 ASSERT_EQ(a.find_first_not_of(e), 0U);
366 ASSERT_EQ(d.find_first_not_of(a), Piece::npos);
367 ASSERT_EQ(e.find_first_not_of(a), Piece::npos)
    [all...]
string_piece.h 100 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
103 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
106 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
109 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
324 // find_first_not_of: Find the first occurence not of a set of characters.
325 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
327 return internal::find_first_not_of(*this, s, pos);
329 size_type find_first_not_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
330 return internal::find_first_not_of(*this, c, pos);
  /external/libweave/third_party/chromium/base/strings/
string_piece_unittest.cc 346 ASSERT_EQ(a.find_first_not_of(b), 3U);
347 ASSERT_EQ(a.find_first_not_of(c), 0U);
348 ASSERT_EQ(b.find_first_not_of(a), Piece::npos);
349 ASSERT_EQ(c.find_first_not_of(a), Piece::npos);
350 ASSERT_EQ(f.find_first_not_of(a), 0U);
351 ASSERT_EQ(a.find_first_not_of(f), 0U);
352 ASSERT_EQ(a.find_first_not_of(d), 0U);
353 ASSERT_EQ(a.find_first_not_of(e), 0U);
355 ASSERT_EQ(d.find_first_not_of(a), Piece::npos);
356 ASSERT_EQ(e.find_first_not_of(a), Piece::npos)
    [all...]
string_piece.h 63 size_t find_first_not_of(const StringPiece& self,
66 size_t find_first_not_of(const StringPiece& self, char c, size_t pos);
243 // find_first_not_of: Find the first occurence not of a set of characters.
244 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
246 return internal::find_first_not_of(*this, s, pos);
248 size_type find_first_not_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
249 return internal::find_first_not_of(*this, c, pos);
  /external/libcxx/test/std/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/parameter-framework/upstream/parameter/
RuleParser.cpp 154 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
246 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
  /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/google-breakpad/src/common/mac/
string_utilities.cc 64 end = str.find_first_not_of(digits, start);
  /external/llvm/lib/Support/
StringExtras.cpp 40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
  /external/dbus-binding-generator/chromeos-dbus-bindings/
indented_text.cc 72 size_t pos = line.find_first_not_of(" \t");
95 const bool all_whitespace = (line.find_first_not_of(" \t") == string::npos);
  /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/parameter-framework/upstream/remote-processor/
RequestMessage.cpp 166 strTrimmed.erase(0, strTrimmed.find_first_not_of(gacDelimiters));
  /build/kati/
string_piece.cc 141 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:StringPiece
151 return find_first_not_of(s.ptr_[0], pos);
163 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:StringPiece
string_piece.h 164 size_type find_first_not_of(const StringPiece& s, size_type pos = 0) const;
165 size_type find_first_not_of(char c, size_type pos = 0) const;
  /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/llvm/lib/MC/
MCSectionELF.cpp 34 if (Name.find_first_not_of("0123456789_."
  /external/webrtc/webrtc/base/
stringutils.cc 123 std::string::size_type first = s.find_first_not_of(kWhitespace);
  /system/connectivity/shill/test-rpc-proxy/
proxy_rpc_security_types.cc 120 (psk_.find_first_not_of("0123456789abcdef") != std::string::npos)) {

Completed in 677 milliseconds

1 2 3 4 5