/packages/apps/Car/Hvac/src/com/android/car/hvac/ |
D | DataStore.java | 75 public float getTemperature(int zone) { in getTemperature() argument 77 return mTemperature.get(zone); in getTemperature() 81 public void setTemperature(int zone, float temperature) { in setTemperature() argument 83 mTemperature.put(zone, temperature); in setTemperature() 84 mLastTemperatureSet.put(zone, SystemClock.uptimeMillis()); in setTemperature() 88 public boolean shouldPropagateTempUpdate(int zone, float temperature) { in shouldPropagateTempUpdate() argument 90 if (SystemClock.uptimeMillis() - mLastTemperatureSet.get(zone) < COALESCE_TIME_MS) { in shouldPropagateTempUpdate() 93 mTemperature.put(zone, temperature); in shouldPropagateTempUpdate() 98 public boolean getDefrosterState(int zone) { in getDefrosterState() argument 100 return mDefrosterState.get(zone); in getDefrosterState() [all …]
|
D | HvacController.java | 236 public void onErrorEvent(final int propertyId, final int zone) { 255 void handleSeatWarmerUpdate(int zone, int level) { in handleSeatWarmerUpdate() argument 256 if (mDataStore.shouldPropagateSeatWarmerLevelUpdate(zone, level)) { in handleSeatWarmerUpdate() 259 if (zone == VehicleZone.ZONE_ROW_1_LEFT) { in handleSeatWarmerUpdate() 299 private void handleFanPositionUpdate(int zone, int position) { in handleFanPositionUpdate() argument 301 if (mDataStore.shouldPropagateFanPositionUpdate(zone, index)) { in handleFanPositionUpdate() 310 private void handleFanSpeedUpdate(int zone, int speed) { in handleFanSpeedUpdate() argument 311 if (mDataStore.shouldPropagateFanSpeedUpdate(zone, speed)) { in handleFanSpeedUpdate() 320 private void handleTempUpdate(int zone, float temp) { in handleTempUpdate() argument 321 if (mDataStore.shouldPropagateTempUpdate(zone, temp)) { in handleTempUpdate() [all …]
|
D | LocalHvacPropertyService.java | 99 public CarPropertyValue getProperty(int prop, int zone) throws RemoteException { 100 return new CarPropertyValue(prop, zone, mProperties.get(new Pair(prop, zone)));
|
/packages/services/Car/car-lib/src/android/car/ |
D | VehicleZoneUtil.java | 36 public static int zoneToIndex(int zones, int zone) throws IllegalArgumentException { in zoneToIndex() argument 37 if ((zone == 0) || // check that zone is non-zero in zoneToIndex() 38 ((zone & zones) != zone) || // check that zone is inside of zones in zoneToIndex() 39 ((zone & (zone - 1)) != 0)) { // check that zone only has one bit set in zoneToIndex() 41 " or zone 0x" + Integer.toHexString(zone)); in zoneToIndex() 44 while((zone & zones) != 0) { in zoneToIndex() 114 int zone = zones ^ xorFlag; in listAllZones() local 115 list[arrayIndex++] = zone; in listAllZones()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/ |
D | TimeZoneFragment.java | 66 for (final Map<String, Object> zone : zoneList) { in onCreatePreferences() 67 zonePrefs.add(new ZonePreference(themedContext, zone)); in onCreatePreferences() 122 public ZonePreference(Context context, Map<? extends String, ?> zone) { in ZonePreference() argument 125 setKey((String) zone.get(ZoneGetter.KEY_ID)); in ZonePreference() 127 setTitle((String) zone.get(ZoneGetter.KEY_DISPLAYNAME)); in ZonePreference() 128 setSummary((String) zone.get(ZoneGetter.KEY_GMT)); in ZonePreference() 129 offset = (Integer) zone.get(ZoneGetter.KEY_OFFSET); in ZonePreference()
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
D | DateTimeParser.java | 84 private int zone; field in DateTimeParser.Time 86 public Time(int hour, int minute, int second, int zone) { in Time() argument 90 this.zone = zone; in Time() 96 public int getZone() { return zone; } in getZone() 297 z = zone(); in time() 323 final public int zone() throws ParseException { in zone() method in DateTimeParser
|
/packages/services/Car/car-lib/src/android/car/hardware/hvac/ |
D | CarHvacManager.java | 237 void onErrorEvent(@PropertyId int propertyId, int zone); in onErrorEvent() argument 256 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent() argument 259 manager.handleOnErrorEvent(propertyId, zone); in onErrorEvent() 276 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent() argument 283 l.onErrorEvent(propertyId, zone); in handleOnErrorEvent()
|
/packages/services/Car/car-lib/src/android/car/hardware/cabin/ |
D | CarCabinManager.java | 386 void onErrorEvent(@PropertyId int propertyId, int zone); in onErrorEvent() argument 405 public void onErrorEvent(int propertyId, int zone) { in onErrorEvent() argument 408 manager.handleOnErrorEvent(propertyId, zone); in onErrorEvent() 423 private void handleOnErrorEvent(int propertyId, int zone) { in handleOnErrorEvent() argument 430 l.onErrorEvent(propertyId, zone); in handleOnErrorEvent()
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | VehicleZoneUtilTest.java | 27 int[] zone = {0, 1, 0, 0x1, 0x6}; in testZoneToIndex() local 32 int r = VehicleZoneUtil.zoneToIndex(zones[i], zone[i]); in testZoneToIndex() 40 zone = new int[] { 0x1, 0x80000000, 0x2, 0x1000}; in testZoneToIndex() 45 assertEquals(result[i], VehicleZoneUtil.zoneToIndex(zones[i], zone[i])); in testZoneToIndex()
|
/packages/services/Car/car-lib/src/android/car/hardware/ |
D | CarVendorExtensionManager.java | 71 void onErrorEvent(int propertyId, int zone); in onErrorEvent() argument 91 public void onErrorEvent(int propertyId, int zone) { in registerCallback() 93 listener.onErrorEvent(propertyId, zone); in registerCallback()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarPropertyServiceBase.java | 184 public CarPropertyValue getProperty(int prop, int zone) { in getProperty() argument 186 return mHal.getProperty(prop, zone); in getProperty()
|
D | ICarImpl.java | 442 private void inject_zoned_boolean_event(String property, String zone, String value, in inject_zoned_boolean_event() argument 455 zoneId = Integer.decode(zone); in inject_zoned_boolean_event()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/test/ |
D | CarCabinManagerTest.java | 209 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent() argument 210 Log.d(TAG, "Error: propertyId=" + propertyId + " zone=" + zone); in onErrorEvent()
|
D | CarHvacManagerTest.java | 242 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent() argument 243 Log.d(TAG, "Error: propertyId=" + propertyId + " zone=" + zone); in onErrorEvent()
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | ICarProperty.aidl | 34 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty() argument
|
D | CarPropertyManagerBase.java | 61 void onErrorEvent(int propertyId, int zone); in onErrorEvent() argument
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/ |
D | HvacTestFragment.java | 163 public void onErrorEvent(final int propertyId, final int zone) { 165 + ", zone=0x" + toHexString(zone));
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | sl_wordlist.combined.gz | 1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ... |
D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
D | it_wordlist.combined.gz | 1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ... |
D | nl_wordlist.combined.gz | 1dictionary=main:nl,locale=nl,description=Nederlands,date=1414726258, ... |