/packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/ |
D | VehicleZoneUtilTest.java | 27 int zone = 0; in testZoneToIndex() local 29 int r = VehicleZoneUtil.zoneToIndex(zones, zone); in testZoneToIndex() 34 zone = 0x1; in testZoneToIndex() 36 int r = VehicleZoneUtil.zoneToIndex(zones, zone); in testZoneToIndex() 42 zone = 0x1; in testZoneToIndex() 43 assertEquals(0, VehicleZoneUtil.zoneToIndex(zones, zone)); in testZoneToIndex() 44 zone = 0x80000000; in testZoneToIndex() 45 assertEquals(31, VehicleZoneUtil.zoneToIndex(zones, zone)); in testZoneToIndex() 48 int r = VehicleZoneUtil.zoneToIndex(zones, zone); in testZoneToIndex() 53 zone = 0x2; in testZoneToIndex() [all …]
|
/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() 39 ((zone & zones) != zone) || // check that zone is inside of zones in zoneToIndex() 40 ((zone & (zone - 1)) != 0)) { // check that zone only has one bit set in zoneToIndex() 42 " or zone 0x" + Integer.toHexString(zone)); in zoneToIndex() 45 while((zone & zones) != 0) { in zoneToIndex()
|
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/ |
D | VehicleNetwork.java | 219 public void setZonedBooleanProperty(int property, int zone, boolean value) in setZonedBooleanProperty() argument 221 VehiclePropValue v = VehiclePropValueUtil.createZonedBooleanValue(property, zone, value, 0); in setZonedBooleanProperty() 230 public void setZonedFloatProperty(int property, int zone, float value) in setZonedFloatProperty() argument 232 VehiclePropValue v = VehiclePropValueUtil.createZonedFloatValue(property, zone, value, 0); in setZonedFloatProperty() 241 public void setZonedIntProperty(int property, int zone, int value) in setZonedIntProperty() argument 243 VehiclePropValue v = VehiclePropValueUtil.createZonedIntValue(property, zone, value, 0); in setZonedIntProperty() 250 public void setZonedIntVectorProperty(int property, int zone, int[] values) in setZonedIntVectorProperty() argument 253 .createZonedIntVectorValue(property, zone, values, 0); in setZonedIntVectorProperty() 261 public void setZonedFloatVectorProperty(int property, int zone, float[] values) in setZonedFloatVectorProperty() argument 264 .createZonedFloatVectorValue(property, zone, values, 0); in setZonedFloatVectorProperty() [all …]
|
D | VehiclePropValueUtil.java | 92 public static VehiclePropValue createZonedIntValue(int property, int zone, int value, in createZonedIntValue() argument 95 setZone(zone). in createZonedIntValue() 100 public static VehiclePropValue createZonedIntVectorValue(int property, int zone, int[] values, in createZonedIntVectorValue() argument 105 setZone(zone); in createZonedIntVectorValue() 112 public static VehiclePropValue createZonedFloatVectorValue(int property, int zone, in createZonedFloatVectorValue() argument 117 setZone(zone); in createZonedFloatVectorValue() 125 public static VehiclePropValue createZonedBooleanValue(int property, int zone, boolean value, in createZonedBooleanValue() argument 128 setZone(zone). in createZonedBooleanValue() 133 public static VehiclePropValue createZonedFloatValue(int property, int zone, float value, in createZonedFloatValue() argument 136 setZone(zone). in createZonedFloatValue()
|
/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/Telephony/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/service/src/com/android/car/ |
D | CarHvacService.java | 169 public synchronized CarPropertyValue getProperty(int prop, int zone) { in getProperty() argument 171 return mHvacHal.getHvacProperty(prop, zone); in getProperty() 195 public synchronized void onError(int zone, int property) { in onError() argument
|
/packages/services/Car/tests/carservice_test/src/com/android/car/test/ |
D | CarHvacManagerTest.java | 226 public void onErrorEvent(final int propertyId, final int zone) { in onErrorEvent() argument 227 Log.d(TAG, "Error: propertyId=" + propertyId + " zone=" + zone); in onErrorEvent()
|
/packages/services/Car/car-lib/src/android/car/hardware/hvac/ |
D | ICarHvac.aidl | 32 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty() argument
|
D | CarHvacManager.java | 127 void onErrorEvent(final int propertyId, final int zone); in onErrorEvent() argument
|
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/ |
D | VehicleNetworkMockedTest.java | 512 int zone = property.getZone(); in onPropertyGet() local 513 VehiclePropValue value = mZoneValueMap.get(zone); in onPropertyGet() 515 Log.w(TAG, "Property not found: " + property.getProp() + ", zone: " + zone); in onPropertyGet()
|
/packages/services/Car/libvehiclenetwork/native/ |
D | VehicleNetworkProtoUtil.cpp | 43 out.set_zone(in.zone); in toVehiclePropValue() 108 out.zone = in.zone(); in fromVehiclePropValue()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/ |
D | HvacTestFragment.java | 130 public void onErrorEvent(final int propertyId, final int zone) { 132 + ", zone=0x" + toHexString(zone));
|
/packages/services/Car/libvehiclenetwork/proto/ |
D | VehicleNetworkProto.proto | 50 optional int32 zone = 4; field
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | HvacHalService.java | 52 void onError(int zone, int property); in onError() argument
|
/packages/services/Car/bluetooth/bt-map-service/ |
D | bt_hci_startup_issues.txt | 556 Node 0, zone Normal 617 Node 0, zone HighMem 685 Node 0, zone Normal, type Unmovable 1 5 4 1 0 0 0 1… 686 Node 0, zone Normal, type Reclaimable 0 0 1 1 0 1 1 0… 687 Node 0, zone Normal, type Movable 1 0 1 1 1 1 0 0… 688 Node 0, zone Normal, type Reserve 0 0 0 0 0 0 0 0… 689 Node 0, zone Normal, type CMA 0 0 0 0 0 1 0 1… 690 Node 0, zone Normal, type Isolate 0 0 0 0 0 0 0 0… 691 Node 0, zone HighMem, type Unmovable 0 1 1 1 1 0 0 1… 692 Node 0, zone HighMem, type Reclaimable 0 0 0 0 0 0 0 0… [all …]
|
/packages/inputmethods/LatinIME/dictionaries/ |
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_US_wordlist.combined.gz |
|