HomeSort by relevance Sort by last modified time
    Searched refs:rfind (Results 26 - 50 of 440) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Support/
TypeName.h 53 auto AnglePos = Name.rfind('>');
  /external/llvm/utils/
wciia.py 31 rpar = filesfolders.rfind(')')
85 rstar = path.rfind('*')
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 129 EXPECT_EQ(3U, theString.rfind('l'));
130 EXPECT_EQ(StringRef::npos, theString.rfind('z'));
131 EXPECT_EQ(StringRef::npos, theString.rfind("helloworld"));
132 EXPECT_EQ(0U, theString.rfind("hello"));
133 EXPECT_EQ(1U, theString.rfind("ello"));
134 EXPECT_EQ(StringRef::npos, theString.rfind("zz"));
  /external/libchrome/base/strings/
string_piece.h 79 BASE_EXPORT size_t rfind(const StringPiece& self,
82 BASE_EXPORT size_t rfind(const StringPiece16& self,
85 BASE_EXPORT size_t rfind(const StringPiece& self,
88 BASE_EXPORT size_t rfind(const StringPiece16& self,
307 // rfind: Reverse find.
308 size_type rfind(const BasicStringPiece& s, function in class:base::BasicStringPiece
310 return internal::rfind(*this, s, pos);
312 size_type rfind(value_type c, size_type pos = BasicStringPiece::npos) const { function in class:base::BasicStringPiece
313 return internal::rfind(*this, c, pos);
341 return rfind(c, pos)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 12 // size_type rfind(charT c, size_type pos = npos) const;
24 assert(s.rfind(c, pos) == x);
33 assert(s.rfind(c) == x);
  /external/regex-re2/util/
stringpiece.cc 60 int StringPiece::rfind(const StringPiece& s, size_type pos) const { function in class:StringPiece
70 int StringPiece::rfind(char c, size_type pos) const { function in class:StringPiece
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 12 // size_type rfind(charT c, size_type pos = npos) const;
24 assert(s.rfind(c, pos) == x);
33 assert(s.rfind(c) == x);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 12 // size_type rfind(charT c, size_type pos = npos) const;
24 assert(s.rfind(c, pos) == x);
33 assert(s.rfind(c) == x);
  /system/extras/preopt2cachename/
preopt2cachename.cpp 49 size_t file_location_start = file_location.rfind('/');
53 size_t ext_start = file_location.rfind('.');
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/rules/
log_url.py 66 pkg = (obj.__module__[:obj.__module__.rfind('.') + 1]
  /external/parameter-framework/upstream/parameter/
XmlFileIncluderElement.cpp 122 std::string::size_type pos = strKind.rfind("Include", std::string::npos);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringRef.h 229 /// rfind - Search for the last character \arg C in the string.
233 size_t rfind(char C, size_t From = npos) const {
244 /// rfind - Search for the last string \arg Str in the string.
248 size_t rfind(StringRef Str) const;
275 return rfind(C, From);
427 size_t Idx = rfind(Separator);
  /external/webrtc/webrtc/libjingle/xmllite/
qname.cc 34 size_t i = merged_or_local.rfind(':');
  /frameworks/base/tools/streaming_proto/
string_utils.cpp 66 size_t start = str.rfind('/');
  /frameworks/compile/libbcc/lib/
RSUtils.h 60 size_t LastDot = T->getName().rfind('.');
  /external/libcxx/test/std/experimental/string.view/string.view.find/
rfind_pointer_size_size.pass.cpp 11 // constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
24 assert(s.rfind(str, pos, n) == x);
385 static_assert (sv1.rfind( "", 0, 0 ) == 0, "" );
386 static_assert (sv1.rfind( "abcde", 0, 0 ) == 0, "" );
387 static_assert (sv1.rfind( "abcde", 0, 1 ) == SV::npos, "" );
388 static_assert (sv2.rfind( "", 0, 0 ) == 0, "" );
389 static_assert (sv2.rfind( "abcde", 0, 0 ) == 0, "" );
390 static_assert (sv2.rfind( "abcde", 0, 1 ) == 0, "" );
  /external/libcxx/test/std/strings/string.view/string.view.find/
rfind_pointer_size_size.pass.cpp 11 // constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
24 assert(s.rfind(str, pos, n) == x);
385 static_assert (sv1.rfind( "", 0, 0 ) == 0, "" );
386 static_assert (sv1.rfind( "abcde", 0, 0 ) == 0, "" );
387 static_assert (sv1.rfind( "abcde", 0, 1 ) == SV::npos, "" );
388 static_assert (sv2.rfind( "", 0, 0 ) == 0, "" );
389 static_assert (sv2.rfind( "abcde", 0, 0 ) == 0, "" );
390 static_assert (sv2.rfind( "abcde", 0, 1 ) == 0, "" );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.find/
rfind_pointer_size_size.pass.cpp 11 // constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
23 assert(s.rfind(str, pos, n) == x);
384 static_assert (sv1.rfind( "", 0, 0 ) == 0, "" );
385 static_assert (sv1.rfind( "abcde", 0, 0 ) == 0, "" );
386 static_assert (sv1.rfind( "abcde", 0, 1 ) == SV::npos, "" );
387 static_assert (sv2.rfind( "", 0, 0 ) == 0, "" );
388 static_assert (sv2.rfind( "abcde", 0, 0 ) == 0, "" );
389 static_assert (sv2.rfind( "abcde", 0, 1 ) == 0, "" );
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 99 bool Found = rfind(Key, &Val);
145 static bool rfind(Ty2 Key, Ty1 *Val = nullptr) { function in struct:SPIRV::SPIRVMap
242 if (SPIRVMap<KT, VT>::rfind(I, &V))
253 if (SPIRVMap<KT, VT>::rfind(I, &V))
264 if (SPIRVMap<KT, VT>::rfind(I.first, &V))
281 return SPIRVMap<K, std::string>::rfind(Name, &Key);
  /external/swiftshader/third_party/LLVM/unittests/ADT/
StringRefTest.cpp 249 EXPECT_EQ(3U, Str.rfind('l'));
250 EXPECT_EQ(StringRef::npos, Str.rfind('z'));
251 EXPECT_EQ(StringRef::npos, Str.rfind("helloworld"));
252 EXPECT_EQ(0U, Str.rfind("hello"));
253 EXPECT_EQ(1U, Str.rfind("ello"));
254 EXPECT_EQ(StringRef::npos, Str.rfind("zz"));
  /art/runtime/base/
stringpiece.cc 69 StringPiece::size_type StringPiece::rfind(const StringPiece& s, size_type pos) const { function in class:art::StringPiece
79 StringPiece::size_type StringPiece::rfind(char c, size_type pos) const { function in class:art::StringPiece
  /external/regex-re2/re2/
stringpiece.h 143 int rfind(const StringPiece& s, size_type pos = npos) const;
144 int rfind(char c, size_type pos = npos) const;
  /system/tools/aidl/tests/
test_util.cpp 53 *package = string{package_class, 0, package_class.rfind('.')};
54 *class_name = string{package_class, package_class.rfind('.') + 1};
  /external/blktrace/btt/
bno_plot.py 105 t = t[t.rfind('/')+1:]
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')]

Completed in 1651 milliseconds

12 3 4 5 6 7 8 91011>>