HomeSort by relevance Sort by last modified time
    Searched full:find_first_not_of (Results 76 - 100 of 337) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
string 827 find_first_not_of(const basic_string& __str, size_type __pos = 0) const
829 { return _Base::find_first_not_of(__str, __pos); }
832 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
835 return _Base::find_first_not_of(__s, __pos, __n);
839 find_first_not_of(const _CharT* __s, size_type __pos = 0) const
842 return _Base::find_first_not_of(__s, __pos);
846 find_first_not_of(_CharT __c, size_type __pos = 0) const _GLIBCXX_NOEXCEPT
847 { return _Base::find_first_not_of(__c, __pos); }
  /system/vold/
vold_prepare_subdirs.cpp 50 return !s.empty() && s.size() < 7 && s.find_first_not_of("0123456789") == std::string::npos;
54 return s.size() < 40 && s.find_first_not_of("0123456789abcdefABCDEF-_") == std::string::npos;
  /external/libchrome/base/strings/
string_piece.cc 232 size_t find_first_not_of(const StringPiece& self, function in namespace:base::internal
243 return find_first_not_of(self, s.data()[0], pos);
256 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self, function in namespace:base::internal
291 size_t find_first_not_of(const StringPiece& self, function in namespace:base::internal
297 size_t find_first_not_of(const StringPiece16& self, function in namespace:base::internal
  /external/libcxx/test/std/strings/string.view/string.view.find/
find_first_not_of_pointer_size_size.pass.cpp 12 // constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
25 assert(s.find_first_not_of(str, pos, n) == x);
386 static_assert (sv1.find_first_not_of( "", 0, 0) == SV::npos, "" );
387 static_assert (sv1.find_first_not_of( "irkhs", 0, 5) == SV::npos, "" );
388 static_assert (sv2.find_first_not_of( "", 0, 0) == 0, "" );
389 static_assert (sv2.find_first_not_of( "gfsrt", 0, 5) == 0, "" );
390 static_assert (sv2.find_first_not_of( "lecar", 0, 5) == 1, "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.find/
find_first_not_of_pointer_size_size.pass.cpp 12 // constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
25 assert(s.find_first_not_of(str, pos, n) == x);
386 static_assert (sv1.find_first_not_of( "", 0, 0) == SV::npos, "" );
387 static_assert (sv1.find_first_not_of( "irkhs", 0, 5) == SV::npos, "" );
388 static_assert (sv2.find_first_not_of( "", 0, 0) == 0, "" );
389 static_assert (sv2.find_first_not_of( "gfsrt", 0, 5) == 0, "" );
390 static_assert (sv2.find_first_not_of( "lecar", 0, 5) == 1, "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.find/
find_first_not_of_pointer_size_size.pass.cpp 12 // constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
25 assert(s.find_first_not_of(str, pos, n) == x);
386 static_assert (sv1.find_first_not_of( "", 0, 0) == SV::npos, "" );
387 static_assert (sv1.find_first_not_of( "irkhs", 0, 5) == SV::npos, "" );
388 static_assert (sv2.find_first_not_of( "", 0, 0) == 0, "" );
389 static_assert (sv2.find_first_not_of( "gfsrt", 0, 5) == 0, "" );
390 static_assert (sv2.find_first_not_of( "lecar", 0, 5) == 1, "" );
  /external/protobuf/src/google/protobuf/stubs/
stringpiece.cc 180 stringpiece_ssize_type StringPiece::find_first_not_of(StringPiece s, function in class:google::protobuf::StringPiece
185 if (s.length_ == 1) return find_first_not_of(s.ptr_[0], pos);
197 stringpiece_ssize_type StringPiece::find_first_not_of(char c, function in class:google::protobuf::StringPiece
  /external/swiftshader/third_party/LLVM/unittests/ADT/
StringRefTest.cpp 260 EXPECT_EQ(1U, Str.find_first_not_of('h'));
261 EXPECT_EQ(4U, Str.find_first_not_of("hel"));
262 EXPECT_EQ(StringRef::npos, Str.find_first_not_of("hello"));
  /external/llvm/lib/Support/
StringExtras.cpp 40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
Regex.cpp 154 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
StringRef.cpp 217 /// find_first_not_of - Find the first character in the string that is not
219 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const {
226 /// find_first_not_of - Find the first character in the string that is not
230 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
  /external/parameter-framework/upstream/remote-processor/
RequestMessage.cpp 166 strTrimmed.erase(0, strTrimmed.find_first_not_of(gacDelimiters));
  /external/swiftshader/third_party/LLVM/lib/Support/
StringRef.cpp 185 /// find_first_not_of - Find the first character in the string that is not
187 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const {
194 /// find_first_not_of - Find the first character in the string that is not
198 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringExtras.cpp 40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
  /external/webrtc/webrtc/base/
stringutils.cc 123 std::string::size_type first = s.find_first_not_of(kWhitespace);
  /build/kati/
string_piece.h 160 size_type find_first_not_of(const StringPiece& s, size_type pos = 0) const;
161 size_type find_first_not_of(char c, size_type pos = 0) const;
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 28 size_t first = str.find_first_not_of(" \t\r\n");
45 start_of_line = string.find_first_not_of("\r\n", end_of_line);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.cpp 201 std::string::size_type start = CStr.find_first_not_of(" \t");
205 wpos = Name.find_first_not_of(" \t");
222 start = CStr.find_first_not_of(" \t");
233 wpos = Name.find_first_not_of(" \t");
257 bidx = CStr.find_first_not_of(delims);
264 bidx = CStr.find_first_not_of(delims, eidx);
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 207 std::string::size_type start = CStr.find_first_not_of(" \t");
211 wpos = Name.find_first_not_of(" \t");
228 start = CStr.find_first_not_of(" \t");
239 wpos = Name.find_first_not_of(" \t");
265 bidx = CStr.find_first_not_of(delims);
272 bidx = CStr.find_first_not_of(delims, eidx);
  /device/google/wahoo/vibrator/
service.cpp 55 const auto str_begin = str.find_first_not_of(whitespace);
  /external/clang/lib/StaticAnalyzer/Core/
IssueHash.cpp 135 StringRef::size_type col = Str.find_first_not_of(Whitespaces);
  /external/libbrillo/brillo/
url_utils.cc 79 size_t non_slash_pos = part.find_first_not_of('/');
  /external/llvm/include/llvm/ADT/
StringRef.h 310 size_t find_first_not_of(char C, size_t From = 0) const;
316 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
553 return drop_front(std::min(Length, find_first_not_of(Char)));
559 return drop_front(std::min(Length, find_first_not_of(Chars)));
  /external/llvm/lib/MC/
MCSectionELF.cpp 34 if (Name.find_first_not_of("0123456789_."
  /external/perfetto/src/traced/probes/
process_stats_data_source.cc 182 begin = buf.find_first_not_of(" \t", begin + strlen(key));

Completed in 1354 milliseconds

1 2 34 5 6 7 8 91011>>