Searched refs:new_value (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h65 int SetIntValue(Value* value, int new_value);
66 int SetFloatValue(Value* value, float new_value);
67 int SetStringValue(Value* value, const char* new_value);
H A Dvalue.cpp64 int SetPODValue(Value* value, POD new_value) { argument
71 *reinterpret_cast<POD*>(value->value) = new_value;
202 int SetIntValue(Value* value, int new_value) { argument
203 return SetPODValue<int, INT_VALUE_TYPE>(value, new_value);
206 int SetFloatValue(Value* value, float new_value) { argument
207 return SetPODValue<float, FLOAT_VALUE_TYPE>(value, new_value);
210 int SetStringValue(Value* value, const char* new_value) { argument
211 return SetPtrValue<char, STRING_VALUE_TYPE>(value, new_value, strlen(new_value) + 1);
/frameworks/base/tools/aapt2/optimize/
H A DVersionCollapser.cpp128 std::unique_ptr<ResourceConfigValue> new_value = local
132 new_value->value = std::move(config_value->value);
133 config_value = std::move(new_value);
/frameworks/rs/tests/lldb/tests/testcases/
H A Dtest_write_global.py36 def _try_modifying_global(self, global_name, new_value, data_type_in,
46 new_value: A string that is the new value of the global.
60 (global_name, data_type_in, new_value),
H A Dtest_write_local.py35 def _try_modifying_local(self, local_name, new_value, data_type_in,
45 new_value: A string that is the new value of the local.
60 % (local_name, data_type_in, new_value),
H A Dtest_write_global_element.py48 def _try_modifying_global(self, global_name, new_value, expected_output,
58 new_value: A string that is the new value of the global.
69 self.try_command('expr %s = %s' % (global_name, new_value),
H A Dtest_write_local_element.py47 def _try_modifying_local(self, local_name, new_value, expected_output,
57 new_value: A string that is the new value of the local.
68 self.try_command('expr %s = %s' % (local_name, new_value),
/frameworks/base/tools/aapt2/link/
H A DManifestFixer.cpp352 if (Maybe<std::string> new_value = util::GetFullyQualifiedClassName(package_, attr.value)) {
353 attr.value = std::move(new_value.value());
/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_android.py592 def push_prop(self, name, new_value):
599 new_value: Desired new value for the property [string or integer].
602 self._set_prop(name, new_value)
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp479 char new_value[] = { local
481 pValue.setStringValue(std::string(new_value, sizeof(new_value)));
/frameworks/native/cmds/installd/
H A Ddexopt.cpp1022 void reset(int new_value) { argument
1030 value_ = new_value;
1033 void reset(int new_value, std::function<void ()> new_cleanup) { argument
1041 value_ = new_value;

Completed in 195 milliseconds