Home
last modified time | relevance | path

Searched refs:getter (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/
Ddescriptor.cc591 { "name", (getter)GetName, NULL, "Last name"},
592 { "full_name", (getter)GetFullName, NULL, "Full name"},
593 { "_concrete_class", (getter)GetConcreteClass, NULL, "concrete class"},
594 { "file", (getter)GetFile, NULL, "File descriptor"},
596 { "fields", (getter)GetFieldsSeq, NULL, "Fields sequence"},
597 { "fields_by_name", (getter)GetFieldsByName, NULL, "Fields by name"},
598 { "fields_by_camelcase_name", (getter)GetFieldsByCamelcaseName, NULL,
600 { "fields_by_number", (getter)GetFieldsByNumber, NULL, "Fields by number"},
601 { "nested_types", (getter)GetNestedTypesSeq, NULL, "Nested types sequence"},
602 { "nested_types_by_name", (getter)GetNestedTypesByName, NULL,
[all …]
Dmessage.cc2565 {"Extensions", (getter)GetExtensionDict, NULL, "Extension dict"}, in CheckAndGetInteger()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/
DGPBDescriptor.h63 @property(nonatomic, readonly, getter=isWireFormat) BOOL wireFormat;
94 @property(nonatomic, readonly, getter=isRequired) BOOL required;
95 @property(nonatomic, readonly, getter=isOptional) BOOL optional;
99 @property(nonatomic, readonly, getter=isPackable) BOOL packable;
134 @property(nonatomic, readonly, getter=isRepeated) BOOL repeated;
135 @property(nonatomic, readonly, getter=isPackable) BOOL packable;
DGPBMessage.h79 @property(nonatomic, readonly, getter=isInitialized) BOOL initialized;
/frameworks/base/services/robotests/backup/src/com/android/server/backup/testing/
DBackupManagerServiceTestUtils.java130 doAnswer(backupEnabled.getter).when(backupManagerService).isBackupEnabled(); in setUpBackupManagerServiceBasics()
134 doAnswer(backupEnabled.getter).when(backupManagerService).isBackupRunning(); in setUpBackupManagerServiceBasics()
219 public Answer<T> getter; field in AccessorMock
222 private AccessorMock(Answer<T> getter, Answer<T> setter) { in AccessorMock() argument
223 this.getter = getter; in AccessorMock()
/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
DInspectablePropertyProcessor.java191 final ExecutableElement getter = ensureGetter(accessor); in buildProperty() local
194 nameFromAnnotation.orElseGet(() -> inferPropertyNameFromGetter(getter)), in buildProperty()
195 Accessor.ofGetter(getter.getSimpleName().toString()), in buildProperty()
196 determinePropertyType(getter, annotation)); in buildProperty()
594 private String inferPropertyNameFromGetter(@NonNull ExecutableElement getter) { in inferPropertyNameFromGetter() argument
595 final String name = getter.getSimpleName().toString(); in inferPropertyNameFromGetter()
599 } else if (isBoolean(getter.getReturnType()) && GETTER_IS_PREFIX.matcher(name).find()) { in inferPropertyNameFromGetter()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DAnimatableProperty.java47 Function<T, Float> getter, int animatorTag, int startValueTag, int endValueTag) { in from() argument
52 return getter.apply(object); in from()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Dpython_message.py611 def getter(self): function
625 getter.__module__ = None
626 getter.__doc__ = 'Getter for %s.' % proto_field_name
635 setattr(cls, property_name, property(getter, setter, doc=doc))
656 def getter(self): function
660 getter.__module__ = None
661 getter.__doc__ = 'Getter for %s.' % proto_field_name
691 setattr(cls, property_name, property(getter, setter, doc=doc))
710 def getter(self): function
724 getter.__module__ = None
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DMessageNanoPrinter.java164 Method getter = null; in print() local
166 getter = clazz.getMethod("get" + subfieldName); in print()
171 print(subfieldName, getter.invoke(object), indentBuf, buf); in print()
/frameworks/base/tools/processors/view_inspector/test/java/android/processor/view/inspector/
DInspectionCompanionGeneratorTest.java150 private Property addProperty(String name, String getter, Property.Type type) { in addProperty() argument
151 final Property property = new Property(name, Accessor.ofGetter(getter), type); in addProperty()
/frameworks/av/media/codec2/tests/
DC2SampleComponent_test.cpp222 struct getter { struct
241 struct getter<E, true> { argument
244 return getter<u>().get(p, (u*)0); in get() argument
261 return getter<E>().get(p, (E*)0); in get()
/frameworks/native/libs/binder/ndk/
Dparcel.cpp167 ArrayGetter<T> getter, status_t (Parcel::*write)(T)) { in WriteArray() argument
177 status = (rawParcel->*write)(getter(arrayData, i)); in WriteArray()
372 AParcel_stringArrayElementGetter getter) { in AParcel_writeStringArray() argument
381 const char* str = getter(arrayData, i, &elementLength); in AParcel_writeStringArray()
595 AParcel_boolArrayGetter getter) { in AParcel_writeBoolArray() argument
596 return WriteArray<bool>(parcel, arrayData, length, getter, &Parcel::writeBool); in AParcel_writeBoolArray()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DMessageLiteToString.java90 for (String getter : getters) { in reflectivePrintWithIndent()
91 String suffix = getter.replaceFirst("get", ""); in reflectivePrintWithIndent()
/frameworks/base/libs/hwui/
DAnimator.cpp312 GetFloatProperty getter; member
340 setStartValue((mStagingTarget->stagingProperties().*mPropertyAccess->getter)()); in onAttached()
377 return (target->properties().*mPropertyAccess->getter)(); in getValue()
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h515 AParcel_stringArrayElementGetter getter)
843 AParcel_boolArrayGetter getter) __INTRODUCED_IN(29);
/frameworks/av/media/codec2/vndk/util/
DC2InterfaceHelper.cpp194 void setGetter(std::function<std::shared_ptr<C2Param>(bool)> getter) { in setGetter() argument
195 mGetter = getter; in setGetter()
326 std::function<std::shared_ptr<C2Param>(bool)> getter) { in setGetter() argument
327 mImpl->setGetter(getter); in setGetter()
/frameworks/opt/telephony/
DREADME.txt17 used. If the caller is on the same thread then a getter
/frameworks/compile/slang/
DREADME.rst194 You can bind the struct(e.g., Point), using the setter and getter
217 // The getter of Item array, which gets the *index*-th element
/frameworks/av/media/codec2/vndk/include/util/
DC2InterfaceHelper.h361 void setGetter(std::function<std::shared_ptr<C2Param>(bool)> getter);
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/
DREADME.md82 - For optional fields only, encapsulation behind setter/getter/hazzer/
110 while the message is being modified. Field reads, getter methods
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/
Dunittest_objc.proto91 optional bool getter = 16; field
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java2407 ResolveInfoPresentationGetter getter = makePresentationGetter(ri);
2409 getter.getLabel(), getter.getSubLabel(), ii));
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/
DCHANGES.txt380 be removed in a future release. A static parser() getter is generated
571 - Message fields are present as ordinary Ruby properties (getter method
594 - For optional fields only, encapsulation behind setter/getter/hazzer/
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java4716 boolean parent, Function<ActiveAdmin, Integer> getter, int minimumPasswordQuality) { in getStrictestPasswordRequirement() argument
4724 return admin != null ? getter.apply(admin) : 0; in getStrictestPasswordRequirement()
4736 final Integer adminValue = getter.apply(admin); in getStrictestPasswordRequirement()
/frameworks/wilhelm/doc/
DDoxyfile242 # For Microsoft's IDL there are propget and propput attributes to indicate getter

12