HomeSort by relevance Sort by last modified time
    Searched refs:zones (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /packages/services/Car/car-lib/src/android/car/
VehicleZoneUtil.java 21 * Collection of utilities for handling zones
28 * Change zone flag into index with available zones.
30 * @param available zones, should not be zero
32 * defined in zones.
34 * @throws IllegalArgumentException if zones or zone is invalid.
36 public static int zoneToIndex(int zones, int zone) throws IllegalArgumentException {
38 (zones == 0) || // check that zones is non-zero
39 ((zone & zones) != zone) || // check that zone is inside of zones
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
VehicleZoneUtilTest.java 26 int zones = 0; local
29 int r = VehicleZoneUtil.zoneToIndex(zones, zone);
36 int r = VehicleZoneUtil.zoneToIndex(zones, zone);
41 zones = 0xffffffff;
43 assertEquals(0, VehicleZoneUtil.zoneToIndex(zones, zone));
45 assertEquals(31, VehicleZoneUtil.zoneToIndex(zones, zone));
46 zones = 0x1002;
48 int r = VehicleZoneUtil.zoneToIndex(zones, zone);
54 assertEquals(0, VehicleZoneUtil.zoneToIndex(zones, zone));
56 assertEquals(1, VehicleZoneUtil.zoneToIndex(zones, zone))
60 int zones = 0; local
71 int zones = 0; local
80 int zones = 0; local
114 int zones = 0; local
    [all...]
  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
IVehicleNetworkHalMock.aidl 29 void onPropertySubscribe(int property, float sampleRate, int zones) = 3;
VehiclePropConfigUtil.java 40 int property, int propAccess, int changeType, int valueType, int zones,
48 setZones(zones).
IVehicleNetwork.aidl 36 int zones) = 3;
  /packages/services/Car/libvehiclenetwork/include/
IVehicleNetwork.h 52 float sampleRate, int32_t zones) = 0;
92 static int countNumberOfZones(int32_t zones) {
93 if (zones == 0) { // no-zone, treat as one zone.
99 if ((flag & zones) != 0) {
IVehicleNetworkHalMock.h 44 virtual status_t onPropertySubscribe(int32_t property, float sampleRate, int32_t zones) = 0;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatMiscTests.java 141 final String zones[][] = symbols.getZoneStrings(); local
143 for (int i = 0; i < zones.length; ++i) {
144 if (tzID.equals(zones[i][0])) {
153 assertEquals("Long zone name = ", jstLong, zones[index][1]);
154 assertEquals("Short zone name = ", jstShort, zones[index][2]);
155 assertEquals("Long zone name (3) = ", jdtLong, zones[index][3]);
156 assertEquals("Short zone name (4) = ", jdtShort, zones[index][4]);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatMiscTests.java 137 final String zones[][] = symbols.getZoneStrings(); local
139 for (int i = 0; i < zones.length; ++i) {
140 if (tzID.equals(zones[i][0])) {
149 assertEquals("Long zone name = ", jstLong, zones[index][1]);
150 assertEquals("Short zone name = ", jstShort, zones[index][2]);
151 assertEquals("Long zone name (3) = ", jdtLong, zones[index][3]);
152 assertEquals("Short zone name (4) = ", jdtShort, zones[index][4]);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/
loadbalancer.py 57 Used to collect the zones for a Load Balancer when enable_zones
62 self.zones = ListElement()
66 return self.zones
94 :ivar list availability_zones: The availability zones this balancer
183 def enable_zones(self, zones):
185 Enable availability zones to this Access Point.
186 All zones must be in the same region as the Access Point.
188 :type zones: string or List of strings
189 :param zones: The name of the zone(s) to add.
192 if isinstance(zones, six.string_types)
    [all...]
__init__.py 137 def create_load_balancer(self, name, zones, listeners=None, subnets=None,
143 VPC, parameter zones must be set to None and subnets must not be None.
150 :type zones: List of strings
151 :param zones: The names of the availability zone(s) to add.
232 if zones:
233 self.build_list_params(params, zones, 'AvailabilityZones.member.%d')
246 load_balancer.availability_zones = zones
346 Add availability zones to an existing Load Balancer
347 All zones must be in the same region as the Load Balancer
348 Adding zones that are already registered with the Load Balance
    [all...]
  /prebuilts/go/darwin-x86/lib/time/
update.bash 18 curl -O http://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
19 curl -O http://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
  /prebuilts/go/linux-x86/lib/time/
update.bash 18 curl -O http://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
19 curl -O http://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
  /packages/services/Car/car-systemtest-lib/src/android/car/test/
VehicleHalEmulator.java 57 void onPropertySubscribe(int property, float sampleRate, int zones);
167 float sampleRate, int zones) {
246 private synchronized void handlePropertySubscribe(int property, float sampleRate, int zones) {
247 getHalPropertyLocked(property).handler.onPropertySubscribe(property, sampleRate, zones);
297 public synchronized void onPropertySubscribe(int property, float sampleRate, int zones) {
298 assertPropertyForSubscribe(mConfig, property, sampleRate, zones);
332 public void onPropertySubscribe(int property, float sampleRate, int zones) {
333 handlePropertySubscribe(property, sampleRate, zones);
  /external/icu/tools/
update-tzdata.py 37 """Writes the list of zones that ZoneCompactor should process."""
39 zones = []
46 zones.append(fields[2])
48 zones.append(fields[1])
49 zones.sort()
54 for zone in sorted(set(zones)):
82 path = "/time-zones/repository/releases/%s" % data_filename
133 # See http://www.iana.org/time-zones/ for more about the source of this data.
156 http.request("GET", "/time-zones")
159 m = re.compile('.*href="/time-zones/repository/releases/(tzdata20\d\d\c\.tar\.gz)".*').match(line
    [all...]
  /external/icu/icu4c/source/test/intltest/
miscdtfm.cpp 351 const UnicodeString **zones = symbols->getZoneStrings(rowCount, colCount); local
355 if (tzID == (zones[i][0])) {
360 logln(UnicodeString("Long zone name = ") + zones[index][1]);
361 if (zones[index][1] != jstLong) {
362 errln("*** Should have been " + prettify(jstLong)+ " but it is: " + prettify(zones[index][1]));
365 // logln(UnicodeString("Short zone name = ") + zones[index][2]);
366 // if (zones[index][2] != jstShort) {
367 // errln("*** Should have been " + prettify(jstShort) + " but it is: " + prettify(zones[index][2]));
370 logln(UnicodeString("Long zone name = ") + zones[index][3]);
371 if (zones[index][3] != jdtLong)
    [all...]
  /packages/services/Car/vehicle_network_service/
VehicleNetworkService.h 96 int32_t zones; member in class:android::SubscriptionInfo
99 zones(0) {};
102 zones(aZones) {};
105 zones(info.zones) {};
141 void setSubscriptionInfo(int32_t property, float sampleRate, int32_t zones) {
143 SubscriptionInfo info(sampleRate, zones);
300 float sampleRate, int32_t zones);
VehicleNetworkService.cpp 249 msg.appendFormat("prop 0x%x, sample rate %f Hz, zones 0x%x\n", mSubscriptionInfos.keyAt(i),
250 info.sampleRate, info.zones);
600 float sampleRate, int32_t zones) {
603 int32_t newZones = zones;
628 if ((zones != 0) && ((zones & config->vehicle_zone_flags) != zones)) {
629 ALOGE("subscribe requested zones 0x%x out of range, supported:0x%x", zones,
634 zones = 0
    [all...]
  /external/freetype/src/pshinter/
pshglob.c 133 /***** BLUE ZONES *****/
157 PSH_Blue_Zone zones, zone; local
168 zones = bot_table->zones;
177 zones = top_table->zones;
183 zone = zones;
194 /* we have two zones on the same reference position -- */
230 /* Re-read blue zones from the original fonts and store them into out */
232 /* fuzz-expands the zones as well. *
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pshinter/
pshglob.c 133 /***** BLUE ZONES *****/
157 PSH_Blue_Zone zones, zone; local
168 zones = bot_table->zones;
177 zones = top_table->zones;
183 zone = zones;
194 /* we have two zones on the same reference position -- */
230 /* Re-read blue zones from the original fonts and store them into out */
232 /* fuzz-expands the zones as well. *
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshglob.c 133 /***** BLUE ZONES *****/
157 PSH_Blue_Zone zones, zone; local
168 zones = bot_table->zones;
177 zones = top_table->zones;
183 zone = zones;
194 /* we have two zones on the same reference position -- */
230 /* Re-read blue zones from the original fonts and store them into out */
232 /* fuzz-expands the zones as well. *
    [all...]
  /packages/services/Car/libvehiclenetwork/proto/
VehicleNetworkProto.proto 27 optional int32 zones = 6;
  /system/connectivity/shill/
provider_db_unittest.bfd 47 name:,Web2Go/t-zones
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
elbadmin 107 print " Zones "
147 def create(elb, name, zones, listeners):
157 b = elb.create_load_balancer(name, zones, l_list)
244 action="append", default=[], dest="zones")
276 if not options.zones:
279 create(elb, args[1], options.zones, options.listeners)
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
HvacTestFragment.java 73 int zones = value.getAreaId();
98 if ((zones & mZoneForFanSpeed) != 0) {
104 if ((zones & mZoneForSetTempD) != 0) {
108 if ((zones & mZoneForSetTempP) != 0) {
114 if((zones & VehicleWindow.VEHICLE_WINDOW_FRONT_WINDSHIELD) ==
118 if((zones & VehicleWindow.VEHICLE_WINDOW_REAR_WINDSHIELD) ==

Completed in 493 milliseconds

1 2 3 4 5