/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/ |
D | descriptor.cc | 591 { "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 …]
|
D | message.cc | 2565 {"Extensions", (getter)GetExtensionDict, NULL, "Extension dict"}, in CheckAndGetInteger()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
D | GPBDescriptor.h | 63 @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;
|
D | GPBMessage.h | 79 @property(nonatomic, readonly, getter=isInitialized) BOOL initialized;
|
/frameworks/base/services/robotests/backup/src/com/android/server/backup/testing/ |
D | BackupManagerServiceTestUtils.java | 130 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/ |
D | InspectablePropertyProcessor.java | 191 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/ |
D | AnimatableProperty.java | 47 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/ |
D | python_message.py | 611 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/ |
D | MessageNanoPrinter.java | 164 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/ |
D | InspectionCompanionGeneratorTest.java | 150 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/ |
D | C2SampleComponent_test.cpp | 222 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/ |
D | parcel.cpp | 167 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/ |
D | MessageLiteToString.java | 90 for (String getter : getters) { in reflectivePrintWithIndent() 91 String suffix = getter.replaceFirst("get", ""); in reflectivePrintWithIndent()
|
/frameworks/base/libs/hwui/ |
D | Animator.cpp | 312 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/ |
D | binder_parcel.h | 515 AParcel_stringArrayElementGetter getter) 843 AParcel_boolArrayGetter getter) __INTRODUCED_IN(29);
|
/frameworks/av/media/codec2/vndk/util/ |
D | C2InterfaceHelper.cpp | 194 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/ |
D | README.txt | 17 used. If the caller is on the same thread then a getter
|
/frameworks/compile/slang/ |
D | README.rst | 194 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/ |
D | C2InterfaceHelper.h | 361 void setGetter(std::function<std::shared_ptr<C2Param>(bool)> getter);
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/ |
D | README.md | 82 - 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/ |
D | unittest_objc.proto | 91 optional bool getter = 16; field
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserActivity.java | 2407 ResolveInfoPresentationGetter getter = makePresentationGetter(ri); 2409 getter.getLabel(), getter.getSubLabel(), ii));
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ |
D | CHANGES.txt | 380 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/ |
D | DevicePolicyManagerService.java | 4716 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/ |
D | Doxyfile | 242 # For Microsoft's IDL there are propget and propput attributes to indicate getter
|