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

1 2 3 4 5 6 7

  /external/libcxx/test/std/strings/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;
25 assert(s.find_first_not_of(c, pos) == x);
34 assert(s.find_first_not_of(c) == x);
78 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
79 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
80 static_assert (sv2.find_first_not_of( 'q', 0 ) == 0, "" );
81 static_assert (sv2.find_first_not_of( 'q', 1 ) == 1, "" );
82 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;
25 assert(s.find_first_not_of(str, pos) == x);
34 assert(s.find_first_not_of(str) == x);
159 static_assert (sv1.find_first_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_not_of( "irkhs", 0) == SV::npos, "" );
161 static_assert (sv2.find_first_not_of( "", 0) == 0, "" );
162 static_assert (sv2.find_first_not_of( "gfsrt", 0) == 0, "" );
163 static_assert (sv2.find_first_not_of( "lecar", 0) == 1, "" );
  /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;
25 assert(s.find_first_not_of(c, pos) == x);
34 assert(s.find_first_not_of(c) == x);
78 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
79 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
80 static_assert (sv2.find_first_not_of( 'q', 0 ) == 0, "" );
81 static_assert (sv2.find_first_not_of( 'q', 1 ) == 1, "" );
82 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;
25 assert(s.find_first_not_of(str, pos) == x);
34 assert(s.find_first_not_of(str) == x);
159 static_assert (sv1.find_first_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_not_of( "irkhs", 0) == SV::npos, "" );
161 static_assert (sv2.find_first_not_of( "", 0) == 0, "" );
162 static_assert (sv2.find_first_not_of( "gfsrt", 0) == 0, "" );
163 static_assert (sv2.find_first_not_of( "lecar", 0) == 1, "" );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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, "" );
  /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/swiftshader/third_party/llvm-subzero/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);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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 99 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
102 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
105 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
108 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
325 // find_first_not_of: Find the first occurence not of a set of characters.
326 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
328 return internal::find_first_not_of(*this, s, pos);
330 size_type find_first_not_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
331 return internal::find_first_not_of(*this, c, pos);
  /external/protobuf/src/google/protobuf/stubs/
stringpiece_unittest.cc 437 EXPECT_EQ(a.find_first_not_of(b), 3);
438 EXPECT_EQ(a.find_first_not_of(c), 0);
439 EXPECT_EQ(b.find_first_not_of(a), StringPiece::npos);
440 EXPECT_EQ(c.find_first_not_of(a), StringPiece::npos);
441 EXPECT_EQ(f.find_first_not_of(a), 0);
442 EXPECT_EQ(a.find_first_not_of(f), 0);
443 EXPECT_EQ(a.find_first_not_of(d), 0);
444 EXPECT_EQ(a.find_first_not_of(e), 0);
446 EXPECT_EQ(d.find_first_not_of(a), StringPiece::npos);
447 EXPECT_EQ(e.find_first_not_of(a), StringPiece::npos)
    [all...]
  /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) {
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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/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);

Completed in 1064 milliseconds

1 2 3 4 5 6 7