Home
last modified time | relevance | path

Searched refs:SetValue (Results 1 - 25 of 95) sorted by relevance

1234

/third_party/lzma/CPP/Windows/
H A DRegistry.h12 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValue(LPCTSTR valueName, bool value) throw();
49 LONG SetValue(LPCTSTR valueName, LPCTSTR value) throw();
50 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
52 LONG SetValue(LPCWSTR name, LPCWSTR value);
53 // LONG SetValue(LPCWSTR name, const UString &value);
56 LONG SetValue(LPCTSTR name, const void *value, UInt32 size) throw();
H A DRegistry.cpp134 LONG CKey::SetValue(LPCTSTR name, UInt32 value) throw() in SetValue() function in NWindows::NRegistry::CKey
141 LONG CKey::SetValue(LPCTSTR name, bool value) throw() in SetValue() function in NWindows::NRegistry::CKey
143 return SetValue(name, BoolToUINT32(value)); in SetValue()
146 LONG CKey::SetValue(LPCTSTR name, LPCTSTR value) throw() in SetValue() function in NWindows::NRegistry::CKey
155 LONG CKey::SetValue(LPCTSTR name, const CSysString &value)
166 LONG CKey::SetValue(LPCWSTR name, LPCWSTR value) in SetValue() function in NWindows::NRegistry::CKey
173 return SetValue(name == 0 ? 0 : (LPCSTR)GetSystemString(name), in SetValue()
180 LONG CKey::SetValue(LPCTSTR name, const void *value, UInt32 size) throw() in SetValue() function in NWindows::NRegistry::CKey
188 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value) in SetValue() function
194 res = key.SetValue(valueNam in SetValue()
[all...]
/third_party/gn/src/gn/
H A Dscope_unittest.cc59 setup.scope()->SetValue("v", old_value, &assignment); in TEST()
61 setup.scope()->SetValue(private_var_name, old_value, &assignment); in TEST()
75 new_scope.SetValue("v", new_value, &assignment); in TEST()
101 new_scope.SetValue("v", new_value, &assignment); in TEST()
139 new_scope.SetValue("v", new_value, &assignment); in TEST()
244 setup.scope()->SetValue("on_root", Value(&assignment, "on_root"), in TEST()
249 nested1.SetValue("on_one", Value(&assignment, "on_one"), &assignment); in TEST()
252 nested2.SetValue("on_one", Value(&assignment, "on_two"), &assignment); in TEST()
253 nested2.SetValue("on_two", Value(&assignment, "on_two2"), &assignment); in TEST()
288 root_scope.SetValue(kOnCons in TEST()
[all...]
H A Dargs.cc208 scope_to_set->SetValue(toolchain_override->first,
219 scope_to_set->SetValue(override->first, override->second,
225 scope_to_set->SetValue(arg.first, arg.second, arg.second.origin());
393 dest->SetValue(variables::kHostOs, os_val, nullptr);
394 dest->SetValue(variables::kTargetOs, empty_string, nullptr);
395 dest->SetValue(variables::kCurrentOs, empty_string, nullptr);
398 dest->SetValue(variables::kHostCpu, arch_val, nullptr);
399 dest->SetValue(variables::kTargetCpu, empty_string, nullptr);
400 dest->SetValue(variables::kCurrentCpu, empty_string, nullptr);
434 scope->SetValue(va
[all...]
H A Dvalue_unittest.cc43 scope->SetValue("a", Value(nullptr, static_cast<int64_t>(42)), nullptr); in TEST()
44 scope->SetValue("b", Value(nullptr, "hello, world"), nullptr); in TEST()
50 inner_scope->SetValue("d", Value(nullptr, static_cast<int64_t>(42)), nullptr); in TEST()
51 scope->SetValue("c", inner_scopeval, nullptr); in TEST()
H A Doperators_unittest.cc104 setup.scope()->SetValue(sources, Value(nullptr, Value::LIST), nullptr); in TEST()
144 setup.scope()->SetValue(foo, Value(nullptr, Value::LIST), nullptr); in TEST()
199 setup.scope()->SetValue(var, test_list, nullptr); in TEST()
230 scope_a->SetValue("a", Value(nullptr, "foo"), nullptr); in TEST()
234 scope_b->SetValue("b", Value(nullptr, "bar"), nullptr); in TEST()
242 scope_a_other->SetValue("a", Value(nullptr, "foo"), nullptr); in TEST()
258 scope_expected->SetValue("b", Value(nullptr, "bar"), nullptr); in TEST()
337 setup.scope()->SetValue(foo, old_value, nullptr); in TEST()
361 old_value.scope_value()->SetValue(bar, Value(nullptr, "bar"), nullptr); in TEST()
362 setup.scope()->SetValue(fo in TEST()
[all...]
H A Dstring_utils_unittest.cc24 scope.SetValue("one", Value(nullptr, one), nullptr); in CheckExpansionCase()
25 scope.SetValue("onestring", Value(nullptr, "one"), nullptr); in CheckExpansionCase()
30 onescope->SetValue("one", Value(nullptr, one), nullptr); in CheckExpansionCase()
31 scope.SetValue("onescope", Value(nullptr, std::move(onescope)), nullptr); in CheckExpansionCase()
36 scope.SetValue("onelist", onelist, nullptr); in CheckExpansionCase()
H A Doutput_conversion_unittest.cc102 new_scope->SetValue("v", value, nullptr); in TEST_F()
104 new_scope->SetValue(private_var_name, value, nullptr); in TEST_F()
166 new_scope->SetValue("v", value, nullptr); in TEST_F()
168 new_scope->SetValue(private_var_name, value, nullptr); in TEST_F()
182 new_scope->SetValue("a", a_value, nullptr); in TEST_F()
184 new_scope->SetValue("b", b_value, nullptr); in TEST_F()
192 e_value_scope->SetValue("f", f_value, nullptr); in TEST_F()
195 c_scope->SetValue("e", e_value, nullptr); in TEST_F()
197 new_scope->SetValue("c", Value(nullptr, std::move(c_scope)), nullptr); in TEST_F()
H A Dfunction_foreach.cc92 scope->SetValue(loop_var, cur, function); in RunForEach()
102 scope->SetValue(loop_var, std::move(old_loop_value), in RunForEach()
H A Doperators.cc47 Value* SetValue(Value value, const ParseNode* set_node);
176 Value* ValueDestination::SetValue(Value value, const ParseNode* set_node) { in SetValue() function in __anon2949::ValueDestination
178 return scope_->SetValue(name_token_->value(), std::move(value), set_node); in SetValue()
330 dest->SetValue(std::move(right), op_node->right()); in ExecuteEquals()
444 dest->SetValue( in ExecutePlusEquals()
451 mutable_dest = dest->SetValue(*existing_value, op_node); in ExecutePlusEquals()
455 dest->SetValue( in ExecutePlusEquals()
503 dest->SetValue(ExecuteMinus(op_node, *existing_value, right, err), op_node); in ExecuteMinusEquals()
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonParser.cs249 field.Accessor.SetValue(message, value); in MergeField()
452 fields[Value.NullValueFieldNumber].Accessor.SetValue(message, 0); in MergeStructValue()
455 fields[Value.StringValueFieldNumber].Accessor.SetValue(message, firstToken.StringValue); in MergeStructValue()
458 fields[Value.NumberValueFieldNumber].Accessor.SetValue(message, firstToken.NumberValue); in MergeStructValue()
462 fields[Value.BoolValueFieldNumber].Accessor.SetValue(message, firstToken.Type == JsonToken.TokenType.True); in MergeStructValue()
470 field.Accessor.SetValue(message, structMessage); in MergeStructValue()
479 field.Accessor.SetValue(message, list); in MergeStructValue()
558 message.Descriptor.Fields[Any.TypeUrlFieldNumber].Accessor.SetValue(message, typeUrl); in MergeAny()
559 message.Descriptor.Fields[Any.ValueFieldNumber].Accessor.SetValue(message, data); in MergeAny()
868 message.Descriptor.Fields[Timestamp.SecondsFieldNumber].Accessor.SetValue(messag in MergeTimestamp()
[all...]
H A DFieldMaskTree.cs294 field.Accessor.SetValue(destination, destinationField); in Merge()
329 field.Accessor.SetValue(destination, sourceField); in Merge()
344 field.Accessor.SetValue(destination, field.MessageType.Parser.ParseFrom(sourceByteString)); in Merge()
354 field.Accessor.SetValue(destination, sourceField); in Merge()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
H A DFieldAccessTest.cs127 fields[TestAllTypes.SingleBoolFieldNumber].Accessor.SetValue(message, false); in SetValue_SingleFields()
128 fields[TestAllTypes.SingleInt32FieldNumber].Accessor.SetValue(message, 500); in SetValue_SingleFields()
129 fields[TestAllTypes.SingleStringFieldNumber].Accessor.SetValue(message, "It's a string"); in SetValue_SingleFields()
130 fields[TestAllTypes.SingleBytesFieldNumber].Accessor.SetValue(message, ByteString.CopyFrom(99, 98, 97)); in SetValue_SingleFields()
131 fields[TestAllTypes.SingleForeignEnumFieldNumber].Accessor.SetValue(message, ForeignEnum.ForeignFoo); in SetValue_SingleFields()
132 fields[TestAllTypes.SingleForeignMessageFieldNumber].Accessor.SetValue(message, new ForeignMessage { C = 12345 }); in SetValue_SingleFields()
133 fields[TestAllTypes.SingleDoubleFieldNumber].Accessor.SetValue(message, 20150701.5); in SetValue_SingleFields()
154 Assert.Throws<InvalidCastException>(() => fields[TestAllTypes.SingleBoolFieldNumber].Accessor.SetValue(message, "This isn't a bool")); in SetValue_SingleFields_WrongType()
162 Assert.Throws<InvalidOperationException>(() => fields[TestMap.MapStringStringFieldNumber].Accessor.SetValue(message, new Dictionary<string, string>())); in SetValue_MapFields()
170 Assert.Throws<InvalidOperationException>(() => fields[TestAllTypes.RepeatedDoubleFieldNumber].Accessor.SetValue(messag in SetValue_RepeatedFields()
[all...]
/third_party/node/deps/v8/src/tracing/
H A Dtraced-value.h47 void SetValue(const char* name, TracedValue* value);
48 void SetValue(const char* name, std::unique_ptr<TracedValue> value) { in SetValue() function in v8::tracing::TracedValue
49 SetValue(name, value.get()); in SetValue()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DSingleFieldAccessor.cs70 clearDelegate = message => SetValue(message, null); in SingleFieldAccessor()
116 clearDelegate = message => SetValue(message, defaultValue); in SingleFieldAccessor()
122 public override void SetValue(IMessage message, object value) => setValueDelegate(message, value); in SetValue() method in Google.Protobuf.Reflection.SingleFieldAccessor
/third_party/node/src/
H A Daliased_buffer.h80 aliased_buffer_->SetValue(index_, val); in operator =()
94 aliased_buffer_->SetValue(index_, current + val); in operator +=()
104 aliased_buffer_->SetValue(index_, current - val); in operator -=()
128 * through the GetValue/SetValue/operator[] methods
140 inline void SetValue(const size_t index, NativeT value);
148 * Effectively, a synonym for GetValue/SetValue
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DFieldAccessTest.cs213 fields[TestProtos.TestAllTypes.SingleBoolFieldNumber].Accessor.SetValue(message, false); in SetValue_SingleFields()
214 fields[TestProtos.TestAllTypes.SingleInt32FieldNumber].Accessor.SetValue(message, 500); in SetValue_SingleFields()
215 fields[TestProtos.TestAllTypes.SingleStringFieldNumber].Accessor.SetValue(message, "It's a string"); in SetValue_SingleFields()
216 fields[TestProtos.TestAllTypes.SingleBytesFieldNumber].Accessor.SetValue(message, ByteString.CopyFrom(99, 98, 97)); in SetValue_SingleFields()
217 fields[TestProtos.TestAllTypes.SingleForeignEnumFieldNumber].Accessor.SetValue(message, ForeignEnum.ForeignFoo); in SetValue_SingleFields()
218 fields[TestProtos.TestAllTypes.SingleForeignMessageFieldNumber].Accessor.SetValue(message, new ForeignMessage { C = 12345 }); in SetValue_SingleFields()
219 fields[TestProtos.TestAllTypes.SingleDoubleFieldNumber].Accessor.SetValue(message, 20150701.5); in SetValue_SingleFields()
240 Assert.Throws<InvalidCastException>(() => fields[TestProtos.TestAllTypes.SingleBoolFieldNumber].Accessor.SetValue(message, "This isn't a bool")); in SetValue_SingleFields_WrongType()
248 Assert.Throws<InvalidOperationException>(() => fields[TestMap.MapStringStringFieldNumber].Accessor.SetValue(message, new Dictionary<string, string>())); in SetValue_MapFields()
256 Assert.Throws<InvalidOperationException>(() => fields[TestProtos.TestAllTypes.RepeatedDoubleFieldNumber].Accessor.SetValue(messag in SetValue_RepeatedFields()
[all...]
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Dprotocol_core_test.cc43 void SetValue(std::string value) { value_ = std::move(value); } in SetValue() function in v8_crdtp::__anon15268::TestTypeBasic
63 obj1.SetValue("foo"); in TEST()
82 void SetValue(double value) { value_ = value; } in SetValue() function in v8_crdtp::__anon15268::TestTypeBasicDouble
173 val1->SetValue("bazzzz"); in TEST()
195 child->SetValue("child_value"); in CompositeParsingTest()
336 val1->SetValue("bazzzz"); in TEST_F()
409 val1->SetValue("bar"); in TEST()
457 val1->SetValue("bazzzz"); in TEST()
/third_party/node/test/js-native-api/test_properties/
H A Dtest_properties.c20 static napi_value SetValue(napi_env env, napi_callback_info info) { in SetValue() function
101 { "readwriteAccessor1", 0, 0, GetValue, SetValue, 0, napi_default, 0}, in Init()
102 { "readwriteAccessor2", 0, 0, GetValue, SetValue, 0, napi_writable, 0}, in Init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp41 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { in SetValue() function
96 SetValue(&I, R, SF); in visitUnaryOperator()
354 SetValue(&I, R, SF);
695 SetValue(&I, R, SF);
840 SetValue(&I, R, SF);
866 SetValue(&I, R, SF);
908 SetValue(I, Result, CallingSF);
1007 SetValue(PN, ResultValues[i], SF);
1038 SetValue(&I, Result, SF);
1087 SetValue(
[all...]
/third_party/node/deps/v8/include/v8-include/cppgc/
H A Dpersistent.h29 void SetValue(const void* value) { raw_ = value; } in SetValue() function in cppgc::internal::PersistentBase
109 other.SetValue(nullptr); in move()
149 other.SetValue(nullptr);
204 SetValue(nullptr); in Clear()
239 SetValue(ptr); in Assign()
246 SetValue(ptr); in Assign()
/third_party/node/deps/v8/include/cppgc/
H A Dpersistent.h32 void SetValue(const void* value) { raw_ = value; } in SetValue() function in cppgc::internal::PersistentBase
112 other.SetValue(nullptr); in move()
151 other.SetValue(nullptr);
204 SetValue(nullptr); in Clear()
240 SetValue(ptr); in Assign()
247 SetValue(ptr); in Assign()
/third_party/node/deps/v8/src/logging/
H A Druntime-call-stats.cc204 current_timer_.SetValue(timer); in Enter()
205 current_counter_.SetValue(counter); in Enter()
213 current_timer_.SetValue(timer->Stop()); in Leave()
215 current_counter_.SetValue(cur_timer ? cur_timer->counter() : nullptr); in Leave()
237 current_counter_.SetValue(counter); in CorrectCurrentCounterId()
270 current_timer_.SetValue(current_timer_.Value()->Stop()); in Reset()
/third_party/node/deps/v8/testing/
H A Dgmock-support.h24 void SetValue(const T& value) { in SetValue() function in testing::Capture
50 capture_->SetValue(value); in MatchAndExplain()
/third_party/node/test/js-native-api/test_constructor/
H A Dtest_constructor.c113 static napi_value SetValue(napi_env env, napi_callback_info info) { in SetValue() function
177 { "readwriteAccessor1", NULL, NULL, GetValue, SetValue, NULL, napi_default, in Init()
179 { "readwriteAccessor2", NULL, NULL, GetValue, SetValue, NULL, in Init()

Completed in 220 milliseconds

1234