Home
last modified time | relevance | path

Searched refs:new_value (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/media/mca/filterfw/native/core/
Dvalue.cpp64 int SetPODValue(Value* value, POD new_value) { in SetPODValue() argument
71 *reinterpret_cast<POD*>(value->value) = new_value; in SetPODValue()
202 int SetIntValue(Value* value, int new_value) { in SetIntValue() argument
203 return SetPODValue<int, INT_VALUE_TYPE>(value, new_value); in SetIntValue()
206 int SetFloatValue(Value* value, float new_value) { in SetFloatValue() argument
207 return SetPODValue<float, FLOAT_VALUE_TYPE>(value, new_value); in SetFloatValue()
210 int SetStringValue(Value* value, const char* new_value) { in SetStringValue() argument
211 return SetPtrValue<char, STRING_VALUE_TYPE>(value, new_value, strlen(new_value) + 1); in SetStringValue()
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);
/frameworks/base/tools/aapt2/optimize/
DVersionCollapser.cpp125 std::unique_ptr<ResourceConfigValue> new_value = in CollapseVersions() local
129 new_value->value = std::move(config_value->value); in CollapseVersions()
130 config_value = std::move(new_value); in CollapseVersions()
/frameworks/rs/tests/lldb/tests/testcases/
Dtest_write_local.py35 def _try_modifying_local(self, local_name, new_value, data_type_in, argument
60 % (local_name, data_type_in, new_value),
Dtest_write_global.py36 def _try_modifying_global(self, global_name, new_value, data_type_in, argument
60 (global_name, data_type_in, new_value),
Dtest_write_global_element.py48 def _try_modifying_global(self, global_name, new_value, expected_output, argument
69 self.try_command('expr %s = %s' % (global_name, new_value),
Dtest_write_local_element.py47 def _try_modifying_local(self, local_name, new_value, expected_output, argument
68 self.try_command('expr %s = %s' % (local_name, new_value),
/frameworks/rs/tests/lldb/tests/harness/
Dutil_android.py592 def push_prop(self, name, new_value): argument
602 self._set_prop(name, new_value)
/frameworks/compile/mclinker/lib/Target/ARM/
DARMELFAttributeData.cpp479 char new_value[] = { in encode_secondary_compatibility_attribute() local
481 pValue.setStringValue(std::string(new_value, sizeof(new_value))); in encode_secondary_compatibility_attribute()
/frameworks/base/tools/aapt2/link/
DManifestFixer.cpp437 if (Maybe<std::string> new_value = util::GetFullyQualifiedClassName(package, attr->value)) { in FullyQualifyClassName() local
438 attr->value = std::move(new_value.value()); in FullyQualifyClassName()
/frameworks/base/tools/aapt2/
DResourceTable.cpp663 ResourceConfigValue* new_value = in Clone() local
665 new_value->value.reset(config_value->value->Clone(&new_table->string_pool)); in Clone()
/frameworks/native/cmds/installd/
Ddexopt.cpp1284 void reset(int new_value) { in reset() argument
1292 value_ = new_value; in reset()
1295 void reset(int new_value, std::function<void ()> new_cleanup) { in reset() argument
1303 value_ = new_value; in reset()
/frameworks/base/cmds/statsd/src/
Datoms.proto2916 // is A,B,C and value is -B, then new_value is A,C and prev_value is A,B,C.
2918 optional string new_value = 3; field