Home
last modified time | relevance | path

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

/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/clang/lib/CodeGen/
DCGCXXABI.cpp248 E->path_begin(), in getMemberPointerAdjustment()
DCGExpr.cpp424 Adjustment.DerivedToBase.BasePath->path_begin(), in EmitExprForReferenceBinding()
2483 E->path_begin(), E->path_end(), in EmitCastLValue()
2500 E->path_begin(), E->path_end(), in EmitCastLValue()
DCGExprScalar.cpp1062 CE->path_begin(), CE->path_end(), in VisitCastExpr()
1073 CE->path_begin(), CE->path_end(), in VisitCastExpr()
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp228 for (CastExpr::path_const_iterator I = Cast->path_begin(), in evalDerivedToBase()
/external/clang/lib/AST/
DStmtDumper.cpp349 I = Node->path_begin(), E = Node->path_end(); I != E; ++I) { in DumpBasePath()
DExprConstant.cpp2736 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
3094 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
3224 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); in VisitCastExpr()
3240 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
3381 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
/external/clang/include/clang/AST/
DExpr.h2587 path_iterator path_begin() { return path_buffer(); } in path_begin() function
2589 path_const_iterator path_begin() const { return path_buffer(); } in path_begin() function
/external/clang/lib/Serialization/
DASTWriterStmt.cpp529 PI = E->path_begin(), PE = E->path_end(); PI != PE; ++PI) in VisitCastExpr()
DASTReaderStmt.cpp554 CastExpr::path_iterator BaseI = E->path_begin(); in VisitCastExpr()