Home | History | Annotate | Download | only in src

Lines Matching full:static

41   static bool Initialize(const char* snapshot_file = NULL);
44 static Handle<Context> NewContextFromSnapshot();
47 static bool IsEnabled() { return size_ != 0; }
51 static bool WriteToFile(const char* snapshot_file);
53 static const byte* data() { return data_; }
54 static int size() { return size_; }
55 static int raw_size() { return raw_size_; }
56 static void set_raw_data(const byte* raw_data) {
59 static const byte* context_data() { return context_data_; }
60 static int context_size() { return context_size_; }
61 static int context_raw_size() { return context_raw_size_; }
62 static void set_context_raw_data(
68 static const byte data_[];
69 static const byte* raw_data_;
70 static const byte context_data_[];
71 static const byte* context_raw_data_;
72 static const int new_space_used_;
73 static const int pointer_space_used_;
74 static const int data_space_used_;
75 static const int code_space_used_;
76 static const int map_space_used_;
77 static const int cell_space_used_;
78 static const int large_space_used_;
79 static const int size_;
80 static const int raw_size_;
81 static const int context_size_;
82 static const int context_raw_size_;
84 static bool Deserialize(const byte* content, int len);