Searched defs:getter (Results 1 - 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | AnimatableProperty.java | 47 Function<T, Float> getter, int animatorTag, int startValueTag, int endValueTag) { 52 return getter.apply(object); 46 from(String name, BiConsumer<T, Float> setter, Function<T, Float> getter, int animatorTag, int startValueTag, int endValueTag) argument
|
/frameworks/base/libs/hwui/ |
H A D | Animator.cpp | 312 GetFloatProperty getter; member in struct:android::uirenderer::RenderPropertyAnimator::PropertyAccessors 340 setStartValue((mStagingTarget->stagingProperties().*mPropertyAccess->getter)()); 377 return (target->properties().*mPropertyAccess->getter)();
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
H A D | ModelClass.java | 387 * Returns the getter method or field that the name refers to. 392 * @return the getter method or field that the name refers to or null if none can be found. 500 private ModelMethod findSetter(ModelMethod getter, String originalName) { argument 503 if (originalName.equals(getter.getName())) { 505 } else if (getter.getName().startsWith("is")){ 511 List<ModelMethod> methods = findMethods(name, getter.isStatic()); 512 ModelClass param = getter.getReturnType(null); 517 method.isStatic() == getter.isStatic()) {
|
/frameworks/support/webkit/src/androidTest/java/androidx/webkit/ |
H A D | WebViewOnUiThread.java | 276 private <T> T getValue(ValueGetter<T> getter) { argument 277 InstrumentationRegistry.getInstrumentation().runOnMainSync(getter); 278 return getter.getValue();
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
H A D | DevicePolicyManagerService.java | 4437 boolean parent, Function<ActiveAdmin, Integer> getter, int minimumPasswordQuality) { 4445 return admin != null ? getter.apply(admin) : 0; 4457 final Integer adminValue = getter.apply(admin); 4436 getStrictestPasswordRequirement(ComponentName who, int userHandle, boolean parent, Function<ActiveAdmin, Integer> getter, int minimumPasswordQuality) argument
|
Completed in 108 milliseconds