/development/tools/emulator/opengl/host/tools/emugen/ |
strUtils.cpp | 25 pos = str.find_first_not_of(WHITESPACE, pos); 39 string::size_type start = str.find_first_not_of(WHITESPACE, 0);
|
/external/chromium/base/ |
string_piece_unittest.cc | 285 ASSERT_EQ(a.find_first_not_of(b), 3U); 286 ASSERT_EQ(a.find_first_not_of(c), 0U); 287 ASSERT_EQ(b.find_first_not_of(a), StringPiece::npos); 288 ASSERT_EQ(c.find_first_not_of(a), StringPiece::npos); 289 ASSERT_EQ(f.find_first_not_of(a), 0U); 290 ASSERT_EQ(a.find_first_not_of(f), 0U); 291 ASSERT_EQ(a.find_first_not_of(d), 0U); 292 ASSERT_EQ(a.find_first_not_of(e), 0U); 294 ASSERT_EQ(d.find_first_not_of(a), StringPiece::npos); 295 ASSERT_EQ(e.find_first_not_of(a), StringPiece::npos) [all...] |
string_piece.cc | 116 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:base::StringPiece 126 return find_first_not_of(s.ptr_[0], pos); 138 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:base::StringPiece
|
string_piece.h | 147 size_type find_first_not_of(const StringPiece& s, size_type pos = 0) const; 148 size_type find_first_not_of(char c, size_type pos = 0) const;
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
|
Regex.cpp | 150 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
|
StringRef.cpp | 178 /// find_first_not_of - Find the first character in the string that is not 180 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const { 187 /// find_first_not_of - Find the first character in the string that is not 191 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
|
/external/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/chromium/net/base/ |
net_util_win.cc | 40 size_t first_non_slash = path.find_first_not_of("/\\");
|
/external/chromium/net/http/ |
http_chunked_decoder.cc | 190 if (base::StringPiece(start, len).find_first_not_of("0123456789abcdefABCDEF")
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stringutils.cc | 135 std::string::size_type first = s.find_first_not_of(kWhitespace);
|
/external/llvm/lib/MC/ |
MCSectionELF.cpp | 43 if (name.find_first_not_of("0123456789_."
|
/external/oprofile/libutil++/ |
string_manip.cpp | 88 return result.erase(0, result.find_first_not_of(totrim));
|
/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
httpportallocator.cc | 47 size_t first = str.find_first_not_of(" \t\r\n"); 64 start_of_line = string.find_first_not_of("\r\n", end_of_line);
|
/external/llvm/include/llvm/ADT/ |
StringRef.h | 262 /// find_first_not_of - Find the first character in the string that is not 264 size_type find_first_not_of(char C, size_t From = 0) const; 266 /// find_first_not_of - Find the first character in the string that is not 270 size_type find_first_not_of(StringRef Chars, size_t From = 0) const;
|
/external/stlport/stlport/stl/ |
_string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
/external/astl/tests/ |
test_string.cpp | 1052 EXPECT_TRUE(s.find_first_not_of('a') == string::npos); 1054 EXPECT_TRUE(s.find_first_not_of('a') == 1); 1055 EXPECT_TRUE(s.find_first_not_of('a', 0) == 1); 1056 EXPECT_TRUE(s.find_first_not_of('a', 1) == 1); 1057 EXPECT_TRUE(s.find_first_not_of('a', 7) == 8); 1059 EXPECT_TRUE(s.find_first_not_of('a') == 0); 1060 EXPECT_TRUE(s.find_first_not_of('a', 8) == string::npos); // out of bound
|
/external/llvm/unittests/ADT/ |
StringRefTest.cpp | 254 EXPECT_EQ(1U, Str.find_first_not_of('h')); 255 EXPECT_EQ(4U, Str.find_first_not_of("hel")); 256 EXPECT_EQ(StringRef::npos, Str.find_first_not_of("hello"));
|
/external/chromium/base/debug/ |
stack_trace_posix.cc | 77 text->find_first_not_of(kSymbolCharacters, mangled_start);
|
/external/chromium/chrome/browser/chromeos/ |
version_loader.cc | 127 size_t found = str.find_first_not_of("| ");
|
/external/chromium/chrome/browser/ |
intranet_redirect_detector.cc | 178 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") ==
|
/external/stlport/stlport/stl/debug/ |
_string.h | 758 // find_first_not_of 759 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 760 { return _M_non_dbg_impl.find_first_not_of(__s._M_non_dbg_impl, __pos); } 761 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 764 return _M_non_dbg_impl.find_first_not_of(__s, __pos); 766 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 769 return _M_non_dbg_impl.find_first_not_of(__s, __pos, __n); 771 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 772 { return _M_non_dbg_impl.find_first_not_of(__c, __pos); }
|