/external/clang/test/CodeGenCXX/ |
block-in-ctor-dtor.cpp | 7 class Zone { 9 Zone(); 10 ~Zone(); 13 Zone::Zone() { 18 Zone::~Zone() { 23 class X : public virtual Zone {
|
/external/v8/src/ast/ |
ast-numbering.h | 14 class Zone; 19 bool Renumber(Isolate* isolate, Zone* zone, FunctionLiteral* function);
|
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/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...] |
value-numbering-reducer.h | 16 explicit ValueNumberingReducer(Zone* zone); 25 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 30 Zone* zone_;
|
zone-pool.h | 12 #include "src/zone.h" 26 Zone* zone() { function in class:v8::internal::compiler::final::final 37 Zone* zone_; 52 void ZoneReturned(Zone* zone); 54 typedef std::map<Zone*, size_t> InitialValues; 72 Zone* NewEmptyZone(); 73 void ReturnZone(Zone* zone); [all...] |
type-hint-analyzer.h | 10 #include "src/zone-containers.h" 35 explicit TypeHintAnalyzer(Zone* zone) : zone_(zone) {} 40 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 42 Zone* const zone_;
|
jump-threading.h | 20 static bool ComputeForwarding(Zone* local_zone, ZoneVector<RpoNumber>& result,
|
move-optimizer.h | 9 #include "src/zone-containers.h" 17 MoveOptimizer(Zone* local_zone, InstructionSequence* code); 25 Zone* local_zone() const { return local_zone_; } 26 Zone* code_zone() const { return code()->zone(); } 35 Zone* const local_zone_;
|
bytecode-branch-analysis.h | 10 #include "src/zone-containers.h" 30 BytecodeBranchAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone); 63 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::BASE_EMBEDDED 69 Zone* zone_;
|
control-flow-optimizer.h | 9 #include "src/zone-containers.h" 25 MachineOperatorBuilder* machine, Zone* zone); 40 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 47 Zone* const zone_;
|
node-cache.h | 15 class Zone; 44 Node** Find(Zone* zone, Key key); 58 bool Resize(Zone* zone);
|
all-nodes.h | 9 #include "src/zone-containers.h" 20 AllNodes(Zone* local_zone, const Graph* graph);
|
liveness-analyzer.h | 10 #include "src/zone-containers.h" 26 Zone* local_zone) 40 Zone* local_zone() { return local_zone_; } 48 Zone* local_zone_; 56 LivenessAnalyzer(size_t local_count, Zone* zone); 63 Zone* zone() { return zone_; } function in class:v8::internal::compiler::LivenessAnalyzer 72 Zone* zone_; 115 LivenessAnalyzerBlock(size_t id, size_t local_count, Zone* zone) [all...] |
/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...] |
identity-map.h | 15 class Zone; 27 IdentityMapBase(Heap* heap, Zone* zone) 29 zone_(zone), 51 Zone* zone_; 69 IdentityMap(Heap* heap, Zone* zone) : IdentityMapBase(heap, 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,
|
asm-wasm-builder.h | 10 #include "src/zone.h" 21 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone, FunctionLiteral* root); 26 Zone* zone_;
|
/external/icu/icu4c/source/tools/tzcode/ |
icuzones | 6 # tzdata time zone files, for consistent parsing by the tools that 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%s [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
TimeZoneAliasTest.java | 49 Zone.Seconds seconds = new Zone.Seconds(); 50 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { 51 Zone zone = (Zone)it.next(); local 52 String id = zone.id; 54 if (zone.minRecentOffset != zone.maxRecentOffset) { 57 + ": " + Zone.formatHours(zone.minRecentOffset 115 Zone zone = (Zone)it.next(); local 238 private TimeZone zone; field in class:TimeZoneAliasTest.Zone [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
TimeZoneAliasTest.java | 45 Zone.Seconds seconds = new Zone.Seconds(); 46 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { 47 Zone zone = (Zone)it.next(); local 48 String id = zone.id; 50 if (zone.minRecentOffset != zone.maxRecentOffset) { 53 + ": " + Zone.formatHours(zone.minRecentOffset 111 Zone zone = (Zone)it.next(); local 234 private TimeZone zone; field in class:TimeZoneAliasTest.Zone [all...] |
/external/v8/src/crankshaft/ |
hydrogen-bce.h | 18 explicit BoundsCheckTable(Zone* zone); 20 INLINE(BoundsCheckBbData** LookupOrInsert(BoundsCheckKey* key, Zone* zone)); 21 INLINE(void Insert(BoundsCheckKey* key, BoundsCheckBbData* data, Zone* zone)); 32 : HPhase("H_Bounds checks elimination", graph), table_(zone()) { }
|
hydrogen-removable-simulates.cc | 15 explicit State(Zone* zone) 16 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { } 18 State* Process(HInstruction* instr, Zone* zone) { 91 Zone* zone) { 93 ? pred_state->Copy(succ_block, pred_block, zone) 94 : succ_state->Merge(succ_block, pred_state, pred_block, zone); [all...] |
/external/v8/test/unittests/ |
test-utils.h | 11 #include "src/zone.h" 99 Zone* zone() { return &zone_; } function in class:v8::internal::TestWithZone 102 Zone zone_; 113 Zone* zone() { return &zone_; } function in class:v8::internal::TestWithIsolateAndZone 116 Zone zone_;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ws2def.h | 33 ULONG Zone : 28;
|