/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/icu4c/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/v8/src/ |
zone.cc | 30 #include "zone-inl.h" 37 Zone::Zone() 45 unsigned Zone::allocation_size_ = 0; 50 if (ShouldDeleteOnExit()) isolate_->zone()->DeleteAll(); 51 isolate_->zone()->scope_nesting_--; 81 friend class Zone; 87 Segment* Zone::NewSegment(int size) { 100 void Zone::DeleteSegment(Segment* segment, int size) { 106 void Zone::DeleteAll() [all...] |
zone-inl.h | 32 #include "zone.h" 50 inline void* Zone::New(int size) { 68 T* Zone::NewArray(int length) { 73 bool Zone::excess_allocation() { 78 void Zone::adjust_segment_bytes_allocated(int delta) { 87 // in the destructor. For a zone-allocated tree, nodes will be 88 // freed by the Zone. 94 // operator that takes the zone in which the object should be 97 return ZONE->New(static_cast<int>(size)); 100 void* ZoneObject::operator new(size_t size, Zone* zone) [all...] |
zone.h | 35 // Zone scopes are in one of two modes. Either they delete the zone 44 // The Zone supports very fast allocation of small chunks of 46 // the Zone supports deallocating all chunks in one fast 47 // operation. The Zone is used to hold temporary data structures like 50 // Note: There is no need to initialize the Zone; the first time an 57 class Zone { 59 // Allocate 'size' bytes of memory in the Zone; expands the Zone by 66 // Delete all objects and free all memory allocated in the Zone [all...] |
hydrogen.h | 37 #include "zone.h" 144 inline Zone* zone(); 207 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::HGraph 310 Zone* HBasicBlock::zone() { return graph_->zone(); } function in class:v8::internal::HBasicBlock 474 inline Zone* zone() 904 Zone* zone() { return zone_; } function in class:v8::internal::HGraphBuilder 933 Zone* AstContext::zone() { return owner_->zone(); } function in class:v8::internal::AstContext [all...] |
parser.h | 283 Zone* zone() { return zone_; } function in class:v8::internal::RegExpBuilder 285 Zone* zone_; 395 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::RegExpParser 461 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::Parser
|
isolate.h | 45 #include "zone.h" 854 Zone* zone() { return &zone_; } function in class:v8::internal::Isolate [all...] |
hydrogen.cc | 78 loop_information_ = new(zone()) HLoopInformation(this); 110 HBlockEntry* entry = new(zone()) HBlockEntry(); 123 HDeoptimize* instr = new(zone()) HDeoptimize(environment->length()); 143 HSimulate* instr = new(zone()) HSimulate(id, pop_count); 171 AddInstruction(new(zone()) HLeaveInlined); 175 HGoto* instr = new(zone()) HGoto(block); 184 AddInstruction(new(zone()) HLeaveInlined); 188 HGoto* instr = new(zone()) HGoto(target); 496 HConstant* constant = new(zone()) HConstant(Handle<Object>(value), 584 new(zone()) HEnvironment(NULL, info->scope(), info->closure()) 1276 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED 1499 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED 5750 Zone* zone = closure()->GetIsolate()->zone(); local [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.merit | 12 ATTRIBUTE Framed-AppleTalk-Zone 39 string
|
/external/chromium/net/base/ |
dnssec_chain_verifier.h | 69 struct Zone; 87 Error EnterZone(const base::StringPiece& zone); 94 Zone* current_zone_; 99 // already_entered_zone_ is set to true when we unwind a Zone chain and start 100 // off from a point where we have already entered a zone.
|
dnssec_chain_verifier.cc | 23 A DNSSEC chain verifier can be in one of two states: entering a zone, or within a zone. Initially, the verifier is entering the root zone. 25 When entering a zone, the verifier reads the following structure: 44 If only a trusted key is needed within this zone, then the signature length MAY be zero. In which case, |entryKey| MUST be 0 and |numKeys| MUST be 1. 46 After processing this data, the verifier trusts one or more keys for this zone. 48 When within a zone, the verifier reads the following structure: 55 |name| must be closer to the current target domain than the current zone. Here, 'closer' is defined as a greater number of matching labels when comparing right to left. 59 DS: this indicates a zone transition to a new zone named |name|. The verifier reads the following structure [all...] |