Home
last modified time | relevance | path

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

/third_party/gn/src/base/
Dvalues.h279 bool RemovePath(std::initializer_list<std::string_view> path);
280 bool RemovePath(span<const std::string_view> path);
524 bool RemovePath(std::string_view path, std::unique_ptr<Value>* out_value);
526 using Value::RemovePath; // DictionaryValue::RemovePath shadows otherwise.
Dvalues.cc382 bool Value::RemovePath(std::initializer_list<std::string_view> path) { in RemovePath() function in base::Value
384 return RemovePath(make_span(path.begin(), path.size())); in RemovePath()
387 bool Value::RemovePath(span<const std::string_view> path) { in RemovePath() function in base::Value
398 bool removed = found->second->RemovePath(path.subspan(1)); in RemovePath()
1009 bool DictionaryValue::RemovePath(std::string_view path, in RemovePath() function in base::DictionaryValue
1021 result = subdict->RemovePath(path.substr(delimiter_position + 1), out_value); in RemovePath()
/third_party/protobuf/src/google/protobuf/util/
Dfield_mask_util.cc205 void RemovePath(const std::string& path, const Descriptor* descriptor);
352 void FieldMaskTree::RemovePath(const std::string& path, in RemovePath() function in google::protobuf::util::__anone0686c540111::FieldMaskTree
662 tree.RemovePath(mask2.paths(i), descriptor); in Subtract()