/third_party/gn/src/gn/ |
H A D | desc_builder.cc | 179 res.SetKey(v.first, ToBaseValue(v.second)); in ToBaseValue() 246 res->SetKey( in BuildDescription() 330 res->SetKey( in BuildDescription() 333 res->SetKey( in BuildDescription() 346 res->SetKey(variables::kRustCrateName, in BuildDescription() 358 res->SetKey(variables::kSwiftModuleName, in BuildDescription() 368 metadata.SetKey(v.first, ToBaseValue(v.second)); in BuildDescription() 369 res->SetKey(variables::kMetadata, std::move(metadata)); in BuildDescription() 377 res->SetKey(variables::kTestonly, base::Value(target_->testonly())); in BuildDescription() 381 res->SetKey(variable in BuildDescription() [all...] |
H A D | command_args.cc | 171 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("commen in BuildArgJson() [all...] |
H A D | parse_tree.cc | 98 loc.SetKey(kJsonLocationBeginLine, in AddLocationJSONNodes() 100 loc.SetKey(kJsonLocationBeginColumn, in AddLocationJSONNodes() 102 loc.SetKey(kJsonLocationEndLine, base::Value(location.end().line_number())); in AddLocationJSONNodes() 103 loc.SetKey(kJsonLocationEndColumn, in AddLocationJSONNodes() 105 dict->SetKey(kJsonLocation, std::move(loc)); in AddLocationJSONNodes() 216 dict.SetKey(kJsonNodeType, base::Value(type)); in CreateJSONNode() 226 dict.SetKey(kJsonNodeType, base::Value(type)); in CreateJSONNode() 227 dict.SetKey(kJsonNodeValue, base::Value(value)); in CreateJSONNode() 239 out_value->SetKey(kJsonBeforeComment, std::move(comment_values)); in AddCommentsJSONNodes() 245 out_value->SetKey(kJsonSuffixCommen in AddCommentsJSONNodes() [all...] |
H A D | json_project_writer.cc | 417 tool_info.SetKey(key, base::Value{value}); in GenerateJSON() 426 tool_info.SetKey(key, std::move(values)); in GenerateJSON() 448 toolchain.SetKey(tool_kv.first, std::move(tool_info)); in GenerateJSON()
|
/third_party/openssl/test/ |
H A D | rsa_test.c | 32 #define SetKey \ macro 94 SetKey; in key1() 139 SetKey; in key2() 211 SetKey; in key3()
|
/third_party/node/deps/v8/tools/v8windbg/src/ |
H A D | js-stack.cc | 173 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()
|
H A D | local-variables.cc | 115 result->SetKey(L"memory interpreted as Objects", array.Get(), nullptr)); 121 result->SetKey(reinterpret_cast<const wchar_t*>(prop.name.c_str()),
|
H A D | v8windbg-extension.cc | 259 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()
|
H A D | object-inspection.h | 225 IFACEMETHOD(SetKey)
|
/third_party/node/deps/v8/src/objects/ |
H A D | transitions.cc | 118 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); 759 SetKey(j + 1, key);
|
H A D | descriptor-array-inl.h | 120 void DescriptorArray::SetKey(InternalIndex descriptor_number, Name key) { in SetKey() function in v8::internal::DescriptorArray 209 SetKey(descriptor_number, key); in Set()
|
H A D | descriptor-array.h | 226 inline void SetKey(InternalIndex descriptor_number, Name key);
|
H A D | swiss-name-dictionary-inl.h | 270 void SwissNameDictionary::SetKey(int entry, Object key) { in SetKey() function in v8::internal::SwissNameDictionary 547 SetKey(target, key); in AddInternal()
|
H A D | swiss-name-dictionary.h | 279 inline void SetKey(int entry, Object key);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | PassManager.h | 91 /// Windows. Otherwise, the address of SetKey will not be stable. 94 static AnalysisSetKey *ID() { return &SetKey; } in ID() 97 static AnalysisSetKey SetKey; member in llvm::AllAnalysesOn 100 template <typename IRUnitT> AnalysisSetKey AllAnalysesOn<IRUnitT>::SetKey; member in llvm::AllAnalysesOn 117 static AnalysisSetKey *ID() { return &SetKey; } in ID() 120 static AnalysisSetKey SetKey; member in llvm::CFGAnalyses
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | PassManager.cpp | 93 AnalysisSetKey CFGAnalyses::SetKey;
|
/third_party/gn/src/base/ |
H A D | values.h | 74 // dict.SetKey("mykey", base::Value(foo)); 187 // |SetKey| looks up |key| in the underlying dictionary and sets the mapped 193 // SetKey("foo", std::move(myvalue)); 194 Value* SetKey(std::string_view key, Value value); 196 Value* SetKey(std::string&& key, Value value); 198 Value* SetKey(const char* key, Value value); 261 // Note: If there is only one component in the path, use SetKey() instead. 429 // DEPRECATED, use Value::SetKey(key, value) instead.
|
H A D | values.cc | 273 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() 348 DCHECK_GE(path.size(), 2u) << "Use SetKey() for a path of length 1."; in SetPath() 379 return cur->SetKey(*cur_path, std::move(value)); in SetPath() 695 current_dictionary->SetKey(key, Value(Type::DICTIONARY)); 1051 SetKey(it.key(), merge_value->Clone());
|
/third_party/lzma/CPP/7zip/Crypto/ |
H A D | MyAes.cpp | 58 Z7_COM7F_IMF(CAesCoder::SetKey(const Byte *data, UInt32 size))
in SetKey() function 74 /* we allow SetInitVector() call before SetKey() call.
in SetInitVector()
|
H A D | 7zAes.cpp | 305 RINOK(cp->SetKey(_key.Key, kKeySize))
in Init()
|
/third_party/node/src/crypto/ |
H A D | crypto_dh.h | 54 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args,
|
H A D | crypto_dh.cc | 446 void DiffieHellman::SetKey(const FunctionCallbackInfo<Value>& args, in SetKey() function in node::crypto::DiffieHellman 461 SetKey(args, in SetPublicKey() 467 SetKey(args, in SetPrivateKey()
|
H A D | crypto_context.h | 88 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args);
|
/third_party/lzma/CPP/7zip/Common/ |
H A D | FilterCoder.cpp | 543 Z7_COM7F_IMF(CFilterCoder::SetKey(const Byte *data, UInt32 size))
in SetKey() function 544 { return _cryptoProperties->SetKey(data, size); }
in SetKey()
|
/third_party/lzma/CPP/7zip/ |
H A D | ICoder.h | 377 x(SetKey(const Byte *data, UInt32 size)) \
|