/external/libcxx/test/std/experimental/string.view/string.view.find/ |
D | rfind_char_size.pass.cpp | 23 assert(s.rfind(c, pos) == x); in test() 32 assert(s.rfind(c) == x); in test() 74 static_assert (sv1.rfind( 'b', 0 ) == SV::npos, "" ); in main() 75 static_assert (sv1.rfind( 'b', 1 ) == SV::npos, "" ); in main() 76 static_assert (sv2.rfind( 'b', 0 ) == SV::npos, "" ); in main() 77 static_assert (sv2.rfind( 'b', 1 ) == 1, "" ); in main() 78 static_assert (sv2.rfind( 'b', 2 ) == 1, "" ); in main() 79 static_assert (sv2.rfind( 'b', 3 ) == 1, "" ); in main() 80 static_assert (sv2.rfind( 'b', 4 ) == 1, "" ); in main()
|
D | rfind_pointer_size.pass.cpp | 23 assert(s.rfind(str, pos) == x); in test() 35 assert(s.rfind(str) == x); in test() 164 static_assert (sv1.rfind( "") == 0, "" ); in main() 165 static_assert (sv1.rfind( "abcde") == SV::npos, "" ); in main() 166 static_assert (sv2.rfind( "") == 5, "" ); in main() 167 static_assert (sv2.rfind( "abcde") == 0, "" ); in main() 168 static_assert (sv2.rfind( "abcde", 1) == 0, "" ); in main()
|
D | rfind_string_view_size.pass.cpp | 23 assert(s.rfind(str, pos) == x); in test() 32 assert(s.rfind(str) == x); in test() 157 static_assert (sv1.rfind(sv1) == 0, "" ); in main() 158 static_assert (sv1.rfind(sv2) == SV::npos, "" ); in main() 159 static_assert (sv2.rfind(sv1) == 5, "" ); in main() 160 static_assert (sv2.rfind(sv2) == 0, "" ); in main() 161 static_assert (sv2.rfind(sv2, 1) == 0, "" ); in main()
|
D | rfind_pointer_size_size.pass.cpp | 23 assert(s.rfind(str, pos, n) == x); in test() 384 static_assert (sv1.rfind( "", 0, 0 ) == 0, "" ); in main() 385 static_assert (sv1.rfind( "abcde", 0, 0 ) == 0, "" ); in main() 386 static_assert (sv1.rfind( "abcde", 0, 1 ) == SV::npos, "" ); in main() 387 static_assert (sv2.rfind( "", 0, 0 ) == 0, "" ); in main() 388 static_assert (sv2.rfind( "abcde", 0, 0 ) == 0, "" ); in main() 389 static_assert (sv2.rfind( "abcde", 0, 1 ) == 0, "" ); in main()
|
/external/llvm/unittests/ADT/ |
D | SmallStringTest.cpp | 129 EXPECT_EQ(3U, theString.rfind('l')); in TEST_F() 130 EXPECT_EQ(StringRef::npos, theString.rfind('z')); in TEST_F() 131 EXPECT_EQ(StringRef::npos, theString.rfind("helloworld")); in TEST_F() 132 EXPECT_EQ(0U, theString.rfind("hello")); in TEST_F() 133 EXPECT_EQ(1U, theString.rfind("ello")); in TEST_F() 134 EXPECT_EQ(StringRef::npos, theString.rfind("zz")); in TEST_F()
|
D | StringRefTest.cpp | 308 EXPECT_EQ(3U, Str.rfind('l')); in TEST() 309 EXPECT_EQ(StringRef::npos, Str.rfind('z')); in TEST() 310 EXPECT_EQ(StringRef::npos, Str.rfind("helloworld")); in TEST() 311 EXPECT_EQ(0U, Str.rfind("hello")); in TEST() 312 EXPECT_EQ(1U, Str.rfind("ello")); in TEST() 313 EXPECT_EQ(StringRef::npos, Str.rfind("zz")); in TEST()
|
/external/google-breakpad/src/processor/ |
D | pathname_stripper.cc | 42 string::size_type slash = path.rfind('/'); in File() 43 string::size_type backslash = path.rfind('\\'); in File()
|
/external/llvm/include/llvm/ADT/ |
D | SmallString.h | 163 size_t rfind(char C, size_t From = StringRef::npos) const { 164 return str().rfind(C, From); 171 size_t rfind(StringRef Str) const { in rfind() function 172 return str().rfind(Str); in rfind()
|
D | StringRef.h | 260 size_t rfind(char C, size_t From = npos) const { 275 size_t rfind(StringRef Str) const; 302 return rfind(C, From); 503 size_t Idx = rfind(Separator); in rsplit()
|
/external/skia/src/animator/ |
D | SkTDArray_Experimental.h | 50 int rfind(const int32_t& elem) const; 124 int rfind(const T& elem) const { return SkDS32Array::rfind((const int32_t&) elem); } in rfind() function
|
/external/blktrace/btt/ |
D | btt_plot.py | 79 get_base = lambda file: file[file.find('_')+1:file.rfind('_')] 195 prog = args[0][args[0].rfind('/')+1:] 201 type = prog[prog.rfind('_')+1:prog.rfind('.py')]
|
/external/llvm/utils/ |
D | wciia.py | 31 rpar = filesfolders.rfind(')') 85 rstar = path.rfind('*')
|
/external/libcxx/test/std/strings/basic.string/string.ops/string_rfind/ |
D | char_size.pass.cpp | 24 assert(s.rfind(c, pos) == x); in test() 33 assert(s.rfind(c) == x); in test()
|
D | pointer_size.pass.cpp | 24 assert(s.rfind(str, pos) == x); in test() 36 assert(s.rfind(str) == x); in test()
|
D | string_size.pass.cpp | 23 assert(s.rfind(str, pos) == x); in test() 32 assert(s.rfind(str) == x); in test()
|
/external/regex-re2/util/ |
D | stringpiece.cc | 60 int StringPiece::rfind(const StringPiece& s, size_type pos) const { in rfind() function in StringPiece 70 int StringPiece::rfind(char c, size_type pos) const { in rfind() function in StringPiece
|
/external/libcxx/include/experimental/ |
D | string_view | 136 constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept; 137 constexpr size_type rfind(charT c, size_type pos = npos) const noexcept; 138 constexpr size_type rfind(const charT* s, size_type pos, size_type n) const; 139 constexpr size_type rfind(const charT* s, size_type pos = npos) const; 444 // rfind 446 size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT 454 size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT 461 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const 463 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): recieved nullptr"); 469 size_type rfind(const _CharT* __s, size_type __pos=npos) const [all …]
|
/external/regex-re2/re2/ |
D | stringpiece.h | 143 int rfind(const StringPiece& s, size_type pos = npos) const; 144 int rfind(char c, size_type pos = npos) const;
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | minidump_writer_unittest_utils.cc | 54 size_t pos = helper_path.rfind('/'); in GetHelperBinary()
|
/external/lldb/examples/customization/import-python/ |
D | importcmd.py | 26 endofdir = args.rfind(os.sep)
|
/external/parameter-framework/parameter/ |
D | FrameworkConfigurationLocation.cpp | 66 uint32_t uiSlashPos = _strPath.rfind('/', -1); in getFolderPath()
|
D | XmlFileIncluderElement.cpp | 131 std::string::size_type pos = strKind.rfind("Include", std::string::npos); in getIncludedElementType()
|
/external/lldb/source/Target/ |
D | CPPLanguageRuntime.cpp | 317 context_end = full.rfind(':', template_start); in Parse() 320 context_end = full.rfind(':', basename_end); in Parse()
|
/external/clang/lib/Basic/ |
D | ObjCRuntime.cpp | 45 std::size_t dash = input.rfind('-'); in tryParse()
|
/external/google-breakpad/src/client/mac/tests/ |
D | spawn_child_process.h | 90 size_t pos = helper_path.rfind('/'); in GetHelperPath()
|