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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/time/zone/
package-info.java 86 package java.time.zone;
  /frameworks/base/core/java/android/os/
SimpleClock.java 25 private final ZoneId zone; field in class:SimpleClock
27 public SimpleClock(ZoneId zone) {
28 this.zone = zone;
33 return zone;
37 public Clock withZone(ZoneId zone) {
38 return new SimpleClock(zone) {
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalZoneMonitor.java 22 * The ThermalZoneMonitor class runs a thread for each zone
30 private ThermalZone zone; field in class:ThermalZoneMonitor
35 zone = tz;
36 mThreadName = "ThermalZone" + zone.getZoneId();
49 if (zone.isZoneStateChanged()) {
50 zone.sendThermalEvent();
54 Thread.sleep(zone.getPollDelay(zone.getZoneState()));
  /external/v8/src/compiler/
bytecode-liveness-map.cc 11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone)
12 : in(new (zone) BytecodeLivenessState(register_count, zone)),
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {}
15 BytecodeLivenessMap::BytecodeLivenessMap(int bytecode_size, Zone* zone)
18 ZoneAllocationPolicy(zone)) {}
24 Zone* zone)
    [all...]
zone-stats.cc 5 #include "src/compiler/zone-stats.h"
16 for (Zone* zone : zone_stats_->zones_) {
17 size_t size = static_cast<size_t>(zone->allocation_size());
19 initial_values_.insert(std::make_pair(zone, size));
36 for (Zone* zone : zone_stats_->zones_) {
37 total += static_cast<size_t>(zone->allocation_size());
39 InitialValues::iterator it = initial_values_.find(zone);
52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone)
88 Zone* zone = new Zone(allocator_, zone_name); local
    [all...]
live-range-separator.h 8 #include "src/zone/zone.h"
12 class Zone;
22 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone)
23 : data_(data), zone_(zone) {}
29 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
32 Zone* const zone_;
40 LiveRangeMerger(RegisterAllocationData* data, Zone* zone
47 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
    [all...]
common-node-cache.h 25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {}
29 return int32_constants_.Find(zone(), value);
33 return int64_constants_.Find(zone(), value);
38 return float32_constants_.Find(zone(), bit_cast<int32_t>(value));
43 return float64_constants_.Find(zone(), bit_cast<int64_t>(value));
49 return pointer_constants_.Find(zone(), value);
54 return number_constants_.Find(zone(), bit_cast<int64_t>(value));
60 return relocatable_int32_constants_.Find(zone(),
72 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
    [all...]
load-elimination.h 11 #include "src/zone/zone-handle-set.h"
30 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone)
31 : AdvancedReducer(editor), node_states_(zone), jsgraph_(jsgraph) {}
44 explicit AbstractChecks(Zone* zone) {
49 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) {
250 Zone* zone() const { return info_for_node_.get_allocator().zone(); } function in class:v8::internal::compiler::final::final
283 Zone* zone() const { return node_states_.zone(); } function in class:v8::internal::compiler::final
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneAdapter.java 42 private TimeZone zone; field in class:TimeZoneAdapter
56 return zone;
62 public TimeZoneAdapter(TimeZone zone) {
63 this.zone = zone;
64 super.setID(zone.getID());
68 * TimeZone API; calls through to wrapped time zone.
73 zone.setID(ID);
77 * TimeZone API; calls through to wrapped time zone.
82 zone.hasSameRules(((TimeZoneAdapter)other).zone)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneAdapter.java 41 private TimeZone zone; field in class:TimeZoneAdapter
55 return zone;
61 public TimeZoneAdapter(TimeZone zone) {
62 this.zone = zone;
63 super.setID(zone.getID());
67 * TimeZone API; calls through to wrapped time zone.
72 zone.setID(ID);
76 * TimeZone API; calls through to wrapped time zone.
81 zone.hasSameRules(((TimeZoneAdapter)other).zone)
    [all...]
  /external/v8/src/zone/
zone.h 15 #include "src/zone/accounting-allocator.h"
26 // The Zone supports very fast allocation of small chunks of
28 // the Zone supports deallocating all chunks in one fast
29 // operation. The Zone is used to hold temporary data structures like
32 // Note: There is no need to initialize the Zone; the first time an
38 class V8_EXPORT_PRIVATE Zone final {
40 Zone(AccountingAllocator* allocator, const char* name);
41 ~Zone();
43 // Allocate 'size' bytes of memory in the Zone; expands the Zone b
141 Zone* zone() const { return zone_; } function in class:v8::internal::final
    [all...]
zone-containers.h 16 #include "src/zone/zone-allocator.h"
22 // that uses a zone allocator.
27 explicit ZoneVector(Zone* zone)
28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {}
32 ZoneVector(size_t size, Zone* zone)
33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {}
37 ZoneVector(size_t size, T def, Zone* zone
    [all...]
  /external/compiler-rt/test/asan/TestCases/Darwin/
malloc_zone-protected.cc 15 malloc_zone_t *zone = malloc_create_zone(0, 0); local
16 zone->malloc = pwn;
17 void *v = malloc_zone_malloc(zone, 1);
malloc_set_zone_name-mprotect.cc 23 // Try to allocate a page-aligned malloc zone. Otherwise the mprotect() call
25 malloc_zone_t *zone = NULL; local
28 zone = malloc_create_zone(0, 0);
29 if (((uintptr_t)zone & (~0xfff)) == (uintptr_t)zone) {
35 printf("Warning: couldn't allocate a page-aligned zone.");
38 // malloc_set_zone_name() calls mprotect(zone, 4096, PROT_READ | PROT_WRITE),
39 // modifies the zone contents and then calls mprotect(zone, 4096, PROT_READ).
40 malloc_set_zone_name(zone, "foobar")
    [all...]
  /external/icu/icu4c/source/i18n/
vzone.cpp 41 vzone_close(VZone* zone) {
42 delete (VTimeZone*)zone;
46 vzone_clone(const VZone *zone) {
47 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone());
56 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) {
58 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s);
67 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) {
69 ((VTimeZone*)zone)->VTimeZone::setTZURL(s);
73 vzone_getLastModified(VZone* zone, UDate& lastModified) {
74 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified)
    [all...]
vzone.h 41 * Creates a vzone from the given time zone ID.
42 * @param ID The time zone ID, such as America/New_York
44 * @return A vzone object initialized by the time zone ID,
67 vzone_close(VZone* zone);
71 * @param zone the original vzone
75 vzone_clone(const VZone *zone);
91 * @param zone, the vzone to use
97 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength);
101 * @param zone, the vzone to use
106 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength)
    [all...]
  /libcore/ojluni/src/main/java/java/time/
Clock.java 72 * A clock providing access to the current instant, date and time using a time-zone.
75 * interpreted using the stored time-zone to find the current date and time.
80 * {@code now()} factory method that uses the system clock in the default time zone.
138 * system clock, converting to date and time using the UTC time-zone.
147 * Conversion from instant to date or time uses the {@linkplain ZoneOffset#UTC UTC time-zone}.
152 * @return a clock that uses the best available system clock in the UTC zone, not null
160 * system clock, converting to date and time using the default time-zone.
166 * Using this method hard codes a dependency to the default time-zone into your application.
167 * It is recommended to avoid this and use a specific time-zone whenever possible.
174 * @return a clock that uses the best available system clock in the default zone, not nul
449 private final ZoneId zone; field in class:Clock.SystemClock
498 private final ZoneId zone; field in class:Clock.FixedClock
    [all...]
  /libcore/ojluni/src/main/java/sun/util/calendar/
Gregorian.java 44 protected Date(TimeZone zone) {
45 super(zone);
76 public Date getCalendarDate(long millis, TimeZone zone) {
77 return getCalendarDate(millis, newCalendarDate(zone));
84 public Date newCalendarDate(TimeZone zone) {
85 return new Date(zone);
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
DataStore.java 78 public float getTemperature(int zone) {
80 return mTemperature.get(zone);
84 public void setTemperature(int zone, float temperature, boolean available) {
87 Log.d("HvacDataStore", "setTemperature(" + zone + ", " + temperature + ")");
88 mTemperature.put(zone, temperature);
89 mTemperatureAvailable.put(zone, available);
90 mLastTemperatureSet.put(zone, SystemClock.uptimeMillis());
95 public boolean shouldPropagateTempUpdate(int zone, float temperature, boolean available) {
98 if (SystemClock.uptimeMillis() - mLastTemperatureSet.get(zone) < COALESCE_TIME_MS) {
99 if (available == mTemperatureAvailable.get(zone)) {
    [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
SharedSecret.h 40 Load( CString zone );
43 Commit( CString zone );
  /external/v8/src/crankshaft/
hydrogen-infer-representation.h 18 worklist_(8, zone()),
19 in_worklist_(graph->GetMaximumValueID(), zone()) { }
  /external/freetype/src/pshinter/
pshglob.c 157 PSH_Blue_Zone zones, zone; local
161 /* read blue zone entry, and select target top/bottom zone */
183 zone = zones;
184 for ( ; count > 0; count--, zone++ )
186 if ( reference < zone->org_ref )
189 if ( reference == zone->org_ref )
191 FT_Int delta0 = zone->org_delta;
199 zone->org_delta = delta;
204 zone->org_delta = delta
274 PSH_Blue_Zone zone = top_table->zones; local
297 PSH_Blue_Zone zone = bot_table->zones; local
320 PSH_Blue_Zone zone; local
431 PSH_Blue_Zone zone; local
556 PSH_Blue_Zone zone; local
    [all...]
  /external/v8/src/ast/
modules.h 9 #include "src/zone/zone-containers.h"
22 explicit ModuleDescriptor(Zone* zone)
23 : module_requests_(zone),
24 special_exports_(1, zone),
25 namespace_imports_(1, zone),
26 regular_exports_(zone),
27 regular_imports_(zone) {}
38 Zone* zone)
    [all...]
  /tools/acloud/internal/script/
create_extradisk.sh 15 ZONE=us-central1-f
20 gcloud compute disks create "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT} --size="${1}GB"
21 gcloud compute instances attach-disk instance-disk-creation --disk "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT}
23 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "sudo mkfs.ext4 -F ${DEV_FILE}"
24 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "sudo mount -o discard,defaults ${DEV_FILE} /mnt"
25 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "ls /mnt
    [all...]
  /external/icu/icu4c/source/samples/datefmt/answers/
main_2.cpp 20 * TimeZone::createTimeZone() will return a GMT zone object. In order
21 * to detect this error, we check the ID of the returned zone against
26 TimeZone* zone = TimeZone::createTimeZone(id); local
27 if (zone->getID(str) != id) {
28 delete zone;
31 printf(") returned zone with ID ");
36 return zone;
42 TimeZone *zone; local
66 zone = createZone("GMT"); // Create a GMT zone
    [all...]

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011>>