Home
last modified time | relevance | path

Searched refs:path_component (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/
D_split_definitions_test.py55 for path_component in path_components:
56 relative_path = path.join(thus_far, path_component)
60 thus_far = path.join(thus_far, path_component)
Dbeta_python_plugin_test.py86 for path_component in path_components:
87 relative_path = path.join(thus_far, path_component)
91 thus_far = path.join(thus_far, path_component)
/external/libchrome/base/
Dvalues.cc383 const StringPiece path_component = *cur_path; in SetPath() local
384 auto found = cur->dict_.lower_bound(path_component); in SetPath()
385 if (found == cur->dict_.end() || found->first != path_component) { in SetPath()
388 found, path_component, std::make_unique<Value>(Type::DICTIONARY)); in SetPath()
/external/protobuf/src/google/protobuf/compiler/
Dparser.h231 void AddPath(int path_component);
Dparser.cc376 void Parser::LocationRecorder::AddPath(int path_component) { in AddPath() argument
377 location_->add_path(path_component); in AddPath()