Home
last modified time | relevance | path

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

/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/
Dgen_vulkan.go1112 GuestType(%[1]s* const new_value, GuestHolder& holder, bool& out_of_memory);
1113 …GuestType(%[1]s* const new_value, GuestArrayHolder& holder, const std::uint32_t* size, bool& out_o…
1114 GuestType(GuestType<%[1]s>* const& new_value);
1115 GuestType(GuestType<%[1]s>*&& new_value);
1161 GuestType(const %[1]s* const new_value, GuestHolder& holder, bool& out_of_memory);
1177 _, err = fmt.Fprintf(w, ` GuestType(GuestType<const %[1]s>* const& new_value);
1178 GuestType(GuestType<const %[1]s>*&& new_value);
1179 GuestType(GuestType<%[1]s>* const& new_value);
1180 GuestType(GuestType<%[1]s>*&& new_value);
1244 …e GuestType<%[1]s*>::GuestType(GuestType<%[1]s>* const& new_value) : value_(ToGuestAddr(new_value)…
[all …]
/frameworks/base/tools/aapt2/
DResourceValues.cpp1092 std::unique_ptr<T> CopyValueFields(std::unique_ptr<T> new_value, const T* value) { in CopyValueFields() argument
1093 new_value->SetSource(value->GetSource()); in CopyValueFields()
1094 new_value->SetComment(value->GetComment()); in CopyValueFields()
1095 return new_value; in CopyValueFields()
1111 auto new_value = std::make_unique<RawString>(pool_->MakeRef(value->value)); in TransformDerived() local
1112 return CopyValueFields(std::move(new_value), value); in TransformDerived()
1116 auto new_value = std::make_unique<String>(pool_->MakeRef(value->value)); in TransformDerived() local
1117 new_value->untranslatable_sections = value->untranslatable_sections; in TransformDerived()
1118 return CopyValueFields(std::move(new_value), value); in TransformDerived()
1122 auto new_value = std::make_unique<StyledString>(pool_->MakeRef(value->value)); in TransformDerived() local
[all …]
DResourceTable.cpp680 ResourceConfigValue* new_value = in Clone() local
682 new_value->value = config_value->value->Transform(cloner); in Clone()
/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/libs/binary_translation/runtime_primitives/include/berberis/runtime_primitives/
Dmemory_region_reservation.h68 auto new_value = cpu->reservation_value; in Store() local
71 memcpy(reinterpret_cast<char*>(&new_value) + (addr - aligned_addr), &value, sizeof(Type)); in Store()
73 return ReservationExchange(cpu, aligned_addr, cur_value, new_value, mem_order) ? 0 : 1; in Store()
/frameworks/native/include/binder/
Dunique_fd.h65 [[clang::reinitializes]] void reset(int new_value = -1) {
72 fd_ = new_value;
/frameworks/native/cmds/installd/
Dunique_file.cpp57 void UniqueFile::reset(int new_value, std::string path, CleanUpFunction new_cleanup) { in reset() argument
67 value_ = new_value; in reset()
Dunique_file.h86 void reset(int new_value, std::string path, CleanUpFunction new_cleanup = nullptr);
/frameworks/native/libs/binder/include/binder/
Dunique_fd.h65 [[clang::reinitializes]] void reset(int new_value = -1) {
72 fd_ = new_value;
/frameworks/base/tools/aapt2/optimize/
DVersionCollapser.cpp132 std::unique_ptr<ResourceConfigValue> new_value = in CollapseVersions() local
142 new_value->value = std::move(config_value->value); in CollapseVersions()
143 config_value = std::move(new_value); in CollapseVersions()
/frameworks/base/tools/aapt2/link/
DReferenceLinker.cpp420 auto new_value = ResourceParser::ParseXml(sub_tree, type_flags, reference.allow_raw, *table, in LinkReference() local
422 if (new_value == nullptr) { in LinkReference()
431 if (auto ref = ValueCast<Reference>(new_value.get())) { in LinkReference()
434 return new_value; in LinkReference()
DManifestFixer.cpp665 if (std::optional<std::string> new_value = in FullyQualifyClassName() local
667 attr->value = std::move(new_value.value()); in FullyQualifyClassName()
/frameworks/base/tools/aapt2/compile/
DPseudolocaleGenerator.cpp433 void GrammaticalGenderIfNeeded(ResourceConfigValue* original_value, ResourceConfigValue* new_value, in GrammaticalGenderIfNeeded() argument
437 GrammaticalGender(original_value, new_value, pool, entry, method, in GrammaticalGenderIfNeeded()
442 GrammaticalGender(original_value, new_value, pool, entry, method, in GrammaticalGenderIfNeeded()
447 GrammaticalGender(original_value, new_value, pool, entry, method, in GrammaticalGenderIfNeeded()
/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/core/jni/
Dcom_android_internal_os_Zygote.cpp1754 std::string new_value; in ReloadBuildJavaConstant() local
1758 auto new_value = reinterpret_cast<std::string*>(cookie); in ReloadBuildJavaConstant() local
1759 *new_value = value; in ReloadBuildJavaConstant()
1761 &new_value); in ReloadBuildJavaConstant()
1764 env->SetStaticIntField(build_class, fieldId, jint(strtol(new_value.c_str(), nullptr, 0))); in ReloadBuildJavaConstant()
1766 jstring string_val = env->NewStringUTF(new_value.c_str()); in ReloadBuildJavaConstant()
1769 auto stream = std::stringstream(new_value); in ReloadBuildJavaConstant()
1783 env->SetStaticLongField(build_class, fieldId, jlong(strtoll(new_value.c_str(), nullptr, 0))); in ReloadBuildJavaConstant()
/frameworks/base/services/core/jni/
Dcom_android_server_utils_AnrTimer.cpp79 int timer_settime(int fd, int flags, const struct itimerspec *new_value,
81 return timerfd_settime(fd, flags, new_value, old_value);
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags96 27535 notification_adjusted (key|3),(adjustment_type|3),(new_value|3)
/frameworks/base/core/api/
Dmodule-lib-current.txt111 field public static final String EXTRA_SETTING_NEW_VALUE = "new_value";
/frameworks/proto_logging/stats/
Datoms.proto4914 // is A,B,C and value is -B, then new_value is A,C and prev_value is A,B,C.
4916 optional string new_value = 3; field