Home
last modified time | relevance | path

Searched refs:path_begin (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/url/third_party/mozilla/
Durl_parse.cc482 int path_begin; in DoParsePathURL() local
489 path_begin = parsed->scheme.end() + 1; in DoParsePathURL()
493 path_begin = scheme_begin; in DoParsePathURL()
496 if (path_begin == spec_len) in DoParsePathURL()
498 DCHECK_LT(path_begin, spec_len); in DoParsePathURL()
501 MakeRange(path_begin, spec_len), in DoParsePathURL()
531 int path_begin = -1; in DoParseMailtoURL() local
541 path_begin = parsed->scheme.end() + 1; in DoParseMailtoURL()
547 path_begin = begin; in DoParseMailtoURL()
552 for (int i = path_begin; i < path_end; ++i) { in DoParseMailtoURL()
[all …]
/external/chromium/googleurl/src/
Durl_parse.cc404 int path_begin = -1; in DoParseMailtoURL() local
414 path_begin = parsed->scheme.end() + 1; in DoParseMailtoURL()
420 path_begin = begin; in DoParseMailtoURL()
425 for (int i = path_begin; i < path_end; ++i) { in DoParseMailtoURL()
435 if (path_begin == path_end) { in DoParseMailtoURL()
438 parsed->path = MakeRange(path_begin, path_end); in DoParseMailtoURL()
Durl_parse_file.cc129 int path_begin, in DoParseLocalFile() argument
133 ParsePathInternal(spec, MakeRange(path_begin, spec_len), in DoParseLocalFile()
Durl_canon_relative.cc327 int path_begin = output->length(); in DoResolveRelativePath() local
330 success &= CanonicalizePartialPath(relative_url, path, path_begin, in DoResolveRelativePath()
332 out_parsed->path = url_parse::MakeRange(path_begin, output->length()); in DoResolveRelativePath()
/external/chromium_org/url/
Durl_parse_file.cc104 int path_begin, in DoParseLocalFile() argument
108 ParsePathInternal(spec, MakeRange(path_begin, spec_len), in DoParseLocalFile()
Durl_canon_relative.cc315 int path_begin = output->length(); in DoResolveRelativePath() local
318 success &= CanonicalizePartialPath(relative_url, path, path_begin, in DoResolveRelativePath()
320 out_parsed->path = url_parse::MakeRange(path_begin, output->length()); in DoResolveRelativePath()
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dparser_unittest.cc1390 const int* path_begin, const int* path_end, in FollowPath() argument
1394 if (path_begin == path_end) { in FollowPath()
1405 const FieldDescriptor* field = descriptor->FindFieldByNumber(*path_begin); in FollowPath()
1409 << *path_begin; in FollowPath()
1413 ++path_begin; in FollowPath()
1416 if (path_begin == path_end) { in FollowPath()
1424 int index = *path_begin++; in FollowPath()
1437 return FollowPath(child, path_begin, path_end, in FollowPath()
1439 } else if (path_begin == path_end) { in FollowPath()
1453 return FollowPath(child, path_begin, path_end, in FollowPath()
[all …]
/external/clang/lib/CodeGen/
DCGCXXABI.cpp250 E->path_begin(), in getMemberPointerAdjustment()
DCGExpr.cpp374 Adjustment.DerivedToBase.BasePath->path_begin(), in EmitMaterializeTemporaryExpr()
2753 E->path_begin(), E->path_end(), in EmitCastLValue()
2776 E->path_begin(), E->path_end(), in EmitCastLValue()
DCGExprScalar.cpp1244 CE->path_begin(), CE->path_end(), in VisitCastExpr()
1254 CE->path_begin(), CE->path_end(), in VisitCastExpr()
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp254 for (CastExpr::path_const_iterator I = Cast->path_begin(), in evalDerivedToBase()
/external/clang/include/clang/AST/
DExpr.h2695 path_iterator path_begin() { return path_buffer(); } in path_begin() function
2697 path_const_iterator path_begin() const { return path_buffer(); } in path_begin() function
/external/clang/lib/AST/
DASTDumper.cpp1508 for (CastExpr::path_const_iterator I = Node->path_begin(), in dumpBasePath()
DExprConstant.cpp1678 for (CastExpr::path_const_iterator PathI = E->path_begin(), in HandleLValueBasePath()
4727 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); in VisitCastExpr()
4743 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
4885 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp596 PI = E->path_begin(), PE = E->path_end(); PI != PE; ++PI) in VisitCastExpr()
DASTReaderStmt.cpp640 CastExpr::path_iterator BaseI = E->path_begin(); in VisitCastExpr()