Home
last modified time | relevance | path

Searched refs:end_pos (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
DPath.cpp159 size_t end_pos = m_PathName.find_last_of(separator); in parent_path() local
160 if (end_pos != StringType::npos) in parent_path()
161 return Path(m_PathName.substr(0, end_pos)); in parent_path()
176 size_t end_pos = m_PathName.find_last_of(dot); in stem() local
177 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos)); in stem()
/frameworks/native/libs/binder/
DPersistableBundle.cpp107 size_t end_pos = parcel->dataPosition(); in writeToParcel() local
111 size_t length = end_pos - start_pos; in writeToParcel()
117 parcel->setDataPosition(end_pos); in writeToParcel()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dparser_unittest.cc2233 pair<int, int> end_pos = FindOrDie(markers_, end_marker); in HasSpanWithComment() local
2238 if (end_pos.first != start_pos.first) { in HasSpanWithComment()
2239 expected_span.Add(end_pos.first); in HasSpanWithComment()
2241 expected_span.Add(end_pos.second); in HasSpanWithComment()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor.cc4273 char* end_pos = NULL; in BuildFieldOrExtension() local
4277 strtol(proto.default_value().c_str(), &end_pos, 0); in BuildFieldOrExtension()
4281 strto64(proto.default_value().c_str(), &end_pos, 0); in BuildFieldOrExtension()
4285 strtoul(proto.default_value().c_str(), &end_pos, 0); in BuildFieldOrExtension()
4289 strtou64(proto.default_value().c_str(), &end_pos, 0); in BuildFieldOrExtension()
4300 io::NoLocaleStrtod(proto.default_value().c_str(), &end_pos)); in BuildFieldOrExtension()
4312 io::NoLocaleStrtod(proto.default_value().c_str(), &end_pos); in BuildFieldOrExtension()
4347 if (end_pos != NULL) { in BuildFieldOrExtension()
4351 if (proto.default_value().empty() || *end_pos != '\0') { in BuildFieldOrExtension()