Lines Matching +defs:key +defs:path

264 Value* Value::FindKey(StringPiece key) {  in FindKey()
276 Value* Value::FindKeyOfType(StringPiece key, Type type) { in FindKeyOfType()
281 const Value* Value::FindKeyOfType(StringPiece key, Type type) const { in FindKeyOfType()
288 bool Value::RemoveKey(StringPiece key) { in RemoveKey()
294 Value* Value::SetKey(StringPiece key, Value value) { in SetKey()
307 Value* Value::SetKey(std::string&& key, Value value) { in SetKey()
315 Value* Value::SetKey(const char* key, Value value) { in SetKey()
319 Value* Value::FindPath(std::initializer_list<StringPiece> path) { in FindPath()
323 Value* Value::FindPath(span<const StringPiece> path) { in FindPath()
341 Value* Value::FindPathOfType(std::initializer_list<StringPiece> path, in FindPathOfType()
347 Value* Value::FindPathOfType(span<const StringPiece> path, Type type) { in FindPathOfType()
352 const Value* Value::FindPathOfType(std::initializer_list<StringPiece> path, in FindPathOfType()
358 const Value* Value::FindPathOfType(span<const StringPiece> path, in FindPathOfType()
366 Value* Value::SetPath(std::initializer_list<StringPiece> path, Value value) { in SetPath()
371 Value* Value::SetPath(span<const StringPiece> path, Value value) { in SetPath()
401 bool Value::RemovePath(std::initializer_list<StringPiece> path) { in RemovePath()
406 bool Value::RemovePath(span<const StringPiece> path) { in RemovePath()
735 Value* DictionaryValue::Set(StringPiece path, std::unique_ptr<Value> in_value) { in Set()
745 StringPiece key = current_path.substr(0, delimiter_position); in Set() local
761 Value* DictionaryValue::SetBoolean(StringPiece path, bool in_value) { in SetBoolean()
765 Value* DictionaryValue::SetInteger(StringPiece path, int in_value) { in SetInteger()
769 Value* DictionaryValue::SetDouble(StringPiece path, double in_value) { in SetDouble()
773 Value* DictionaryValue::SetString(StringPiece path, StringPiece in_value) { in SetString()
777 Value* DictionaryValue::SetString(StringPiece path, const string16& in_value) { in SetString()
782 StringPiece path, in SetDictionary()
787 ListValue* DictionaryValue::SetList(StringPiece path, in SetList()
793 StringPiece key, in SetWithoutPathExpansion()
805 bool DictionaryValue::Get(StringPiece path, in Get()
826 bool DictionaryValue::Get(StringPiece path, Value** out_value) { in Get()
832 bool DictionaryValue::GetBoolean(StringPiece path, bool* bool_value) const { in GetBoolean()
840 bool DictionaryValue::GetInteger(StringPiece path, int* out_value) const { in GetInteger()
848 bool DictionaryValue::GetDouble(StringPiece path, double* out_value) const { in GetDouble()
856 bool DictionaryValue::GetString(StringPiece path, in GetString()
865 bool DictionaryValue::GetString(StringPiece path, string16* out_value) const { in GetString()
873 bool DictionaryValue::GetStringASCII(StringPiece path, in GetStringASCII()
888 bool DictionaryValue::GetBinary(StringPiece path, in GetBinary()
901 bool DictionaryValue::GetBinary(StringPiece path, Value** out_value) { in GetBinary()
906 bool DictionaryValue::GetDictionary(StringPiece path, in GetDictionary()
919 bool DictionaryValue::GetDictionary(StringPiece path, in GetDictionary()
926 bool DictionaryValue::GetList(StringPiece path, in GetList()
939 bool DictionaryValue::GetList(StringPiece path, ListValue** out_value) { in GetList()
945 bool DictionaryValue::GetWithoutPathExpansion(StringPiece key, in GetWithoutPathExpansion()
957 bool DictionaryValue::GetWithoutPathExpansion(StringPiece key, in GetWithoutPathExpansion()
964 bool DictionaryValue::GetBooleanWithoutPathExpansion(StringPiece key, in GetBooleanWithoutPathExpansion()
973 bool DictionaryValue::GetIntegerWithoutPathExpansion(StringPiece key, in GetIntegerWithoutPathExpansion()
982 bool DictionaryValue::GetDoubleWithoutPathExpansion(StringPiece key, in GetDoubleWithoutPathExpansion()
992 StringPiece key, in GetStringWithoutPathExpansion()
1001 bool DictionaryValue::GetStringWithoutPathExpansion(StringPiece key, in GetStringWithoutPathExpansion()
1011 StringPiece key, in GetDictionaryWithoutPathExpansion()
1025 StringPiece key, in GetDictionaryWithoutPathExpansion()
1035 StringPiece key, in GetListWithoutPathExpansion()
1048 bool DictionaryValue::GetListWithoutPathExpansion(StringPiece key, in GetListWithoutPathExpansion()
1056 bool DictionaryValue::Remove(StringPiece path, in Remove()
1074 StringPiece key, in RemoveWithoutPathExpansion()
1087 bool DictionaryValue::RemovePath(StringPiece path, in RemovePath()