/external/v8/src/zone/ |
D | zone.h | 38 class V8_EXPORT_PRIVATE Zone final { 40 Zone(AccountingAllocator* allocator, const char* name); 41 ~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_; 160 ZoneList(int capacity, Zone* zone) in ZoneList() 164 ZoneList(std::initializer_list<T> list, Zone* zone) in ZoneList() [all …]
|
D | zone-containers.h | 27 explicit ZoneVector(Zone* zone) in ZoneVector() 32 ZoneVector(size_t size, Zone* zone) in ZoneVector() 37 ZoneVector(size_t size, T def, Zone* zone) in ZoneVector() 47 explicit ZoneDeque(Zone* zone) in ZoneDeque() 59 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList() 70 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue() 81 explicit ZoneQueue(Zone* zone) in ZoneQueue() 91 explicit ZoneStack(Zone* zone) in ZoneStack() 101 explicit ZoneSet(Zone* zone) in ZoneSet() 113 explicit ZoneMap(Zone* zone) in ZoneMap() [all …]
|
D | zone.cc | 44 Zone::Zone(AccountingAllocator* allocator, const char* name) in Zone() function in v8::internal::Zone 55 Zone::~Zone() { in ~Zone() 63 void* Zone::New(size_t size) { in New() 98 void Zone::DeleteAll() { in DeleteAll() 119 Segment* Zone::NewSegment(size_t requested_size) { in NewSegment() 131 Address Zone::NewExpand(size_t size) { in NewExpand()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
D | TimeZoneAliasTest.java | 48 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 49 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 50 Zone zone = (Zone)it.next(); in TestAliases() 56 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 57 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 66 Zone otherZone = Zone.make(otherId); in TestAliases() 72 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 74 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 91 Zone last = null; in TestDifferences() 92 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 | 47 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 48 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 49 Zone zone = (Zone)it.next(); in TestAliases() 55 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 56 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 65 Zone otherZone = Zone.make(otherId); in TestAliases() 71 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 73 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 90 Zone last = null; in TestDifferences() 91 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences() [all …]
|
/external/v8/src/compiler/ |
D | load-elimination.h | 25 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone) in NON_EXPORTED_BASE() 39 explicit AbstractChecks(Zone* zone) { in NON_EXPORTED_BASE() 44 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) { in NON_EXPORTED_BASE() 48 AbstractChecks const* Extend(Node* node, Zone* zone) const { in NON_EXPORTED_BASE() 56 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE() 71 explicit AbstractElements(Zone* zone) { in NON_EXPORTED_BASE() 76 AbstractElements(Node* object, Node* index, Node* value, Zone* zone) in NON_EXPORTED_BASE() 82 Zone* zone) const { in NON_EXPORTED_BASE() 89 AbstractElements const* Kill(Node* object, Node* index, Zone* zone) const; in NON_EXPORTED_BASE() 92 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 | value-numbering-reducer.h | 19 explicit ValueNumberingReducer(Zone* temp_zone, Zone* graph_zone); in NON_EXPORTED_BASE() 29 Zone* temp_zone() const { return temp_zone_; } in NON_EXPORTED_BASE() 30 Zone* graph_zone() const { return graph_zone_; } in NON_EXPORTED_BASE() 35 Zone* temp_zone_; in NON_EXPORTED_BASE() 36 Zone* graph_zone_; in NON_EXPORTED_BASE()
|
D | types.h | 305 static Type* New(double value, Zone* zone) { in New() 333 static Type* New(i::Handle<i::HeapObject> value, Zone* zone) { in NON_EXPORTED_BASE() 376 static Type* New(double min, double max, Zone* zone) { in New() 384 static Type* New(Limits lim, Zone* zone) { in New() 432 StructuralType(Kind kind, int length, i::Zone* zone) in StructuralType() 455 TupleType(int length, Zone* zone) : StructuralType(kTuple, length, zone) {} in TupleType() 457 static Type* New(int length, Zone* zone) { in New() 479 UnionType(int length, Zone* zone) : StructuralType(kUnion, length, zone) {} in UnionType() 481 static Type* New(int length, Zone* zone) { in New() 510 static Type* OtherNumberConstant(double value, Zone* zone) { in OtherNumberConstant() [all …]
|
D | type-hint-analyzer.h | 21 explicit TypeHintAnalysis(Infos const& infos, Zone* zone) in TypeHintAnalysis() 31 Zone* zone() const { return zone_; } in zone() 34 Zone* zone_; 41 explicit TypeHintAnalyzer(Zone* zone) : zone_(zone) {} in TypeHintAnalyzer() 46 Zone* zone() const { return zone_; } in zone() 48 Zone* const zone_;
|
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 | redundancy-elimination.h | 16 RedundancyElimination(Editor* editor, Zone* zone); 30 static EffectPathChecks* Copy(Zone* zone, EffectPathChecks const* checks); 31 static EffectPathChecks const* Empty(Zone* zone); 35 EffectPathChecks const* AddCheck(Zone* zone, Node* node) const; 49 explicit PathChecksForEffectNodes(Zone* zone) : info_for_node_(zone) {} in PathChecksForEffectNodes() 65 Zone* zone() const { return zone_; } in zone() 68 Zone* const zone_;
|
D | zone-stats.cc | 16 for (Zone* zone : zone_stats_->zones_) { in StatsScope() 36 for (Zone* zone : zone_stats_->zones_) { in GetCurrentAllocatedBytes() 52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned() 77 for (Zone* zone : zones_) { in GetCurrentAllocatedBytes() 87 Zone* ZoneStats::NewEmptyZone(const char* zone_name) { in NewEmptyZone() 88 Zone* zone = new Zone(allocator_, zone_name); in NewEmptyZone() 93 void ZoneStats::ReturnZone(Zone* zone) { in ReturnZone()
|
D | memory-optimizer.h | 33 MemoryOptimizer(JSGraph* jsgraph, Zone* zone); 43 AllocationGroup(Node* node, PretenureFlag pretenure, Zone* zone); 45 Zone* zone); 66 static AllocationState const* Empty(Zone* zone) { in Empty() 69 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) { in Closed() 73 Node* top, Zone* zone) { in Open() 133 Zone* zone() const { return zone_; } in zone() 140 Zone* const zone_;
|
D | pipeline.cc | 182 Zone* graph_zone() const { return graph_zone_; } in graph_zone() 215 Zone* instruction_zone() const { return instruction_zone_; } in instruction_zone() 219 Zone* register_allocation_zone() const { return register_allocation_zone_; } in register_allocation_zone() 315 Zone* outer_zone_ = nullptr; 324 Zone* graph_zone_ = nullptr; 341 Zone* instruction_zone_; 349 Zone* register_allocation_zone_; 454 JSGraphReducer(JSGraph* jsgraph, Zone* zone) in JSGraphReducer() 481 Zone* zone() { return zone_scope_.zone(); } in zone() 544 Zone zone_; [all …]
|
D | liveness-analyzer.h | 26 bool has_accumulator, Zone* local_zone) in NonLiveFrameStateSlotReplacer() 43 Zone* local_zone() { return local_zone_; } in local_zone() 51 Zone* local_zone_; 60 LivenessAnalyzer(size_t local_count, bool has_accumulator, Zone* zone); 67 Zone* zone() { return zone_; } in zone() 76 Zone* zone_; 139 Zone* zone);
|
/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() 38 Zone* zone); 43 const Scanner::Location loc, Zone* zone); 57 const Scanner::Location loc, Zone* zone); 64 Zone* zone); 69 Zone* zone); 74 PendingCompilationErrorHandler* error_handler, Zone* zone); 151 void AddSpecialExport(const Entry* entry, Zone* zone) { in AddSpecialExport() 167 void AddNamespaceImport(const Entry* entry, Zone* zone) { in AddNamespaceImport() 176 Zone* zone) const; [all …]
|
D | ast-types.h | 406 static AstType* New(i::Handle<i::Map> map, Zone* zone) { in New() 436 static AstType* New(i::Handle<i::Object> value, Zone* zone) { in New() 484 AstBitsetType::bitset representation, Zone* zone) { in New() 493 Zone* zone) { in New() 528 static AstType* New(AstType* outer, Zone* zone) { in New() 557 static AstType* New(AstType* element, Zone* zone) { in New() 595 AstStructuralType(Kind kind, int length, i::Zone* zone) in AstStructuralType() 621 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone) in AstFunctionType() 628 Zone* zone) { in New() 652 AstTupleType(int length, Zone* zone) in AstTupleType() [all …]
|
D | scopes.h | 29 explicit VariableMap(Zone* zone); 31 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name, 39 void Add(Zone* zone, Variable* var); 46 explicit SloppyBlockFunctionMap(Zone* zone); 47 void Declare(Zone* zone, const AstRawString* name, 71 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type); in NON_EXPORTED_BASE() 105 static Scope* DeserializeScopeChain(Isolate* isolate, Zone* zone, in NON_EXPORTED_BASE() 130 Zone* zone() const { return zone_; } in NON_EXPORTED_BASE() 427 explicit Scope(Zone* zone); in NON_EXPORTED_BASE() 434 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name, in NON_EXPORTED_BASE() [all …]
|
/external/v8/src/crankshaft/ |
D | hydrogen-removable-simulates.cc | 15 explicit State(Zone* zone) in State() 18 State* Process(HInstruction* instr, Zone* zone) { in Process() 91 Zone* zone) { in Merge() 97 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { in Finish() 138 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { in Copy() 151 Zone* zone) { in Merge() 164 Zone* zone_; 174 explicit Effects(Zone* zone) { } in Effects() 176 void Process(HInstruction* instr, Zone* zone) { } in Process() 178 void Union(Effects* that, Zone* zone) { } in Union()
|
D | hydrogen-flow-engine.h | 18 explicit NoEffects(Zone* zone) { } in NoEffects() 27 inline void Process(HInstruction* value, Zone* zone) { in Process() 30 inline void Union(NoEffects* other, Zone* zone) { in Union() 39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) { in Copy() 42 inline NoState* Process(HInstruction* value, Zone* zone) { in Process() 45 inline NoState* Merge(HBasicBlock* succ, NoState* other, Zone* zone) { in Merge() 70 HFlowEngine(HGraph* graph, Zone* zone) in HFlowEngine() 208 Zone* zone_; // Temporary zone.
|
/external/v8/src/ |
D | effects.h | 38 static Effect Unknown(Zone* zone) { in Unknown() 42 static Effect Forget(Zone* zone) { in Forget() 47 static Effect Seq(Effect e1, Effect e2, Zone* zone) { in Seq() 53 static Effect Alt(Effect e1, Effect e2, Zone* zone) { in Alt() 79 explicit EffectsMixin(Zone* zone) : Base(zone) {} in EffectsMixin() 174 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {} in EffectsBase() 183 Zone* zone() { return map_->allocator().zone(); } in zone() 224 explicit Effects(Zone* zone) in Effects() 233 explicit NestedEffectsBase(Zone* zone) : node_(new(zone) Node(zone)) {} in NestedEffectsBase() 253 Zone* zone() { return node_->zone; } in zone() [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, bool ignore_case, bool unicode); 129 Zone* zone() const { return zone_; } in zone() 133 Zone* zone_; 154 JSRegExp::Flags flags, Isolate* isolate, Zone* zone); 156 static bool ParseRegExp(Isolate* isolate, Zone* zone, FlatStringReader* input, 227 bool unicode, Zone* zone) in RegExpParserState() 296 Zone* zone() const { return zone_; } in zone() 308 Zone* zone_;
|