/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/ |
Observable.java | 56 * @param propertyId The BR identifier of the property that has changed. The getter 59 public abstract void onPropertyChanged(Observable sender, int propertyId);
|
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/ |
PropertyChangeRegistry.java | 40 * @param propertyId The BR id of the property that has changed or BR._all if the entire 43 public void notifyChange(Observable observable, int propertyId) { 44 notifyCallbacks(observable, propertyId, null);
|
ViewDataBinding.java | [all...] |
/packages/services/Car/car-lib/src/android/car/hardware/ |
CarPropertyValue.java | 39 public CarPropertyValue(int propertyId, T value) { 40 this(propertyId, 0, value); 43 public CarPropertyValue(int propertyId, int areaId, T value) { 44 mPropertyId = propertyId;
|
CarPropertyConfig.java | 45 private CarPropertyConfig(Class<T> type, int propertyId, int areaType, 47 mPropertyId = propertyId; 222 public static <T> Builder<T> newBuilder(Class<T> clazz, int propertyId, int areaType, 224 return new Builder<>(clazz, propertyId, areaType, areaCapacity); 228 public static <T> Builder<T> newBuilder(Class<T> clazz, int propertyId, int areaType) { 229 return newBuilder(clazz, propertyId, areaType, 0); 238 private Builder(Class<T> type, int propertyId, int areaType, int areaCapacity) { 240 mPropertyId = propertyId;
|
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/ |
EventIdsTest.java | 118 public void onPropertyChanged(Observable observable, int propertyId) { 119 mCounter.put(propertyId, get(propertyId) + 1); 122 public int get(int propertyId) { 123 Integer val = mCounter.get(propertyId); 127 private void assertProperty(int propertyId, int value) { 128 assertEquals(get(propertyId), value);
|
/frameworks/base/libs/hwui/ |
PropertyValuesHolder.h | 90 GroupPropertyValuesHolder(VectorDrawable::Group* ptr, int propertyId, float startValue, 94 , mPropertyId(propertyId) { 105 FullPathColorPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, 109 , mPropertyId(propertyId) { 121 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, 125 , mPropertyId(propertyId) {
|
VectorDrawable.cpp | 272 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { 273 Property currentProperty = static_cast<Property>(propertyId); 280 " with id: %d", propertyId); 284 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { 285 Property property = static_cast<Property>(propertyId); 306 LOG_ALWAYS_FATAL("Invalid property id: %d for animation", propertyId); 398 float Group::GroupProperties::getPropertyValue(int propertyId) const { 399 Property currentProperty = static_cast<Property>(propertyId); 416 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId); 422 void Group::GroupProperties::setPropertyValue(int propertyId, float value) [all...] |
VectorDrawable.h | 331 void setColorPropertyValue(int propertyId, int32_t value); 332 void setPropertyValue(int propertyId, float value); 479 void setPropertyValue(int propertyId, float value); 480 float getPropertyValue(int propertyId) const; 482 static bool isValidProperty(int propertyId); 518 static bool isValidProperty(int propertyId);
|
/packages/services/Car/service/src/com/android/car/hal/ |
CarPropertyUtils.java | 60 VehiclePropValue halValue, int propertyId) { 64 return new CarPropertyValue<>(propertyId, areaId, halValue.getInt32Values(0) == 1); 66 return new CarPropertyValue<>(propertyId, areaId, halValue.getStringValue()); 68 return new CarPropertyValue<>(propertyId, areaId, halValue.getInt64Value()); 71 return new CarPropertyValue<>(propertyId, areaId, 126 static CarPropertyConfig<?> toCarPropertyConfig(VehiclePropConfig p, int propertyId) { 136 .newBuilder(clazz, propertyId, areaType, /* capacity */ 1) 152 .newBuilder(clazz, propertyId, areaType, /* capacity */ mins.size());
|
/frameworks/base/core/jni/ |
android_graphics_drawable_AnimatedVectorDrawable.cpp | 106 static jlong createGroupPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, 109 GroupPropertyValuesHolder* newHolder = new GroupPropertyValuesHolder(group, propertyId, 124 static jlong createPathColorPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, 128 propertyId, startValue, endValue); 132 static jlong createPathPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, 136 propertyId, startValue, endValue);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
AnimatedVectorDrawable_Delegate.java | 84 /*package*/ static long nCreateGroupPropertyHolder(long nativePtr, int propertyId, 87 Consumer<Float> setter = group.getPropertySetter(propertyId); 102 /*package*/ static long nCreatePathColorPropertyHolder(long nativePtr, int propertyId, 105 Consumer<Integer> setter = path.getIntPropertySetter(propertyId); 112 /*package*/ static long nCreatePathPropertyHolder(long nativePtr, int propertyId, 115 Consumer<Float> setter = path.getFloatPropertySetter(propertyId);
|
/external/opencv3/modules/videoio/src/ |
cap_gphoto2.cpp | 90 * camera setting ID as propertyId. (If you want to get camera setting 182 CameraWidget * getGenericProperty(int propertyId, double & output) const; 183 CameraWidget * setGenericProperty(int propertyId, double value, 509 CameraWidget * DigitalCameraCapture::getGenericProperty(int propertyId, 512 switch (propertyId) 591 double DigitalCameraCapture::getProperty(int propertyId) const 595 if (propertyId < 0) 597 widget = getWidget(-propertyId); 601 switch (propertyId) 622 widget = getGenericProperty(propertyId, output) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
uiautomationcore.h | 48 typedef int PROPERTYID; 75 PROPERTYID propertyId, 113 PROPERTYID propertyId, 135 #define IRawElementProviderSimple_GetPropertyValue(This,propertyId,pRetVal) (This)->lpVtbl->GetPropertyValue(This,propertyId,pRetVal) 155 static FORCEINLINE HRESULT IRawElementProviderSimple_GetPropertyValue(IRawElementProviderSimple* This,PROPERTYID propertyId,VARIANT *pRetVal) { 156 return This->lpVtbl->GetPropertyValue(This,propertyId,pRetVal) [all...] |
/packages/services/Car/car-lib/src/android/car/hardware/hvac/ |
CarHvacManager.java | 127 void onErrorEvent(final int propertyId, final int zone); 188 public static boolean isZonedProperty(int propertyId) { 189 return propertyId > HvacPropertyId.MAX_GLOBAL_PROPERTY_ID;
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
AnimatedVectorDrawable.java | [all...] |
/packages/services/Car/tests/carservice_test/src/com/android/car/test/ |
CarHvacManagerTest.java | 226 public void onErrorEvent(final int propertyId, final int zone) { 227 Log.d(TAG, "Error: propertyId=" + propertyId + " zone=" + zone);
|
/prebuilts/tools/common/m2/repository/nekohtml/nekohtml/1.9.6.2/ |
nekohtml-1.9.6.2.jar | |
/prebuilts/tools/common/m2/repository/net/sourceforge/nekohtml/nekohtml/1.9.16/ |
nekohtml-1.9.16.jar | |
/prebuilts/tools/common/m2/repository/net/sourceforge/nekohtml/nekohtml/1.9.20/ |
nekohtml-1.9.20.jar | |
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/ |
HvacTestFragment.java | 130 public void onErrorEvent(final int propertyId, final int zone) { 131 Log.w(TAG, "Error: propertyId=0x" + toHexString(propertyId) 192 Log.w(TAG, "propertyId " + propId + " is not handled");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/ |
CommonXmlEditor.java | 454 public void firePropertyChange(int propertyId) { 455 super.firePropertyChange(propertyId);
|
/external/libdrm/ |
xf86drmMode.h | 454 extern drmModePropertyPtr drmModeGetProperty(int fd, uint32_t propertyId);
|
/prebuilts/sdk/tools/jills/ |
jill-3.36.CANDIDATE.jar | |
jill-4.7.BETA.jar | |