/external/v8/src/ |
D | zone.h | 36 class Zone final { 38 Zone(); 39 ~Zone(); 126 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new() 137 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete() 145 explicit ZoneScope(Zone* zone) : zone_(zone) { } in ZoneScope() 148 Zone* zone() const { return zone_; } in zone() 151 Zone* zone_; 159 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) { } in ZoneAllocationPolicy() 162 Zone* zone() const { return zone_; } in zone() [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() 48 explicit ZoneDeque(Zone* zone) in ZoneDeque() 61 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList() 73 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue() 85 explicit ZoneQueue(Zone* zone) in ZoneQueue() 96 explicit ZoneStack(Zone* zone) in ZoneStack() 107 explicit ZoneSet(Zone* zone) in ZoneSet() 120 explicit ZoneMap(Zone* zone) in ZoneMap()
|
D | interface-descriptors.cc | 12 Type* SmiType(Zone* zone) { in SmiType() 17 Type* UntaggedIntegral32(Zone* zone) { in UntaggedIntegral32() 22 Type* AnyTagged(Zone* zone) { in AnyTagged() 29 Type* ExternalPointer(Zone* zone) { in ExternalPointer() 37 Zone* zone = isolate->interface_descriptor_zone(); in BuildDefaultFunctionType() 92 Zone* zone = isolate->interface_descriptor_zone(); in BuildCallInterfaceDescriptorFunctionType() 143 Zone* zone = isolate->interface_descriptor_zone(); in BuildCallInterfaceDescriptorFunctionType() 157 Zone* zone = isolate->interface_descriptor_zone(); in BuildCallInterfaceDescriptorFunctionType() 175 Zone* zone = isolate->interface_descriptor_zone(); in BuildCallInterfaceDescriptorFunctionType() 243 Zone* zone = isolate->interface_descriptor_zone(); in BuildCallInterfaceDescriptorFunctionType() [all …]
|
D | zone.cc | 76 Zone::Zone() in Zone() function in v8::internal::Zone 84 Zone::~Zone() { in ~Zone() 92 void* Zone::New(size_t size) { in New() 125 void Zone::DeleteAll() { in DeleteAll() 178 void Zone::DeleteKeptSegment() { in DeleteKeptSegment() 203 Segment* Zone::NewSegment(size_t size) { in NewSegment() 215 void Zone::DeleteSegment(Segment* segment, size_t size) { in DeleteSegment() 221 Address Zone::NewExpand(size_t size) { in NewExpand()
|
D | effects.h | 37 static Effect Unknown(Zone* zone) { in Unknown() 41 static Effect Forget(Zone* zone) { in Forget() 46 static Effect Seq(Effect e1, Effect e2, Zone* zone) { in Seq() 52 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneAliasTest.java | 45 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 46 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 47 Zone zone = (Zone)it.next(); in TestAliases() 53 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 54 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 63 Zone otherZone = Zone.make(otherId); in TestAliases() 69 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 71 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 85 Zone last = null; in TestDifferences() 86 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
D | TimeZoneAliasTest.java | 49 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases() 50 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases() 51 Zone zone = (Zone)it.next(); in TestAliases() 57 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases() 58 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases() 67 Zone otherZone = Zone.make(otherId); in TestAliases() 73 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases() 75 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases() 89 Zone last = null; in TestDifferences() 90 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences() [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 | 14 # Zone NAME GMTOFF RULES FORMAT 15 Zone Etc/Unknown 0 - Unknown 20 # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL] 21 Zone SystemV/AST4ADT -4:00 SystemV A%sT 22 Zone SystemV/EST5EDT -5:00 SystemV E%sT 23 Zone SystemV/CST6CDT -6:00 SystemV C%sT 24 Zone SystemV/MST7MDT -7:00 SystemV M%sT 25 Zone SystemV/PST8PDT -8:00 SystemV P%sT 26 Zone SystemV/YST9YDT -9:00 SystemV Y%sT 27 Zone SystemV/AST4 -4:00 - AST [all …]
|
/external/v8/src/compiler/ |
D | live-range-separator.h | 13 class Zone; variable 23 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone) in LiveRangeSeparator() 30 Zone* zone() const { return zone_; } in zone() 33 Zone* const zone_; 41 LiveRangeMerger(RegisterAllocationData* data, Zone* zone) in LiveRangeMerger() 48 Zone* zone() const { return zone_; } in zone() 56 Zone* const zone_;
|
D | zone-pool.h | 26 Zone* zone() { in zone() 37 Zone* zone_; 52 void ZoneReturned(Zone* zone); 54 typedef std::map<Zone*, size_t> InitialValues; 72 Zone* NewEmptyZone(); 73 void ReturnZone(Zone* zone); 76 typedef std::vector<Zone*> Unused; 77 typedef std::vector<Zone*> Used;
|
D | pipeline.cc | 194 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() 300 Zone* outer_zone_; 309 Zone* graph_zone_; 327 Zone* instruction_zone_; 335 Zone* register_allocation_zone_; 375 AstGraphBuilderWithPositions(Zone* local_zone, CompilationInfo* info, in AstGraphBuilderWithPositions() 429 JSGraphReducer(JSGraph* jsgraph, Zone* zone) in JSGraphReducer() 456 Zone* zone() { return zone_scope_.zone(); } in zone() [all …]
|
D | zone-pool.cc | 39 for (Zone* zone : zone_pool_->used_) { in GetCurrentAllocatedBytes() 56 void ZonePool::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned() 74 for (Zone* zone : unused_) { in ~ZonePool() 87 for (Zone* zone : used_) { in GetCurrentAllocatedBytes() 99 Zone* ZonePool::NewEmptyZone() { in NewEmptyZone() 100 Zone* zone; in NewEmptyZone() 106 zone = new Zone(); in NewEmptyZone() 114 void ZonePool::ReturnZone(Zone* zone) { in ReturnZone()
|
D | liveness-analyzer.h | 26 Zone* local_zone) in NonLiveFrameStateSlotReplacer() 40 Zone* local_zone() { return local_zone_; } in local_zone() 48 Zone* local_zone_; 56 LivenessAnalyzer(size_t local_count, Zone* zone); 63 Zone* zone() { return zone_; } in zone() 72 Zone* zone_; 115 LivenessAnalyzerBlock(size_t id, size_t local_count, Zone* zone);
|
D | move-optimizer.h | 17 MoveOptimizer(Zone* local_zone, InstructionSequence* code); 25 Zone* local_zone() const { return local_zone_; } in local_zone() 26 Zone* code_zone() const { return code()->zone(); } in code_zone() 35 Zone* const local_zone_;
|
D | register-allocator.h | 185 UseInterval* SplitAt(LifetimePosition pos, Zone* zone); 370 Zone* zone); 374 LiveRange* SplitAt(LifetimePosition position, Zone* zone); 480 explicit LiveRangeGroup(Zone* zone) : ranges_(zone) {} in LiveRangeGroup() 516 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 517 void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone); 527 void Splinter(LifetimePosition start, LifetimePosition end, Zone* zone); 531 void Merge(TopLevelLiveRange* other, Zone* zone); 564 void RecordSpillLocation(Zone* zone, int gap_index, 679 SpillRange(TopLevelLiveRange* range, Zone* zone); [all …]
|
D | branch-elimination.h | 19 BranchElimination(Editor* editor, JSGraph* js_graph, Zone* zone); 41 const ControlPathConditions* AddCondition(Zone* zone, Node* condition, 43 static const ControlPathConditions* Empty(Zone* zone); 66 PathConditionsForControlNodes(Zone* zone, size_t size_hint) in PathConditionsForControlNodes() 89 Zone* zone_;
|
/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.
|
D | lithium-allocator.h | 132 void SplitAt(LifetimePosition pos, Zone* zone); 192 LiveRange(int id, Zone* zone); 203 LOperand* CreateAssignedOperand(Zone* zone); 206 void set_assigned_register(int reg, Zone* zone); 207 void MakeSpilled(Zone* zone); 235 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone); 280 Zone* zone); 283 Zone* zone); 287 Zone* zone); 299 void ConvertOperands(Zone* zone); [all …]
|
/external/v8/src/wasm/ |
D | encoder.h | 31 WasmFunctionEncoder(Zone* zone, LocalType return_type, bool exported, 69 WasmFunctionEncoder* Build(Zone* zone, WasmModuleBuilder* mb) const; 72 explicit WasmFunctionBuilder(Zone* zone); 88 WasmDataSegmentEncoder(Zone* zone, const byte* data, uint32_t size, 114 WasmModuleIndex* WriteTo(Zone* zone) const; 118 explicit WasmModuleWriter(Zone* zone); 128 explicit WasmModuleBuilder(Zone* zone); 135 WasmModuleWriter* Build(Zone* zone); 143 Zone* zone_;
|
/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 explicit RegExpBuilder(Zone* zone); 119 Zone* zone() const { return zone_; } in zone() 121 Zone* zone_; 139 bool unicode, Isolate* isolate, Zone* zone); 141 static bool ParseRegExp(Isolate* isolate, Zone* zone, FlatStringReader* input, 206 int disjunction_capture_index, Zone* zone) in RegExpParserState() 246 Zone* zone() const { return zone_; } in zone() 256 Zone* zone_;
|
/external/v8/src/ast/ |
D | modules.h | 22 static ModuleDescriptor* New(Zone* zone) { in New() 32 const AstRawString* local_name, Zone* zone, bool* ok); 36 void AddModuleRequest(const AstRawString* module_specifier, Zone* zone); 66 Zone* zone); 106 explicit ModuleDescriptor(Zone* zone) in ModuleDescriptor()
|
D | scopes.h | 21 explicit VariableMap(Zone* zone); 32 Zone* zone() const { return zone_; } in zone() 35 Zone* zone_; 45 explicit DynamicScopePart(Zone* zone) { in DynamicScopePart() 64 explicit SloppyBlockFunctionMap(Zone* zone); 74 Zone* zone_; 92 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type, 101 static Scope* DeserializeScopeChain(Isolate* isolate, Zone* zone, 125 Zone* zone() const { return zone_; } in zone() 808 Scope(Zone* zone, Scope* inner_scope, ScopeType type, [all …]
|
D | ast.h | 131 explicit FeedbackVectorSlotCache(Zone* zone) in FeedbackVectorSlotCache() 147 Zone* zone_; 162 explicit AstProperties(Zone* zone) : node_count_(0), spec_(zone) {} in AstProperties() 190 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in DEFINE_OPERATORS_FOR_FLAGS() 236 explicit Statement(Zone* zone, int position) : AstNode(position) {} in Statement() 247 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {} in SmallMapList() 249 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); } in Reserve() 256 void AddMapIfMissing(Handle<Map> map, Zone* zone) { in AddMapIfMissing() 272 void Add(Handle<Map> handle, Zone* zone) { in Add() 377 Expression(Zone* zone, int pos) in Expression() [all …]
|