Home
last modified time | relevance | path

Searched refs:mProperties (Results 1 – 8 of 8) 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
270 VehiclePropConfig prop = mProperties.get(DISPLAY_BRIGHTNESS); in sendDisplayBrightness()
309 return (mProperties.get(VehicleProperty.AP_POWER_STATE_REQ) != null) in isPowerStateSupported()
310 && (mProperties.get(VehicleProperty.AP_POWER_STATE_REPORT) != null); in isPowerStateSupported()
314 VehiclePropConfig config = mProperties.get(VehicleProperty.AP_POWER_STATE_REQ); in isConfigFlagSet()
333 for (VehiclePropConfig config : mProperties.values()) { in init()
338 VehiclePropConfig brightnessProperty = mProperties.get(DISPLAY_BRIGHTNESS); in init()
352 mProperties.clear(); in release()
363 mProperties.put(config.prop, config); in takeSupportedProperties()
367 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/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/
DBipImageProperties.java64 private BipImageProperties mProperties = new BipImageProperties(); field in BipImageProperties.Builder
72 mProperties.mImageHandle = handle; in setImageHandle()
83 mProperties.mFriendlyName = friendlyName; in setFriendlyName()
94 mProperties.addNativeFormat(format); in addNativeFormat()
105 mProperties.addVariantFormat(format); in addVariantFormat()
116 mProperties.addAttachment(format); in addAttachment()
126 return mProperties; in build()
/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.java847 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testCdmaEnhancedPrivacyVoiceCall()
866 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testDropCdmaEnhancedPrivacyVoiceCall()
892 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testPullExternalCall()
917 mConnectionServiceFixtureA.mConnectionServiceDelegate.mProperties = in testPullNonPullableExternalCall()
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java2645 protected final ValidationProperties mProperties; field in NetworkMonitor.Probe
2652 mProperties = properties; in Probe()
2690 final boolean isTestLocalhostHttp = mProperties.mIsTestNetwork in sendCapportApiProbe()