/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | etcetera | 20 Zone Etc/GMT 0 - GMT 21 Zone Etc/UTC 0 - UTC 37 # Be consistent with POSIX TZ settings in the Zone names, 47 # Zone GMT-12 -12 - GMT-1200 54 Zone Etc/GMT-14 14 - +14 55 Zone Etc/GMT-13 13 - +13 56 Zone Etc/GMT-12 12 - +12 57 Zone Etc/GMT-11 11 - +11 58 Zone Etc/GMT-10 10 - +10 59 Zone Etc/GMT-9 9 - +09 [all …]
|
D | systemv | 26 # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL] 27 ## Zone SystemV/AST4ADT -4:00 SystemV A%sT 28 ## Zone SystemV/EST5EDT -5:00 SystemV E%sT 29 ## Zone SystemV/CST6CDT -6:00 SystemV C%sT 30 ## Zone SystemV/MST7MDT -7:00 SystemV M%sT 31 ## Zone SystemV/PST8PDT -8:00 SystemV P%sT 32 ## Zone SystemV/YST9YDT -9:00 SystemV Y%sT 33 ## Zone SystemV/AST4 -4:00 - AST 34 ## Zone SystemV/EST5 -5:00 - EST 35 ## Zone SystemV/CST6 -6:00 - CST [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
D | TimeZoneAliasTest.java | 53 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 54 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 55 Zone zone = (Zone)it.next(); in TestAliases() 61 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 62 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 71 Zone otherZone = Zone.make(otherId); in TestAliases() 77 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 79 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 96 Zone last = null; in TestDifferences() 97 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneAliasTest.java | 50 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 51 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 52 Zone zone = (Zone)it.next(); in TestAliases() 58 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 59 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 68 Zone otherZone = Zone.make(otherId); in TestAliases() 74 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 76 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 93 Zone last = null; in TestDifferences() 94 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences() [all …]
|
/external/v8/src/compiler/ |
D | load-elimination.h | 32 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone) in NON_EXPORTED_BASE() 48 explicit AbstractChecks(Zone* zone) { in NON_EXPORTED_BASE() 53 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) { in NON_EXPORTED_BASE() 57 AbstractChecks const* Extend(Node* node, Zone* zone) const { in NON_EXPORTED_BASE() 65 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE() 80 explicit AbstractElements(Zone* zone) { in NON_EXPORTED_BASE() 86 MachineRepresentation representation, Zone* zone) in NON_EXPORTED_BASE() 93 Zone* zone) const { in NON_EXPORTED_BASE() 102 AbstractElements const* Kill(Node* object, Node* index, Zone* zone) const; in NON_EXPORTED_BASE() 105 Zone* zone) const; in NON_EXPORTED_BASE() [all …]
|
D | live-range-separator.h | 12 class Zone; variable 22 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone) in LiveRangeSeparator() 29 Zone* zone() const { return zone_; } in zone() 32 Zone* const zone_; 40 LiveRangeMerger(RegisterAllocationData* data, Zone* zone) in LiveRangeMerger() 47 Zone* zone() const { return zone_; } in zone() 55 Zone* const zone_;
|
D | types.h | 324 static RangeType* New(double min, double max, Zone* zone) { in New() 328 static RangeType* New(Limits lim, Zone* zone) { in New() 363 static Type OtherNumberConstant(double value, Zone* zone); 365 Handle<i::Object> value, Zone* zone); 366 static Type HeapConstant(const HeapObjectRef& value, Zone* zone); 367 static Type Range(double min, double max, Zone* zone); 368 static Type Range(RangeType::Limits lims, Zone* zone); 369 static Type Tuple(Type first, Type second, Type third, Zone* zone); 370 static Type Union(int length, Zone* zone); 374 Zone* zone); [all …]
|
D | value-numbering-reducer.h | 19 explicit ValueNumberingReducer(Zone* temp_zone, Zone* graph_zone); in NON_EXPORTED_BASE() 31 Zone* temp_zone() const { return temp_zone_; } in NON_EXPORTED_BASE() 32 Zone* graph_zone() const { return graph_zone_; } in NON_EXPORTED_BASE() 37 Zone* temp_zone_; in NON_EXPORTED_BASE() 38 Zone* graph_zone_; in NON_EXPORTED_BASE()
|
D | zone-stats.h | 27 Zone* zone() { in zone() 39 Zone* zone_; 54 void ZoneReturned(Zone* zone); 56 typedef std::map<Zone*, size_t> InitialValues; 74 Zone* NewEmptyZone(const char* zone_name); 75 void ReturnZone(Zone* zone); 78 typedef std::vector<Zone*> Zones;
|
D | zone-stats.cc | 18 for (Zone* zone : zone_stats_->zones_) { in StatsScope() 38 for (Zone* zone : zone_stats_->zones_) { in GetCurrentAllocatedBytes() 54 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned() 79 for (Zone* zone : zones_) { in GetCurrentAllocatedBytes() 89 Zone* ZoneStats::NewEmptyZone(const char* zone_name) { in NewEmptyZone() 90 Zone* zone = new Zone(allocator_, zone_name); in NewEmptyZone() 95 void ZoneStats::ReturnZone(Zone* zone) { in ReturnZone()
|
D | redundancy-elimination.h | 16 RedundancyElimination(Editor* editor, Zone* zone); 32 static EffectPathChecks* Copy(Zone* zone, EffectPathChecks const* checks); 33 static EffectPathChecks const* Empty(Zone* zone); 37 EffectPathChecks const* AddCheck(Zone* zone, Node* node) const; 52 explicit PathChecksForEffectNodes(Zone* zone) : info_for_node_(zone) {} in PathChecksForEffectNodes() 70 Zone* zone() const { return zone_; } in zone() 73 Zone* const zone_;
|
D | memory-optimizer.h | 36 MemoryOptimizer(JSGraph* jsgraph, Zone* zone, 48 AllocationGroup(Node* node, PretenureFlag pretenure, Zone* zone); 50 Zone* zone); 71 static AllocationState const* Empty(Zone* zone) { in Empty() 74 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) { in Closed() 78 Node* top, Zone* zone) { in Open() 141 Zone* zone() const { return zone_; } in zone() 149 Zone* const zone_;
|
D | register-allocator.h | 192 UseInterval* SplitAt(LifetimePosition pos, Zone* zone); 388 Zone* zone, HintConnectionOption connect_hints); in NON_EXPORTED_BASE() 392 LiveRange* SplitAt(LifetimePosition position, Zone* zone); in NON_EXPORTED_BASE() 496 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 497 void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 507 void Splinter(LifetimePosition start, LifetimePosition end, Zone* zone); 511 void Merge(TopLevelLiveRange* other, Zone* zone); 544 void RecordSpillLocation(Zone* zone, int gap_index, 562 void TreatAsSpilledInDeferredBlock(Zone* zone, int total_block_count) { in TreatAsSpilledInDeferredBlock() 678 SpillRange(TopLevelLiveRange* range, Zone* zone); [all …]
|
D | store-store-elimination.cc | 101 static UnobservablesSet VisitedEmpty(Zone* zone); 105 UnobservablesSet Intersect(UnobservablesSet other, Zone* zone) const; 106 UnobservablesSet Add(UnobservableStore obs, Zone* zone) const; 107 UnobservablesSet RemoveSameOffset(StoreOffset off, Zone* zone) const; 132 RedundantStoreFinder(JSGraph* js_graph, Zone* temp_zone); 151 Zone* temp_zone() const { return temp_zone_; } in temp_zone() 160 Zone* const temp_zone_; 233 void StoreStoreElimination::Run(JSGraph* js_graph, Zone* temp_zone) { in Run() 339 RedundantStoreFinder::RedundantStoreFinder(JSGraph* js_graph, Zone* temp_zone) in RedundantStoreFinder() 463 UnobservablesSet UnobservablesSet::VisitedEmpty(Zone* zone) { in VisitedEmpty() [all …]
|
D | bytecode-liveness-map.h | 15 class Zone; variable 21 BytecodeLivenessState(int register_count, Zone* zone) in BytecodeLivenessState() 82 BytecodeLiveness(int register_count, Zone* zone); 87 BytecodeLivenessMap(int size, Zone* zone); 90 Zone* zone);
|
/external/v8/src/zone/ |
D | zone.h | 40 class V8_EXPORT_PRIVATE Zone final { 42 Zone(AccountingAllocator* allocator, const char* name, 44 ~Zone(); 124 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new() 135 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete() 142 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) {} in ZoneAllocationPolicy() 145 Zone* zone() const { return zone_; } in zone() 148 Zone* zone_; 163 ZoneList(int capacity, Zone* zone) { Initialize(capacity, zone); } in ZoneList() 165 ZoneList(std::initializer_list<T> list, Zone* zone) { in ZoneList() [all …]
|
D | zone-containers.h | 31 explicit ZoneVector(Zone* zone) in ZoneVector() 36 ZoneVector(size_t size, Zone* zone) in ZoneVector() 41 ZoneVector(size_t size, T def, Zone* zone) in ZoneVector() 46 ZoneVector(std::initializer_list<T> list, Zone* zone) in ZoneVector() 52 ZoneVector(InputIt first, InputIt last, Zone* zone) in ZoneVector() 62 explicit ZoneDeque(Zone* zone) in ZoneDeque() 75 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList() 85 explicit ZoneForwardList(Zone* zone) in ZoneForwardList() 96 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue() 107 explicit ZoneQueue(Zone* zone) in ZoneQueue() [all …]
|
D | zone.cc | 30 Zone::Zone(AccountingAllocator* allocator, const char* name, in Zone() function in v8::internal::Zone 44 Zone::~Zone() { in ~Zone() 52 void* Zone::New(size_t size) { in New() 80 void Zone::DeleteAll() { in DeleteAll() 102 Segment* Zone::NewSegment(size_t requested_size) { in NewSegment() 114 Address Zone::NewExpand(size_t size) { in NewExpand()
|
D | zone-segment.h | 19 class Zone; variable 25 Zone* zone() const { return zone_; } in zone() 26 void set_zone(Zone* const zone) { zone_ = zone; } in set_zone() 53 Zone* zone_;
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | RoundRectangle.java | 32 private enum Zone { enum in RoundRectangle 40 private final EnumSet<Zone> close = EnumSet.of(Zone.CLOSE_OUTSIDE, Zone.CLOSE_INSIDE); 41 private final EnumSet<Zone> far = EnumSet.of(Zone.FAR_OUTSIDE, Zone.FAR_INSIDE); 179 private Zone classify( in classify() 182 return Zone.CLOSE_OUTSIDE; in classify() 184 return Zone.CLOSE_INSIDE; in classify() 186 return Zone.MIDDLE; in classify() 188 return Zone.FAR_INSIDE; in classify() 190 return Zone.FAR_OUTSIDE; in classify() 212 Zone x0class = classify(x, x0, maxLeftCornerWidth, x1, maxRightCornerWidth); in intersects() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | block-in-ctor-dtor.cpp | 7 class Zone { class 9 Zone(); 10 ~Zone(); 13 Zone::Zone() { in Zone() function in Zone 18 Zone::~Zone() { in ~Zone() 23 class X : public virtual Zone {
|
/external/icu/icu4c/source/tools/tzcode/ |
D | icuzones | 16 # Zone NAME GMTOFF RULES FORMAT 17 Zone Etc/Unknown 0 - Unknown 22 # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL] 23 Zone SystemV/AST4ADT -4:00 SystemV A%sT 24 Zone SystemV/EST5EDT -5:00 SystemV E%sT 25 Zone SystemV/CST6CDT -6:00 SystemV C%sT 26 Zone SystemV/MST7MDT -7:00 SystemV M%sT 27 Zone SystemV/PST8PDT -8:00 SystemV P%sT 28 Zone SystemV/YST9YDT -9:00 SystemV Y%sT 29 Zone SystemV/AST4 -4:00 - AST [all …]
|
/external/v8/src/ast/ |
D | modules.h | 22 explicit ModuleDescriptor(Zone* zone) in ModuleDescriptor() 39 const Scanner::Location specifier_loc, Zone* zone); 45 const Scanner::Location specifier_loc, Zone* zone); 60 const Scanner::Location loc, Zone* zone); 68 const Scanner::Location specifier_loc, Zone* zone); 73 const Scanner::Location specifier_loc, Zone* zone); 78 PendingCompilationErrorHandler* error_handler, Zone* zone); 168 void AddSpecialExport(const Entry* entry, Zone* zone) { in AddSpecialExport() 184 void AddNamespaceImport(const Entry* entry, Zone* zone) { in AddNamespaceImport() 193 Zone* zone) const; [all …]
|
D | scopes.h | 33 explicit VariableMap(Zone* zone); 36 Zone* zone, Scope* scope, const AstRawString* name, VariableMode mode, 44 Variable* DeclareName(Zone* zone, const AstRawString* name, 49 void Add(Zone* zone, Variable* var); 73 explicit SloppyBlockFunctionMap(Zone* zone); 74 void Declare(Zone* zone, const AstRawString* name, Scope* scope, 99 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type); in NON_EXPORTED_BASE() 135 static Scope* DeserializeScopeChain(Isolate* isolate, Zone* zone, in NON_EXPORTED_BASE() 156 Zone* zone() const { return zone_; } in NON_EXPORTED_BASE() 484 explicit Scope(Zone* zone); in NON_EXPORTED_BASE() [all …]
|
/external/v8/src/regexp/ |
D | regexp-parser.h | 32 void Add(T* value, Zone* zone) { in Add() 82 ZoneList<T*>* GetList(Zone* zone) { in GetList() 102 RegExpBuilder(Zone* zone, JSRegExp::Flags flags); 135 Zone* zone() const { return zone_; } in zone() 138 Zone* zone_; 158 JSRegExp::Flags flags, Isolate* isolate, Zone* zone); 160 static bool ParseRegExp(Isolate* isolate, Zone* zone, FlatStringReader* input, 193 void ParseClassEscape(ZoneList<CharacterRange>* ranges, Zone* zone, 238 JSRegExp::Flags flags, Zone* zone) in RegExpParserState() 312 Zone* zone() const { return zone_; } in zone() [all …]
|