Searched refs:find_first_not_of (Results 1 - 25 of 61) sorted by relevance

123

/external/ceres-solver/internal/ceres/
H A Dsplit.cc95 begin_index = full.find_first_not_of(delim);
103 begin_index = full.find_first_not_of(delim, end_index);
/external/chromium/base/
H A Dstring_piece_unittest.cc285 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(
[all...]
H A Dstring_piece.cc116 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
H A Dstring_piece.h147 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;
H A Dstring_split.cc80 size_t begin_values_pos = remains.find_first_not_of(key_value_delimiter);
/external/llvm/include/llvm/ADT/
H A DSmallString.h194 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
195 return str().find_first_not_of(C, From);
202 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
203 return str().find_first_not_of(Chars, From);
H A DStringRef.h275 size_type find_first_not_of(char C, size_t From = 0) const;
281 size_type find_first_not_of(StringRef Chars, size_t From = 0) const;
493 return drop_front(std::min(Length, find_first_not_of(Chars)));
/external/llvm/lib/Support/
H A DStringExtras.cpp41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
H A DRegex.cpp152 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
H A DStringRef.cpp192 /// find_first_not_of - Find the first character in the string that is not
194 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const {
201 /// find_first_not_of - Find the first character in the string that is not
205 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
/external/llvm/unittests/ADT/
H A DSmallStringTest.cpp140 EXPECT_EQ(1U, theString.find_first_not_of('h'));
141 EXPECT_EQ(4U, theString.find_first_not_of("hel"));
142 EXPECT_EQ(StringRef::npos, theString.find_first_not_of("hello"));
H A DStringRefTest.cpp291 EXPECT_EQ(1U, Str.find_first_not_of('h'));
292 EXPECT_EQ(4U, Str.find_first_not_of("hel"));
293 EXPECT_EQ(StringRef::npos, Str.find_first_not_of("hello"));
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp200 std::string::size_type start = CStr.find_first_not_of(" \t");
204 wpos = Name.find_first_not_of(" \t");
221 start = CStr.find_first_not_of(" \t");
232 wpos = Name.find_first_not_of(" \t");
258 bidx = CStr.find_first_not_of(delims);
265 bidx = CStr.find_first_not_of(delims, eidx);
/external/chromium/net/base/
H A Dnet_util_win.cc40 size_t first_non_slash = path.find_first_not_of("/\\");
/external/chromium/net/http/
H A Dhttp_chunked_decoder.cc190 if (base::StringPiece(start, len).find_first_not_of("0123456789abcdefABCDEF")
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.cc135 std::string::size_type first = s.find_first_not_of(kWhitespace);
/external/llvm/lib/MC/
H A DMCSectionELF.cpp43 if (name.find_first_not_of("0123456789_."
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp97 if (size_t Pos = Str.find_first_not_of(" \t\r")) {
/external/oprofile/libutil++/
H A Dstring_manip.cpp88 return result.erase(0, result.find_first_not_of(totrim));
/external/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dhttpportallocator.cc47 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/stlport/stlport/stl/
H A D_string_sum.h217 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/chromium/base/debug/
H A Dstack_trace_posix.cc77 text->find_first_not_of(kSymbolCharacters, mangled_start);
/external/chromium/chrome/browser/chromeos/
H A Dversion_loader.cc127 size_t found = str.find_first_not_of("| ");
/external/chromium/chrome/browser/
H A Dintranet_redirect_detector.cc178 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") ==
/external/stlport/stlport/stl/debug/
H A D_string.h758 // 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); }

Completed in 744 milliseconds

123