Home
last modified time | relevance | path

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

/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()
Dvalues_unittest.cc601 TEST(ValuesTest, FindPath) { in TEST() argument
610 Value* found = root.FindPath(std::vector<StringPiece>{}); in TEST()
614 found = root.FindPath(std::vector<StringPiece>{"foo", "notfound"}); in TEST()
618 found = root.FindPath(std::vector<StringPiece>{"foo", "bar"}); in TEST()
688 EXPECT_TRUE(root.FindPath({"one", "two"})); in TEST()
689 EXPECT_TRUE(root.FindPath({"one", "two", "four"})); in TEST()
/external/tensorflow/tensorflow/compiler/jit/graphcycles/
Dgraphcycles.h114 int FindPath(int32 source, int32 dest, int max_path_len, int32 path[]) const;
Dgraphcycles.cc294 int GraphCycles::FindPath(int32 x, int32 y, int max_path_len, in FindPath() function in tensorflow::GraphCycles
335 return FindPath(x, y, 0, nullptr) > 0; in IsReachable()
Dgraphcycles_test.cc303 int path_len = graph_cycles.FindPath(nodes[from], nodes[to], in TEST()
404 int np = g_.FindPath(x, y, kPathSize, path); in Path()
/external/tensorflow/tensorflow/compiler/jit/
Dxla_cluster_util.cc49 int32 path_size = cycles->FindPath(dst, src, max_path_size, path.data()); in DescribeCycle()