/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TimeZoneAdapter.java | 40 private TimeZone zone; field in class:TimeZoneAdapter 54 return zone; 60 public TimeZoneAdapter(TimeZone zone) { 61 this.zone = zone; 62 super.setID(zone.getID()); 66 * TimeZone API; calls through to wrapped time zone. 70 zone.setID(ID); 74 * TimeZone API; calls through to wrapped time zone. 78 zone.hasSameRules(((TimeZoneAdapter)other).zone) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TimeZoneAdapter.java | 39 private TimeZone zone; field in class:TimeZoneAdapter 53 return zone; 59 public TimeZoneAdapter(TimeZone zone) { 60 this.zone = zone; 61 super.setID(zone.getID()); 65 * TimeZone API; calls through to wrapped time zone. 69 zone.setID(ID); 73 * TimeZone API; calls through to wrapped time zone. 77 zone.hasSameRules(((TimeZoneAdapter)other).zone) [all...] |
/external/jemalloc/src/ |
zone.c | 16 static malloc_zone_t zone; variable 22 static size_t zone_size(malloc_zone_t *zone, void *ptr); 23 static void *zone_malloc(malloc_zone_t *zone, size_t size); 24 static void *zone_calloc(malloc_zone_t *zone, size_t num, size_t size); 25 static void *zone_valloc(malloc_zone_t *zone, size_t size); 26 static void zone_free(malloc_zone_t *zone, void *ptr); 27 static void *zone_realloc(malloc_zone_t *zone, void *ptr, size_t size); 29 static void *zone_memalign(malloc_zone_t *zone, size_t alignment, 33 static void zone_free_definite_size(malloc_zone_t *zone, void *ptr, 36 static void *zone_destroy(malloc_zone_t *zone); [all...] |
/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/ |
zone.h | 24 // The Zone supports very fast allocation of small chunks of 26 // the Zone supports deallocating all chunks in one fast 27 // operation. The Zone is used to hold temporary data structures like 30 // Note: There is no need to initialize the Zone; the first time an 36 class Zone final { 38 Zone(); 39 ~Zone(); 41 // Allocate 'size' bytes of memory in the Zone; expands the Zone by 51 // Deletes all objects and free all memory allocated in the Zone. Keeps on 148 Zone* zone() const { return zone_; } function in class:v8::internal::final 162 Zone* zone() const { return zone_; } function in class:v8::internal::final [all...] |
interface-descriptors.cc | 12 Type* SmiType(Zone* zone) { 13 return Type::Intersect(Type::SignedSmall(), Type::TaggedSigned(), zone); 17 Type* UntaggedIntegral32(Zone* zone) { 18 return Type::Intersect(Type::Signed32(), Type::UntaggedIntegral32(), zone); 22 Type* AnyTagged(Zone* zone) { 25 Type::Union(Type::TaggedPointer(), Type::TaggedSigned(), zone), zone); 37 Zone* zone = isolate->interface_descriptor_zone(); local 92 Zone* zone = isolate->interface_descriptor_zone(); local 143 Zone* zone = isolate->interface_descriptor_zone(); local 157 Zone* zone = isolate->interface_descriptor_zone(); local 175 Zone* zone = isolate->interface_descriptor_zone(); local 243 Zone* zone = isolate->interface_descriptor_zone(); local 265 Zone* zone = isolate->interface_descriptor_zone(); local 286 Zone* zone = isolate->interface_descriptor_zone(); local 309 Zone* zone = isolate->interface_descriptor_zone(); local 331 Zone* zone = isolate->interface_descriptor_zone(); local 356 Zone* zone = isolate->interface_descriptor_zone(); local 376 Zone* zone = isolate->interface_descriptor_zone(); local 410 Zone* zone = isolate->interface_descriptor_zone(); local 424 Zone* zone = isolate->interface_descriptor_zone(); local 437 Zone* zone = isolate->interface_descriptor_zone(); local 449 Zone* zone = isolate->interface_descriptor_zone(); local 462 Zone* zone = isolate->interface_descriptor_zone(); local 474 Zone* zone = isolate->interface_descriptor_zone(); local 488 Zone* zone = isolate->interface_descriptor_zone(); local 501 Zone* zone = isolate->interface_descriptor_zone(); local 513 Zone* zone = isolate->interface_descriptor_zone(); local 526 Zone* zone = isolate->interface_descriptor_zone(); local 539 Zone* zone = isolate->interface_descriptor_zone(); local 551 Zone* zone = isolate->interface_descriptor_zone(); local 565 Zone* zone = isolate->interface_descriptor_zone(); local 580 Zone* zone = isolate->interface_descriptor_zone(); local [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);
|
/external/icu/icu4c/source/i18n/ |
vzone.cpp | 39 vzone_close(VZone* zone) { 40 delete (VTimeZone*)zone; 44 vzone_clone(const VZone *zone) { 45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); 54 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { 56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s); 65 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { 67 ((VTimeZone*)zone)->VTimeZone::setTZURL(s); 71 vzone_getLastModified(VZone* zone, UDate& lastModified) { 72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified) [all...] |
vzone.h | 38 * Creates a vzone from the given time zone ID. 39 * @param ID The time zone ID, such as America/New_York 41 * @return A vzone object initialized by the time zone ID, 64 vzone_close(VZone* zone); 68 * @param zone the original vzone 72 vzone_clone(const VZone *zone); 88 * @param zone, the vzone to use 94 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength); 98 * @param zone, the vzone to use 103 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) [all...] |
/external/v8/src/compiler/ |
live-range-separator.h | 9 #include <src/zone.h> 13 class Zone; 23 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone) 24 : data_(data), zone_(zone) {} 30 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 33 Zone* const zone_; 41 LiveRangeMerger(RegisterAllocationData* data, Zone* zone) 48 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final [all...] |
zone-pool.cc | 5 #include "src/compiler/zone-pool.h" 16 for (auto zone : zone_pool_->used_) { 17 size_t size = static_cast<size_t>(zone->allocation_size()); 19 initial_values_.insert(std::make_pair(zone, size)); 39 for (Zone* zone : zone_pool_->used_) { 40 total += static_cast<size_t>(zone->allocation_size()); 42 InitialValues::iterator it = initial_values_.find(zone); 56 void ZonePool::StatsScope::ZoneReturned(Zone* zone) { 100 Zone* zone; local [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)); 50 return number_constants_.Find(zone(), bit_cast<int64_t>(value)); 58 Zone* zone() const { return zone_; function in class:v8::internal::compiler::final [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/route53/ |
test_zone.py | 39 zone = route53.get_zone(self.base_domain) 40 if zone is not None: 41 zone.delete() 42 self.zone = route53.create_zone(self.base_domain) 45 self.zone.get_nameservers() 48 self.zone.add_a(self.base_domain, '102.11.23.1', 80) 49 record = self.zone.get_a(self.base_domain) 53 self.zone.update_a(self.base_domain, '186.143.32.2', '800') 54 record = self.zone.get_a(self.base_domain) 60 self.zone.add_cname [all...] |
/external/v8/test/unittests/compiler/ |
coalesced-live-ranges-unittest.cc | 16 CoalescedLiveRangesTest() : TestWithZone(), ranges_(zone()) {} 35 LiveRangeIDs set(zone()); 43 LiveRangeIDs set(zone()); 51 LiveRangeIDs set(zone()); 58 LiveRangeIDs seen(zone()); 75 LiveRangeIDs found_ids(zone()); 87 LiveRange* range = TestRangeBuilder(zone()).Id(1).Build(1, 5); 95 LiveRange* range = TestRangeBuilder(zone()).Id(1).Build(5, 6); 99 LiveRange* query = TestRangeBuilder(zone()).Id(2).Build(1, 2); 101 query = TestRangeBuilder(zone()).Id(3).Build(1, 5) [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);
|
/external/v8/src/wasm/ |
module-decoder.h | 15 ModuleResult DecodeWasmModule(Isolate* isolate, Zone* zone, 20 // in the given zone. Returns {nullptr} upon failure. 21 FunctionSig* DecodeWasmSignatureForTesting(Zone* zone, const byte* start, 26 FunctionResult DecodeWasmFunction(Isolate* isolate, Zone* zone, ModuleEnv* env,
|
/external/v8/test/cctest/ |
test-unique.cc | 146 Zone zone; local 148 UniqueSet<String>* set = new(&zone) UniqueSet<String>(); 151 set->Add(A, &zone); 153 set->Add(A, &zone); 155 set->Add(B, &zone); 157 set->Add(C, &zone); 159 set->Add(C, &zone); 161 set->Add(B, &zone); 163 set->Add(A, &zone); 173 Zone zone; local 213 Zone zone; local 244 Zone zone; local 281 Zone zone; local 319 Zone zone; local 354 Zone zone; local 397 Zone zone; local 420 Zone zone; local 461 Zone zone; local 488 Zone zone; local 529 Zone zone; local [all...] |
test-bit-vector.cc | 38 Zone zone; local 40 BitVector v(15, &zone); 47 BitVector w(15, &zone); 55 BitVector v(64, &zone); 73 BitVector v(15, &zone); 75 BitVector w(15, &zone); 83 BitVector v(15, &zone); 85 BitVector w(15, &zone); 89 BitVector u(w, &zone); [all...] |
/external/v8/src/ast/ |
modules.h | 8 #include "src/zone.h" 22 static ModuleDescriptor* New(Zone* zone) { 23 return new (zone) ModuleDescriptor(zone); 32 const AstRawString* local_name, Zone* zone, bool* ok); 36 void AddModuleRequest(const AstRawString* module_specifier, Zone* zone); 66 Zone* zone) [all...] |
/external/v8/src/crankshaft/ |
hydrogen-infer-representation.h | 18 worklist_(8, zone()), 19 in_worklist_(graph->GetMaximumValueID(), zone()) { }
|
/external/v8/test/cctest/wasm/ |
test-run-wasm-module.cc | 61 Zone zone; local 62 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone); 69 WasmModuleWriter* writer = builder->Build(&zone); 70 TestModule(writer->WriteTo(&zone), kReturnValue); 75 Zone zone; local 76 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone); 98 Zone zone; local 126 Zone zone; local 152 Zone zone; local 178 Zone zone; local [all...] |
/packages/services/Car/car-lib/src/android/car/ |
VehicleZoneUtil.java | 28 * Change zone flag into index with available zones. 31 * @param zone flag for the zone to get index, should not be zero and should be one of the flags 33 * @return index of desired zone. 34 * @throws IllegalArgumentException if zones or zone is invalid. 36 public static int zoneToIndex(int zones, int zone) throws IllegalArgumentException { 37 if ((zone == 0) || // check that zone is non-zero 39 ((zone & zones) != zone) || // check that zone is inside of zone [all...] |
/external/freetype/src/cff/ |
cf2blues.c | 192 blues->zone[blues->count].csBottomEdge = 194 blues->zone[blues->count].csTopEdge = 197 zoneHeight = blues->zone[blues->count].csTopEdge - 198 blues->zone[blues->count].csBottomEdge; 202 FT_TRACE4(( "cf2_blues_init: ignoring negative zone height\n" )); 203 continue; /* reject this zone */ 213 /* adjust both edges of top zone upward by twice darkening amount */ 216 blues->zone[blues->count].csTopEdge += 2 * font->darkenY; 217 blues->zone[blues->count].csBottomEdge += 2 * font->darkenY; 220 /* first `BlueValue' is bottom zone; others are top * [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/ |
cf2blues.c | 192 blues->zone[blues->count].csBottomEdge = 194 blues->zone[blues->count].csTopEdge = 197 zoneHeight = blues->zone[blues->count].csTopEdge - 198 blues->zone[blues->count].csBottomEdge; 202 FT_TRACE4(( "cf2_blues_init: ignoring negative zone height\n" )); 203 continue; /* reject this zone */ 213 /* adjust both edges of top zone upward by twice darkening amount */ 216 blues->zone[blues->count].csTopEdge += 2 * font->darkenY; 217 blues->zone[blues->count].csBottomEdge += 2 * font->darkenY; 220 /* first `BlueValue' is bottom zone; others are top * [all...] |
/external/pdfium/third_party/freetype/src/cff/ |
cf2blues.c | 192 blues->zone[blues->count].csBottomEdge = 194 blues->zone[blues->count].csTopEdge = 197 zoneHeight = blues->zone[blues->count].csTopEdge - 198 blues->zone[blues->count].csBottomEdge; 202 FT_TRACE4(( "cf2_blues_init: ignoring negative zone height\n" )); 203 continue; /* reject this zone */ 213 /* adjust both edges of top zone upward by twice darkening amount */ 216 blues->zone[blues->count].csTopEdge += 2 * font->darkenY; 217 blues->zone[blues->count].csBottomEdge += 2 * font->darkenY; 220 /* first `BlueValue' is bottom zone; others are top * [all...] |