Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/ext/filters/client_channel/
Duri_parser.cc194 size_t path_begin = NOT_SET; in grpc_uri_parse() local
236 path_begin = authority_end; in grpc_uri_parse()
238 path_begin = scheme_end + 1; in grpc_uri_parse()
241 for (i = path_begin; uri_text[i] != 0; i++) { in grpc_uri_parse()
279 uri->path = decode_and_copy_component(uri_text, path_begin, path_end); in grpc_uri_parse()
/external/protobuf/src/google/protobuf/compiler/
Dparser_unittest.cc2017 const int* path_begin, const int* path_end, in FollowPath() argument
2021 if (path_begin == path_end) { in FollowPath()
2032 const FieldDescriptor* field = descriptor->FindFieldByNumber(*path_begin); in FollowPath()
2036 << *path_begin; in FollowPath()
2040 ++path_begin; in FollowPath()
2043 if (path_begin == path_end) { in FollowPath()
2051 int index = *path_begin++; in FollowPath()
2064 return FollowPath(child, path_begin, path_end, in FollowPath()
2066 } else if (path_begin == path_end) { in FollowPath()
2080 return FollowPath(child, path_begin, path_end, in FollowPath()
[all …]
/external/clang/lib/CodeGen/
DCGCXXABI.cpp279 E->path_begin(), in getMemberPointerAdjustment()
DCGExpr.cpp457 Adjustment.DerivedToBase.BasePath->path_begin(), in EmitMaterializeTemporaryExpr()
875 CE->path_begin(), CE->path_end(), in EmitPointerWithAlignment()
3643 This, DerivedClassDecl, E->path_begin(), E->path_end(), in EmitCastLValue()
3659 E->path_begin(), E->path_end(), in EmitCastLValue()
DMicrosoftCXXABI.cpp3032 SrcTy, DstTy, E->getCastKind(), E->path_begin(), E->path_end(), Src, in EmitMemberPointerConversion()
3196 return EmitMemberPointerConversion(SrcTy, DstTy, CK, E->path_begin(), in EmitMemberPointerConversion()
DCGExprScalar.cpp1416 CE->path_begin(), CE->path_end(), in VisitCastExpr()
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp243 for (CastExpr::path_const_iterator I = Cast->path_begin(), in evalDerivedToBase()
/external/clang/include/clang/AST/
DExpr.h2700 path_iterator path_begin() { return path_buffer(); } in path_begin() function
2702 path_const_iterator path_begin() const { return path_buffer(); } in path_begin() function
/external/clang/lib/AST/
DExprConstant.cpp2000 for (CastExpr::path_const_iterator PathI = E->path_begin(), in HandleLValueBasePath()
5373 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); in VisitCastExpr()
5389 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
5540 for (CastExpr::path_const_iterator PathI = E->path_begin(), in VisitCastExpr()
DASTDumper.cpp1892 for (CastExpr::path_const_iterator I = Node->path_begin(), in dumpBasePath()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp638 PI = E->path_begin(), PE = E->path_end(); PI != PE; ++PI) in VisitCastExpr()
DASTReaderStmt.cpp673 CastExpr::path_iterator BaseI = E->path_begin(); in VisitCastExpr()