HomeSort by relevance Sort by last modified time
    Searched defs:Zone (Results 1 - 8 of 8) sorted by null

  /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/chromium_org/v8/src/
zone.cc 8 #include "src/zone-inl.h"
47 Zone::Zone(Isolate* isolate)
57 Zone::~Zone() {
65 void Zone::DeleteAll() {
117 void Zone::DeleteKeptSegment() {
142 Segment* Zone::NewSegment(int size) {
154 void Zone::DeleteSegment(Segment* segment, int size) {
160 Address Zone::NewExpand(int size)
    [all...]
zone.h 22 // The Zone supports very fast allocation of small chunks of
24 // the Zone supports deallocating all chunks in one fast
25 // operation. The Zone is used to hold temporary data structures like
28 // Note: There is no need to initialize the Zone; the first time an
35 class Zone {
37 explicit Zone(Isolate* isolate);
38 ~Zone();
39 // Allocate 'size' bytes of memory in the Zone; expands the Zone by
46 // Deletes all objects and free all memory allocated in the Zone. Keeps on
148 Zone* zone() { return zone_; } function in struct:v8::internal::ZoneScope
162 Zone* zone() { return zone_; } function in struct:v8::internal::ZoneAllocationPolicy
    [all...]
parser.h 146 void Add(T* value, Zone* zone) {
149 list_ = new(zone) ZoneList<T*>(initial_size, zone);
151 list_->Add(last_, zone);
196 ZoneList<T*>* GetList(Zone* zone) {
198 list_ = new(zone) ZoneList<T*>(initial_size, zone);
201 list_->Add(last_, zone);
232 Zone* zone() const { return zone_; } function in class:v8::internal::RegExpBuilder
347 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
preparser.h 43 // typedef Zone;
68 typename Traits::Type::Zone* zone,
85 zone_(zone) { }
152 typename Traits::Type::Zone* zone = NULL);
209 typename Traits::Type::Zone* extra_param_;
237 typename Traits::Type::Zone* zone() const { return zone_; } function in class:v8::internal::ParserBase
488 typename Traits::Type::Zone* zone_; // Only used by Parser
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ws2def.h 33 ULONG Zone : 28;
wininet.h     [all...]
  /external/smack/src/org/xbill/DNS/
Zone.java 9 * A DNS Zone. This encapsulates all data related to a Zone, and provides
15 public class Zone implements Serializable {
19 /** A primary zone */
22 /** A secondary zone */
40 synchronized (Zone.this) {
120 " does not match zone origin " +
128 * Creates a Zone from the records in the specified master file.
129 * @param zone The name of the zone
    [all...]

Completed in 370 milliseconds