HomeSort by relevance Sort by last modified time
    Searched refs:find_first_not_of (Results 1 - 25 of 173) 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, "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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, "" );
  /prebuilts/ndk/r16/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;
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/perf_data_converter/src/quipper/
string_utils.cc 15 size_t start = str->find_first_not_of(kWhitespaceCharacters);
  /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-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/darwin-x86/clang-4393122/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-4479392/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-4579689/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-4630689/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-4639204/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-4691093/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);
  /prebuilts/clang/host/linux-x86/clang-4393122/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-4479392/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-4579689/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-4630689/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-4639204/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-4691093/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 359 ASSERT_EQ(a.find_first_not_of(b), 3U);
360 ASSERT_EQ(a.find_first_not_of(c), 0U);
361 ASSERT_EQ(b.find_first_not_of(a), Piece::npos);
362 ASSERT_EQ(c.find_first_not_of(a), Piece::npos);
363 ASSERT_EQ(f.find_first_not_of(a), 0U);
364 ASSERT_EQ(a.find_first_not_of(f), 0U);
365 ASSERT_EQ(a.find_first_not_of(d), 0U);
366 ASSERT_EQ(a.find_first_not_of(e), 0U);
368 ASSERT_EQ(d.find_first_not_of(a), Piece::npos);
369 ASSERT_EQ(e.find_first_not_of(a), Piece::npos)
    [all...]
  /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...]

Completed in 616 milliseconds

1 2 3 4 5 6 7