Home
last modified time | relevance | path

Searched refs:mProperties (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/anim/
DPropertyListBuilder.java14 private final ArrayList<PropertyValuesHolder> mProperties = new ArrayList<>(); field in PropertyListBuilder
17 mProperties.add(PropertyValuesHolder.ofFloat(View.TRANSLATION_X, value)); in translationX()
22 mProperties.add(PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, value)); in translationY()
27 mProperties.add(PropertyValuesHolder.ofFloat(View.SCALE_X, value)); in scaleX()
32 mProperties.add(PropertyValuesHolder.ofFloat(View.SCALE_Y, value)); in scaleY()
44 mProperties.add(PropertyValuesHolder.ofFloat(View.ALPHA, value)); in alpha()
50 mProperties.toArray(new PropertyValuesHolder[mProperties.size()])); in build()
/packages/services/Car/service/src/com/android/car/hal/
DPowerHalService.java169 private final HashMap<Integer, VehiclePropConfig> mProperties = new HashMap<>(); field in PowerHalService
305 return (mProperties.get(VehicleProperty.AP_POWER_STATE_REQ) != null) in isPowerStateSupported()
306 && (mProperties.get(VehicleProperty.AP_POWER_STATE_REPORT) != null); in isPowerStateSupported()
310 VehiclePropConfig config = mProperties.get(VehicleProperty.AP_POWER_STATE_REQ); in isConfigFlagSet()
329 for (VehiclePropConfig config : mProperties.values()) { in init()
334 VehiclePropConfig brightnessProperty = mProperties.get(DISPLAY_BRIGHTNESS); in init()
348 mProperties.clear(); in release()
359 mProperties.put(config.prop, config); in takeSupportedProperties()
363 return new LinkedList<>(mProperties.values()); in takeSupportedProperties()
DDiagnosticHalService.java60 private final CopyOnWriteArraySet<Integer> mProperties = new CopyOnWriteArraySet<>(); field in DiagnosticHalService.DiagnosticCapabilities
63 mProperties.add(propertyId); in setSupported()
67 return mProperties.contains(propertyId); in isSupported()
91 mProperties.clear(); in clear()
/packages/services/Telephony/src/com/android/services/telephony/
DCdmaConference.java37 private int mProperties; field in CdmaConference
44 mProperties = Connection.PROPERTY_GENERIC_CONFERENCE; in CdmaConference()
45 setConnectionProperties(mProperties); in CdmaConference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java78 int mProperties = NOT_SPECIFIED; field in ConnectionServiceFixture.FakeConnectionServiceDelegate
101 if (mProperties != NOT_SPECIFIED) { in onCreateIncomingConnection()
102 fakeConnection.setConnectionProperties(mProperties); in onCreateIncomingConnection()
117 if (mProperties != NOT_SPECIFIED) { in onCreateOutgoingConnection()
118 fakeConnection.setConnectionProperties(mProperties); in onCreateOutgoingConnection()
DBasicCallTests.java831 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testCdmaEnhancedPrivacyVoiceCall()
850 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testDropCdmaEnhancedPrivacyVoiceCall()
876 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testPullExternalCall()
901 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testPullNonPullableExternalCall()