Home
last modified time | relevance | path

Searched refs:FindPathOfType (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/
Dvalues.h246 Value* FindPathOfType(std::initializer_list<StringPiece> path, Type type);
247 Value* FindPathOfType(span<const StringPiece> path, Type type);
248 const Value* FindPathOfType(std::initializer_list<StringPiece> path,
250 const Value* FindPathOfType(span<const StringPiece> path, Type type) const;
Dvalues.cc341 Value* Value::FindPathOfType(std::initializer_list<StringPiece> path, in FindPathOfType() function in base::Value
344 const_cast<const Value*>(this)->FindPathOfType(path, type)); in FindPathOfType()
347 Value* Value::FindPathOfType(span<const StringPiece> path, Type type) { in FindPathOfType() function in base::Value
349 const_cast<const Value*>(this)->FindPathOfType(path, type)); in FindPathOfType()
352 const Value* Value::FindPathOfType(std::initializer_list<StringPiece> path, in FindPathOfType() function in base::Value
355 return FindPathOfType(make_span(path.begin(), path.size()), type); in FindPathOfType()
358 const Value* Value::FindPathOfType(span<const StringPiece> path, in FindPathOfType() function in base::Value
Dvalues_unittest.cc628 Value* found = root.FindPathOfType({"one", "two"}, Value::Type::INTEGER); in TEST()
634 found = root.FindPathOfType({"foo", "bar"}, Value::Type::INTEGER); in TEST()
641 found = root.FindPathOfType(std::vector<StringPiece>{"foo", "bar"}, in TEST()