/frameworks/base/media/mca/filterfw/native/core/ |
D | value.cpp | 64 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()
|
D | value.h | 65 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/ |
D | VersionCollapser.cpp | 128 std::unique_ptr<ResourceConfigValue> new_value = in CollapseVersions() local 132 new_value->value = std::move(config_value->value); in CollapseVersions() 133 config_value = std::move(new_value); in CollapseVersions()
|
/frameworks/rs/tests/lldb/tests/testcases/ |
D | test_write_local.py | 35 def _try_modifying_local(self, local_name, new_value, data_type_in, argument 60 % (local_name, data_type_in, new_value),
|
D | test_write_global.py | 36 def _try_modifying_global(self, global_name, new_value, data_type_in, argument 60 (global_name, data_type_in, new_value),
|
D | test_write_global_element.py | 48 def _try_modifying_global(self, global_name, new_value, expected_output, argument 69 self.try_command('expr %s = %s' % (global_name, new_value),
|
D | test_write_local_element.py | 47 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/ |
D | util_android.py | 592 def push_prop(self, name, new_value): argument 602 self._set_prop(name, new_value)
|
/frameworks/base/tools/aapt2/link/ |
D | ManifestFixer.cpp | 358 if (Maybe<std::string> new_value = util::GetFullyQualifiedClassName(package_, attr.value)) { in Visit() local 359 attr.value = std::move(new_value.value()); in Visit()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMELFAttributeData.cpp | 479 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/native/cmds/installd/ |
D | dexopt.cpp | 1098 void reset(int new_value) { in reset() argument 1106 value_ = new_value; in reset() 1109 void reset(int new_value, std::function<void ()> new_cleanup) { in reset() argument 1117 value_ = new_value; in reset()
|