/external/libchrome/components/policy/core/common/ |
D | registry_dict_unittest.cc | 76 test_dict.SetKey("two", std::move(subdict)); in TEST() 84 test_dict.SetKey("four", std::move(subdict)); in TEST() 104 test_dict.SetKey("One", std::make_unique<RegistryDict>()); in TEST() 116 test_dict.SetKey("ONE", std::move(subdict)); in TEST() 138 dict_a.SetKey("three", std::move(subdict)); in TEST() 143 dict_b.SetKey("three", std::move(subdict)); in TEST() 146 dict_b.SetKey("six", std::move(subdict)); in TEST() 168 dict_a.SetKey("two", std::make_unique<RegistryDict>()); in TEST() 194 test_dict.SetKey("three", std::move(subdict)); in TEST() 197 test_dict.SetKey("dict-to-list", std::move(list)); in TEST() [all …]
|
D | registry_dict.h | 58 void SetKey(const std::string& name, std::unique_ptr<RegistryDict> dict);
|
D | registry_dict.cc | 168 void RegistryDict::SetKey(const std::string& name, in SetKey() function in policy::RegistryDict 294 SetKey(name, std::move(subdict)); in ReadRegistry()
|
/external/libchrome/base/json/ |
D | json_writer_unittest.cc | 94 period_dict.SetKey("a.b", base::Value(3)); in TEST() 95 period_dict.SetKey("c", base::Value(2)); in TEST() 97 period_dict2->SetKey("g.h.i.j", base::Value(1)); in TEST() 104 period_dict3.SetKey("a.b", base::Value(1)); in TEST()
|
/external/boringssl/src/util/fipstools/acvp/modulewrapper/ |
D | modulewrapper.cc | 179 template <int (*SetKey)(const uint8_t *key, unsigned bits, AES_KEY *out), 183 if (SetKey(args[0].data(), args[0].size() * 8, &key) != 0) { in AES() 198 template <int (*SetKey)(const uint8_t *key, unsigned bits, AES_KEY *out), 202 if (SetKey(args[0].data(), args[0].size() * 8, &key) != 0) { in AES_CBC()
|
/external/libchrome/base/ |
D | values_unittest.cc | 577 TEST(ValuesTest, SetKey) { in TEST() argument 589 dict.SetKey(StringPiece("null"), Value(Value::Type::NONE)); in TEST() 590 dict.SetKey(StringPiece("bool"), Value(Value::Type::BOOLEAN)); in TEST() 591 dict.SetKey(std::string("int"), Value(Value::Type::INTEGER)); in TEST() 592 dict.SetKey(std::string("double"), Value(Value::Type::DOUBLE)); in TEST() 593 dict.SetKey(std::string("string"), Value(Value::Type::STRING)); in TEST() 594 dict.SetKey("blob", Value(Value::Type::BINARY)); in TEST() 595 dict.SetKey("list", Value(Value::Type::LIST)); in TEST() 596 dict.SetKey("dict", Value(Value::Type::DICTIONARY)); in TEST() 604 foo.SetKey("bar", Value(123)); in TEST() [all …]
|
D | values.cc | 294 Value* Value::SetKey(StringPiece key, Value value) { in SetKey() function in base::Value 307 Value* Value::SetKey(std::string&& key, Value value) { in SetKey() function in base::Value 315 Value* Value::SetKey(const char* key, Value value) { in SetKey() function in base::Value 316 return SetKey(StringPiece(key), std::move(value)); in SetKey() 398 return cur->SetKey(*cur_path, std::move(value)); in SetPath() 750 current_dictionary->SetKey(key, Value(Type::DICTIONARY)); in Set() 1130 SetKey(it.key(), merge_value->Clone()); in MergeDictionary()
|
D | values.h | 202 Value* SetKey(StringPiece key, Value value); 204 Value* SetKey(std::string&& key, Value value); 206 Value* SetKey(const char* key, Value value);
|
/external/v4l2_codec2/accel/ |
D | video_frame_metadata.cc | 36 dictionary_.SetKey(ToInternalKey(key), base::Value(value)); in SetBoolean()
|
/external/v8/src/objects/ |
D | transitions.cc | 113 result->SetKey(insertion_index, *name); in Insert() 164 array.SetKey(i, array.GetKey(i - 1)); in Insert() 167 array.SetKey(insertion_index, *name); in Insert() 651 SetKey(j + 1, temp_key); in Sort() 657 SetKey(j + 1, key); in Sort()
|
D | descriptor-array-inl.h | 120 void DescriptorArray::SetKey(InternalIndex descriptor_number, Name key) { in SetKey() function 208 SetKey(descriptor_number, key); in Set()
|
D | descriptor-array.h | 222 inline void SetKey(InternalIndex descriptor_number, Name key);
|
D | transitions.h | 220 inline void SetKey(int transition_number, Name value);
|
/external/lzma/CPP/7zip/Crypto/ |
D | MyAes.h | 39 STDMETHOD(SetKey)(const Byte *data, UInt32 size);
|
D | MyAes.cpp | 42 STDMETHODIMP CAesCbcCoder::SetKey(const Byte *data, UInt32 size) in SetKey() function in NCrypto::CAesCbcCoder
|
D | 7zAes.cpp | 268 RINOK(cp->SetKey(_key.Key, kKeySize)); in Init()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | PassManager.cpp | 94 AnalysisSetKey CFGAnalyses::SetKey; member in CFGAnalyses
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | PassManager.h | 93 static AnalysisSetKey *ID() { return &SetKey; } in ID() 96 static AnalysisSetKey SetKey; 99 template <typename IRUnitT> AnalysisSetKey AllAnalysesOn<IRUnitT>::SetKey; 116 static AnalysisSetKey *ID() { return &SetKey; } in ID() 119 static AnalysisSetKey SetKey;
|
/external/lzma/CPP/7zip/Common/ |
D | FilterCoder.cpp | 388 STDMETHODIMP CFilterCoder::SetKey(const Byte *data, UInt32 size) in SetKey() function in CFilterCoder 389 { return _CryptoProperties->SetKey(data, size); } in SetKey()
|
D | FilterCoder.h | 217 STDMETHOD(SetKey)(const Byte *data, UInt32 size);
|
/external/webrtc/talk/session/media/ |
D | srtpfilter.cc | 517 return SetKey(ssrc_any_outbound, cs, key, len); in SetSend() 521 return SetKey(ssrc_any_inbound, cs, key, len); in SetRecv() 667 bool SrtpSession::SetKey(int type, int cs, const uint8_t* key, int len) { in SetKey() function in cricket::SrtpSession
|
D | srtpfilter.h | 236 bool SetKey(int type, int cs, const uint8_t* key, int len);
|
/external/lzma/CPP/7zip/ |
D | ICoder.h | 320 STDMETHOD(SetKey)(const Byte *data, UInt32 size) PURE;
|
/external/libchrome/ipc/ |
D | ipc_message_unittest.cc | 95 input.SetKey("int.with.dot", base::Value(43)); in TEST()
|
/external/tensorflow/tensorflow/core/platform/s3/ |
D | s3_file_system.cc | 629 copyObjectRequest.SetKey(target_key); in RenameFile() 640 deleteObjectRequest.SetKey(src_key.c_str()); in RenameFile()
|