HomeSort by relevance Sort by last modified time
    Searched refs:find_last_not_of (Results 76 - 95 of 95) sorted by null

1 2 34

  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2192 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 2050 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_string.h 1011 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
1014 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]
_string.c 540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:_Alloc
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const function in class:_Alloc
  /external/clang/lib/Format/
BreakableToken.cpp 66 Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) {
339 Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringRef.cpp 303 /// find_last_not_of - Find the last character in the string that is not
305 StringRef::size_type StringRef::find_last_not_of(char C, size_t From) const {
312 /// find_last_not_of - Find the last character in the string that is not in
316 StringRef::size_type StringRef::find_last_not_of(StringRef Chars,
  /external/llvm/lib/Support/
ScaledNumber.cpp 193 size_t NonZero = Float.find_last_not_of('0');
SourceMgr.cpp 432 CaretLine.erase(CaretLine.find_last_not_of(' ')+1);
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 173 std::string::size_type last = s.find_last_not_of(drop);
  /external/llvm/unittests/ADT/
StringRefTest.cpp 376 EXPECT_EQ(3U, Str.find_last_not_of('o'));
377 EXPECT_EQ(1U, Str.find_last_not_of("lo"));
378 EXPECT_EQ(StringRef::npos, Str.find_last_not_of("helo"));
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.not.of/
pointer_size_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_last_not_of(str, pos, n) == x);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
pointer_size_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_last_not_of(str, pos, n) == x);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.ops/string_find.last.not.of/
pointer_size_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_last_not_of(str, pos, n) == x);
  /external/libchrome/base/strings/
string_util.cc 293 input_piece.find_last_not_of(trim_chars) : last_char;
334 input.find_last_not_of(trim_chars) + 1 : input.size();
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_string.c 540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:_Alloc
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const function in class:_Alloc
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_string.c 540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:_Alloc
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const function in class:_Alloc
  /system/update_engine/common/
utils.cc 475 size_t last_nondigit_pos = partition_name.find_last_not_of("0123456789");
487 partition_name.find_last_not_of("0123456789", last_nondigit_pos - 1);
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_unittest.cc 129 size_t pos = result->find_last_not_of('\n');
  /system/tools/aidl/
aidl.cpp 455 const size_t end = line.find_last_not_of(" ;\t");
  /external/jsoncpp/src/lib_json/
json_reader.cpp 158 size_t lastNonNewline = commentsBefore_.find_last_not_of("\r\n");

Completed in 2974 milliseconds

1 2 34