Home
last modified time | relevance | path

Searched refs:SetKey (Results 1 – 25 of 45) sorted by relevance

12

/third_party/gn/src/gn/
Dcommand_args.cc171 dict.SetKey("name", base::Value(name)); in BuildArgJson()
176 override_dict.SetKey("value", in BuildArgJson()
183 override_dict.SetKey("file", base::Value(location)); in BuildArgJson()
184 override_dict.SetKey("line", base::Value(line_no)); in BuildArgJson()
186 dict.SetKey("current", std::move(override_dict)); in BuildArgJson()
192 default_dict.SetKey("value", base::Value(arg.default_value.ToString(true))); in BuildArgJson()
198 default_dict.SetKey("file", base::Value(location)); in BuildArgJson()
199 default_dict.SetKey("line", base::Value(line_no)); in BuildArgJson()
201 dict.SetKey("default", std::move(default_dict)); in BuildArgJson()
203 dict.SetKey("comment", base::Value(comment)); in BuildArgJson()
Ddesc_builder.cc178 res.SetKey(v.first, ToBaseValue(v.second)); in ToBaseValue()
245 res->SetKey( in BuildDescription()
328 res->SetKey( in BuildDescription()
331 res->SetKey( in BuildDescription()
344 res->SetKey(variables::kRustCrateName, in BuildDescription()
356 res->SetKey(variables::kSwiftModuleName, in BuildDescription()
366 metadata.SetKey(v.first, ToBaseValue(v.second)); in BuildDescription()
367 res->SetKey(variables::kMetadata, std::move(metadata)); in BuildDescription()
375 res->SetKey(variables::kTestonly, base::Value(target_->testonly())); in BuildDescription()
379 res->SetKey(variables::kCheckIncludes, in BuildDescription()
[all …]
Dparse_tree.cc99 loc.SetKey(kJsonLocationBeginLine, in AddLocationJSONNodes()
101 loc.SetKey(kJsonLocationBeginColumn, in AddLocationJSONNodes()
103 loc.SetKey(kJsonLocationEndLine, base::Value(location.end().line_number())); in AddLocationJSONNodes()
104 loc.SetKey(kJsonLocationEndColumn, in AddLocationJSONNodes()
106 dict->SetKey(kJsonLocation, std::move(loc)); in AddLocationJSONNodes()
217 dict.SetKey(kJsonNodeType, base::Value(type)); in CreateJSONNode()
227 dict.SetKey(kJsonNodeType, base::Value(type)); in CreateJSONNode()
228 dict.SetKey(kJsonNodeValue, base::Value(value)); in CreateJSONNode()
240 out_value->SetKey(kJsonBeforeComment, std::move(comment_values)); in AddCommentsJSONNodes()
246 out_value->SetKey(kJsonSuffixComment, std::move(comment_values)); in AddCommentsJSONNodes()
[all …]
Djson_project_writer.cc464 tool_info.SetKey(key, base::Value{value}); in GenerateJSON()
473 tool_info.SetKey(key, std::move(values)); in GenerateJSON()
495 toolchain.SetKey(tool_kv.first, std::move(tool_info)); in GenerateJSON()
/third_party/openssl/test/
Drsa_test.c32 #define SetKey \ macro
94 SetKey; in key1()
139 SetKey; in key2()
211 SetKey; in key3()
/third_party/cef/libcef/browser/extensions/value_store/
Dcef_value_store.cc67 settings->SetKey(key, value->Clone()); in Get()
84 settings.SetKey(key, value.Clone()); in Set()
105 storage_.SetKey(it.key(), it.value().Clone()); in Set()
/third_party/node/deps/v8/tools/v8windbg/src/
Djs-stack.cc173 sp_value->SetKey(L"script_name", curr_frame.script_name.Get(), in GetAt()
175 RETURN_IF_FAIL(sp_value->SetKey(L"script_source", in GetAt()
177 RETURN_IF_FAIL(sp_value->SetKey(L"function_name", in GetAt()
179 RETURN_IF_FAIL(sp_value->SetKey(L"function_character_offset", in GetAt()
Dv8windbg-extension.cc259 RETURN_IF_FAIL(sp_local_data_model_->SetKey( in Initialize()
323 sp_data_model->SetKey(property_name, sp_property_model.Get(), nullptr)); in RegisterAndAddPropertyForClass()
341 RETURN_IF_FAIL(stack_frame->SetKey(key_name, new_boxed_getter.Get(), in OverrideLocalsGetter()
385 override.parent->SetKey( in ~Extension()
Dlocal-variables.cc115 result->SetKey(L"memory interpreted as Objects", array.Get(), nullptr)); in GetValue()
121 result->SetKey(reinterpret_cast<const wchar_t*>(prop.name.c_str()), in GetValue()
/third_party/lzma/CPP/7zip/Crypto/
DMyAes.h57 STDMETHOD(SetKey)(const Byte *data, UInt32 size);
DMyAes.cpp63 STDMETHODIMP CAesCoder::SetKey(const Byte *data, UInt32 size) in SetKey() function in NCrypto::CAesCoder
D7zAes.cpp305 RINOK(cp->SetKey(_key.Key, kKeySize)); in Init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassManager.cpp93 AnalysisSetKey CFGAnalyses::SetKey; member in CFGAnalyses
/third_party/node/deps/v8/src/objects/
Dtransitions.cc118 result->SetKey(insertion_index, *name); in Insert()
169 array.SetKey(i, array.GetKey(i - 1)); in Insert()
172 array.SetKey(insertion_index, *name); in Insert()
753 SetKey(j + 1, temp_key); in Sort()
759 SetKey(j + 1, key); in Sort()
Ddescriptor-array-inl.h120 void DescriptorArray::SetKey(InternalIndex descriptor_number, Name key) { in SetKey() function
209 SetKey(descriptor_number, key); in Set()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPassManager.h94 static AnalysisSetKey *ID() { return &SetKey; } in ID()
97 static AnalysisSetKey SetKey;
100 template <typename IRUnitT> AnalysisSetKey AllAnalysesOn<IRUnitT>::SetKey;
117 static AnalysisSetKey *ID() { return &SetKey; } in ID()
120 static AnalysisSetKey SetKey;
/third_party/lzma/CPP/7zip/Common/
DFilterCoder.cpp406 STDMETHODIMP CFilterCoder::SetKey(const Byte *data, UInt32 size) in SetKey() function in CFilterCoder
407 { return _CryptoProperties->SetKey(data, size); } in SetKey()
DFilterCoder.h187 STDMETHOD(SetKey)(const Byte *data, UInt32 size);
/third_party/gn/src/base/
Dvalues.cc273 Value* Value::SetKey(std::string_view key, Value value) { in SetKey() function in base::Value
286 Value* Value::SetKey(std::string&& key, Value value) { in SetKey() function in base::Value
294 Value* Value::SetKey(const char* key, Value value) { in SetKey() function in base::Value
295 return SetKey(std::string_view(key), std::move(value)); in SetKey()
379 return cur->SetKey(*cur_path, std::move(value)); in SetPath()
695 current_dictionary->SetKey(key, Value(Type::DICTIONARY)); in Set()
1051 SetKey(it.key(), merge_value->Clone()); in MergeDictionary()
Dvalues.h194 Value* SetKey(std::string_view key, Value value);
196 Value* SetKey(std::string&& key, Value value);
198 Value* SetKey(const char* key, Value value);
/third_party/cef/libcef/browser/devtools/
Ddevtools_controller.cc61 message.SetKey("params", params->Clone()); in ExecuteDevToolsMethod()
/third_party/node/src/crypto/
Dcrypto_dh.cc446 void DiffieHellman::SetKey(const FunctionCallbackInfo<Value>& args, in SetKey() function in node::crypto::DiffieHellman
461 SetKey(args, in SetPublicKey()
467 SetKey(args, in SetPrivateKey()
Dcrypto_dh.h54 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args,
Dcrypto_context.h88 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args);
/third_party/lzma/CPP/7zip/
DICoder.h353 STDMETHOD(SetKey)(const Byte *data, UInt32 size) PURE;

12