Home
last modified time | relevance | path

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

/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()
Danalyzer.cc91 dict.SetKey(key, base::Value(value)); in WriteString()
/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/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/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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassManager.cpp93 AnalysisSetKey CFGAnalyses::SetKey; member in CFGAnalyses
/third_party/cef/libcef/browser/devtools/
Ddevtools_controller.cc61 message.SetKey("params", params->Clone()); in ExecuteDevToolsMethod()
Ddevtools_file_manager.cc148 files_map->SetKey(base::MD5String(url), base::FilePathToValue(path)); in SaveAsFileSelected()
Ddevtools_frontend.cc500 update.Get()->SetKey(*name, std::move(params[1])); in HandleMessageFromDevToolsFrontend()
/third_party/node/src/
Dnode_crypto.h129 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args);
804 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args,
Dnode_crypto.cc482 env->SetProtoMethod(t, "setKey", SetKey); in Initialize()
719 void SecureContext::SetKey(const FunctionCallbackInfo<Value>& args) { in SetKey() function in node::crypto::SecureContext
5483 void DiffieHellman::SetKey(const FunctionCallbackInfo<Value>& args, in SetKey() function in node::crypto::DiffieHellman
5507 SetKey(args, in SetPublicKey()
5513 SetKey(args, in SetPrivateKey()
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md1318 * crypto: fix error reporting in SetKey() (Fedor Indutny)