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/ |
D | stringpiece_unittest.cc | 437 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 …]
|
D | stringpiece.cc | 180 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
|
D | stringpiece.h | 376 stringpiece_ssize_type find_first_not_of(StringPiece s, 378 stringpiece_ssize_type find_first_not_of(char c, size_type pos = 0) const;
|
D | strutil.cc | 200 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/ |
D | Utilities.cpp | 71 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/ |
D | javanano_generator.cc | 52 string::size_type start = s.find_first_not_of(" \n\r\t"); in TrimString()
|
/frameworks/minikin/tests/util/ |
D | FontTestUtils.cpp | 40 const size_t start = in.find_first_not_of(XML_SPACES); // inclusive in xmlTrim()
|
/frameworks/base/cmds/incident_helper/src/ |
D | ih_util.cpp | 34 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/ |
D | system_fonts.cpp | 87 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/ |
D | protostream_objectwriter.cc | 129 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/ |
D | command_line_interface.cc | 662 string indent_(*target, pos, target->find_first_not_of(" \t", pos) - pos); in ~MemoryOutputStream()
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 68 return (pName.find_first_not_of(simple_c_identifier_allowed_chars) == in isCIdentifier()
|