Home
last modified time | relevance | path

Searched refs:find_first_not_of (Results 1 – 12 of 12) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dstringpiece_unittest.cc437 EXPECT_EQ(a.find_first_not_of(b), 3); in TEST()
438 EXPECT_EQ(a.find_first_not_of(c), 0); in TEST()
439 EXPECT_EQ(b.find_first_not_of(a), StringPiece::npos); in TEST()
440 EXPECT_EQ(c.find_first_not_of(a), StringPiece::npos); in TEST()
441 EXPECT_EQ(f.find_first_not_of(a), 0); in TEST()
442 EXPECT_EQ(a.find_first_not_of(f), 0); in TEST()
443 EXPECT_EQ(a.find_first_not_of(d), 0); in TEST()
444 EXPECT_EQ(a.find_first_not_of(e), 0); in TEST()
446 EXPECT_EQ(d.find_first_not_of(a), StringPiece::npos); in TEST()
447 EXPECT_EQ(e.find_first_not_of(a), StringPiece::npos); in TEST()
[all …]
Dstringpiece.cc180 stringpiece_ssize_type StringPiece::find_first_not_of(StringPiece s, in find_first_not_of() function in google::protobuf::StringPiece
185 if (s.length_ == 1) return find_first_not_of(s.ptr_[0], pos); in find_first_not_of()
197 stringpiece_ssize_type StringPiece::find_first_not_of(char c, in find_first_not_of() function in google::protobuf::StringPiece
Dstringpiece.h376 stringpiece_ssize_type find_first_not_of(StringPiece s,
378 stringpiece_ssize_type find_first_not_of(char c, size_type pos = 0) const;
Dstrutil.cc200 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
208 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()
/frameworks/rs/script_api/
DUtilities.cpp71 const size_t start = s->find_first_not_of(" "); in trimSpaces()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/javanano/
Djavanano_generator.cc52 string::size_type start = s.find_first_not_of(" \n\r\t"); in TrimString()
/frameworks/minikin/tests/util/
DFontTestUtils.cpp40 const size_t start = in.find_first_not_of(XML_SPACES); // inclusive in xmlTrim()
/frameworks/base/cmds/incident_helper/src/
Dih_util.cpp34 const auto head = s.find_first_not_of(charset); in trim()
170 const auto head = line->find_first_not_of(DEFAULT_WHITESPACE); in stripPrefix()
/frameworks/base/native/android/
Dsystem_fonts.cpp87 const size_t start = in.find_first_not_of(XML_SPACES); // inclusive in xmlTrim()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc129 if (s_nanos.find_first_not_of("0123456789") != StringPiece::npos) { in GetNanosFromStringPiece()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dcommand_line_interface.cc662 string indent_(*target, pos, target->find_first_not_of(" \t", pos) - pos); in ~MemoryOutputStream()
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp68 return (pName.find_first_not_of(simple_c_identifier_allowed_chars) == in isCIdentifier()