/external/v8/src/zone/ |
D | zone.h | 38 class V8_EXPORT_PRIVATE Zone final { 40 Zone(AccountingAllocator* allocator, const char* name); 41 ~Zone(); 120 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new() 131 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete() 138 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) {} in ZoneAllocationPolicy() 141 Zone* zone() const { return zone_; } in zone() 144 Zone* zone_; 156 ZoneList(int capacity, Zone* zone) in ZoneList() 160 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() 43 ZoneVector(InputIt first, InputIt last, Zone* zone) in ZoneVector() 54 explicit ZoneDeque(Zone* zone) in ZoneDeque() 66 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList() 77 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue() 88 explicit ZoneQueue(Zone* zone) in ZoneQueue() 98 explicit ZoneStack(Zone* zone) in ZoneStack() 108 explicit ZoneSet(Zone* zone) in ZoneSet() [all …]
|
D | zone.cc | 45 Zone::Zone(AccountingAllocator* allocator, const char* name) in Zone() function in v8::internal::Zone 57 Zone::~Zone() { in ~Zone() 65 void* Zone::New(size_t size) { in New() 94 void Zone::DeleteAll() { in DeleteAll() 115 Segment* Zone::NewSegment(size_t requested_size) { in NewSegment() 127 Address Zone::NewExpand(size_t size) { in NewExpand()
|
/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 | 30 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone) in NON_EXPORTED_BASE() 44 explicit AbstractChecks(Zone* zone) { in NON_EXPORTED_BASE() 49 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) { in NON_EXPORTED_BASE() 53 AbstractChecks const* Extend(Node* node, Zone* zone) const { in NON_EXPORTED_BASE() 61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE() 76 explicit AbstractElements(Zone* zone) { in NON_EXPORTED_BASE() 81 AbstractElements(Node* object, Node* index, Node* value, Zone* zone) in NON_EXPORTED_BASE() 87 Zone* zone) const { in NON_EXPORTED_BASE() 94 AbstractElements const* Kill(Node* object, Node* index, Zone* zone) const; in NON_EXPORTED_BASE() 97 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 | 324 static Type* New(double value, Zone* zone) { in New() 352 static Type* New(i::Handle<i::HeapObject> value, Zone* zone) { in NON_EXPORTED_BASE() 395 static Type* New(double min, double max, Zone* zone) { in New() 403 static Type* New(Limits lim, Zone* zone) { in New() 451 StructuralType(Kind kind, int length, i::Zone* zone) in StructuralType() 474 TupleType(int length, Zone* zone) : StructuralType(kTuple, length, zone) {} in TupleType() 476 static Type* New(int length, Zone* zone) { in New() 498 UnionType(int length, Zone* zone) : StructuralType(kUnion, length, zone) {} in UnionType() 500 static Type* New(int length, Zone* zone) { in New() 529 static Type* OtherNumberConstant(double value, Zone* zone) { in OtherNumberConstant() [all …]
|
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 | 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 | 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; 50 explicit PathChecksForEffectNodes(Zone* zone) : info_for_node_(zone) {} in PathChecksForEffectNodes() 68 Zone* zone() const { return zone_; } in zone() 71 Zone* const zone_;
|
D | memory-optimizer.h | 34 MemoryOptimizer(JSGraph* jsgraph, Zone* zone); 44 AllocationGroup(Node* node, PretenureFlag pretenure, Zone* zone); 46 Zone* zone); 67 static AllocationState const* Empty(Zone* zone) { in Empty() 70 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) { in Closed() 74 Node* top, Zone* zone) { in Open() 134 Zone* zone() const { return zone_; } in zone() 142 Zone* const zone_;
|
D | pipeline.cc | 201 Zone* graph_zone() const { return graph_zone_; } in graph_zone() 228 Zone* instruction_zone() const { return instruction_zone_; } in instruction_zone() 232 Zone* register_allocation_zone() const { return register_allocation_zone_; } in register_allocation_zone() 334 Zone* outer_zone_ = nullptr; 345 Zone* graph_zone_ = nullptr; 361 Zone* instruction_zone_; 369 Zone* register_allocation_zone_; 477 JSGraphReducer(JSGraph* jsgraph, Zone* zone) in JSGraphReducer() 504 Zone* zone() { return zone_scope_.zone(); } in zone() 737 void Run(PipelineData* data, Zone* temp_zone) { in Run() [all …]
|
D | register-allocator.h | 191 UseInterval* SplitAt(LifetimePosition pos, Zone* zone); 385 Zone* zone, HintConnectionOption connect_hints); in NON_EXPORTED_BASE() 389 LiveRange* SplitAt(LifetimePosition position, Zone* zone); in NON_EXPORTED_BASE() 474 explicit LiveRangeGroup(Zone* zone) : ranges_(zone) {} in LiveRangeGroup() 508 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 509 void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 519 void Splinter(LifetimePosition start, LifetimePosition end, Zone* zone); 523 void Merge(TopLevelLiveRange* other, Zone* zone); 556 void RecordSpillLocation(Zone* zone, int gap_index, 574 void TreatAsSpilledInDeferredBlock(Zone* zone, int total_block_count) { in TreatAsSpilledInDeferredBlock() [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/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 | 404 static AstType* New(i::Handle<i::Map> map, Zone* zone) { in New() 434 static AstType* New(i::Handle<i::Object> value, Zone* zone) { in New() 482 AstBitsetType::bitset representation, Zone* zone) { in New() 491 Zone* zone) { in New() 526 static AstType* New(AstType* outer, Zone* zone) { in New() 555 static AstType* New(AstType* element, Zone* zone) { in New() 593 AstStructuralType(Kind kind, int length, i::Zone* zone) in AstStructuralType() 619 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone) in AstFunctionType() 626 Zone* zone) { in New() 650 AstTupleType(int length, Zone* zone) in AstTupleType() [all …]
|
D | scopes.h | 31 explicit VariableMap(Zone* zone); 34 Zone* zone, Scope* scope, const AstRawString* name, VariableMode mode, 42 Variable* DeclareName(Zone* zone, const AstRawString* name, 47 void Add(Zone* zone, Variable* var); 70 explicit SloppyBlockFunctionMap(Zone* zone); 71 void Declare(Zone* zone, const AstRawString* name, Delegate* delegate); 94 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type); in NON_EXPORTED_BASE() 128 static Scope* DeserializeScopeChain(Isolate* isolate, Zone* zone, in NON_EXPORTED_BASE() 153 Zone* zone() const { return zone_; } in NON_EXPORTED_BASE() 467 explicit Scope(Zone* zone); in NON_EXPORTED_BASE() [all …]
|
/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/crankshaft/ |
D | hydrogen-removable-simulates.cc | 16 explicit State(Zone* zone) in State() 19 State* Process(HInstruction* instr, Zone* zone) { in Process() 92 Zone* zone) { in Merge() 98 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { in Finish() 139 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { in Copy() 152 Zone* zone) { in Merge() 165 Zone* zone_; 175 explicit Effects(Zone* zone) { } in Effects() 177 void Process(HInstruction* instr, Zone* zone) { } in Process() 179 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_;
|