Home
last modified time | relevance | path

Searched refs:FindPath (Results 1 – 25 of 60) sorted by relevance

123

/external/libchrome/base/
Dvalues.h236 Value* FindPath(std::initializer_list<StringPiece> path);
237 Value* FindPath(span<const StringPiece> path);
238 const Value* FindPath(std::initializer_list<StringPiece> path) const;
239 const Value* FindPath(span<const StringPiece> path) const;
Dvalues.cc319 Value* Value::FindPath(std::initializer_list<StringPiece> path) { in FindPath() function in base::Value
320 return const_cast<Value*>(const_cast<const Value*>(this)->FindPath(path)); in FindPath()
323 Value* Value::FindPath(span<const StringPiece> path) { in FindPath() function in base::Value
324 return const_cast<Value*>(const_cast<const Value*>(this)->FindPath(path)); in FindPath()
327 const Value* Value::FindPath(std::initializer_list<StringPiece> path) const { in FindPath() function in base::Value
329 return FindPath(make_span(path.begin(), path.size())); in FindPath()
332 const Value* Value::FindPath(span<const StringPiece> path) const { in FindPath() function in base::Value
360 const Value* result = FindPath(path); in FindPathOfType()
/external/angle/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc286 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
391 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
Dgraphcycles.cc643 int GraphCycles::FindPath(GraphId idx, GraphId idy, int max_path_len, in FindPath() function in absl::synchronization_internal::GraphCycles
689 return FindPath(x, y, 0, nullptr) > 0; in IsReachable()
/external/cronet/stable/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc285 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
390 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc285 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
390 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
/external/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc285 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
390 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
Dgraphcycles.cc643 int GraphCycles::FindPath(GraphId idx, GraphId idy, int max_path_len, in FindPath() function in absl::synchronization_internal::GraphCycles
689 return FindPath(x, y, 0, nullptr) > 0; in IsReachable()
/external/openscreen/third_party/abseil/src/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc285 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
390 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
/external/cronet/tot/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.h110 int FindPath(GraphId source, GraphId dest, int max_path_len,
Dgraphcycles_test.cc285 int path_len = graph_cycles.FindPath(id[nodes[from]], id[nodes[to]], in TEST()
390 int np = g_.FindPath(Get(id_, x), Get(id_, y), ABSL_ARRAYSIZE(path), path); in Path()
/external/tensorflow/tensorflow/compiler/xla/service/graphcycles/
Dgraphcycles.h115 int FindPath(int32_t source, int32_t dest, int max_path_len,
Dgraphcycles_test.cc300 int path_len = graph_cycles.FindPath(nodes[from], nodes[to], in TEST()
401 int np = g_.FindPath(x, y, kPathSize, path); in Path()
Dgraphcycles.cc300 int GraphCycles::FindPath(int32_t x, int32_t y, int max_path_len, in FindPath() function in tensorflow::GraphCycles
341 return FindPath(x, y, 0, nullptr) > 0; in IsReachable()
/external/perfetto/src/trace_processor/importers/common/
Dclock_tracker.h235 return FindPath(clock_id, trace_time_clock_id_).valid(); in HasPathToTraceTime()
371 ClockPath FindPath(ClockId src, ClockId target);
Dclock_tracker.cc176 ClockTracker::ClockPath ClockTracker::FindPath(ClockId src, ClockId target) { in FindPath() function in perfetto::trace_processor::ClockTracker
240 ClockPath path = FindPath(src_clock_id, target_clock_id); in ConvertSlowpath()
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Protocol/
DAcpiSystemDescriptionTable.h258 EFI_ACPI_FIND_PATH FindPath; member
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Protocol/
DAcpiSystemDescriptionTable.h258 EFI_ACPI_FIND_PATH FindPath; member
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Protocol/
DAcpiSystemDescriptionTable.h258 EFI_ACPI_FIND_PATH FindPath; member
/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Protocol/
DAcpiSystemDescriptionTable.h261 EFI_ACPI_FIND_PATH FindPath; member

123