Searched defs:ReserveSpace (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome_frame/infobars/internal/
H A Dinfobar_window.cc73 // Force a call to ReserveSpace, which will capture the width of the displaced
94 void InfobarWindow::ReserveSpace(RECT* rect) { function in class:InfobarWindow
/external/chromium_org/v8/src/
H A Dspaces.cc2473 bool NewSpace::ReserveSpace(int bytes) { function in class:v8::NewSpace
2492 return ReserveSpace(bytes);
2530 bool PagedSpace::ReserveSpace(int size_in_bytes) { function in class:v8::PagedSpace
2569 bool LargeObjectSpace::ReserveSpace(int bytes) { function in class:v8::LargeObjectSpace
H A Dspaces.h1703 virtual bool ReserveSpace(int bytes);
2104 virtual bool ReserveSpace(int bytes) { function in class:v8::internal::SemiSpace
2445 virtual bool ReserveSpace(int bytes);
2755 // See the comments for ReserveSpace in the Space class. This has to be
2756 // called after ReserveSpace has been called on the paged spaces, since they
2758 virtual bool ReserveSpace(int bytes);
H A Dheap.cc784 void Heap::ReserveSpace( function in class:v8::internal::Heap
826 V8::FatalProcessOutOfMemory("Heap::ReserveSpace");
/external/v8/src/
H A Dspaces.cc929 // immediately initialize it (e.g. see PagedSpace::ReserveSpace
930 // called from Heap::ReserveSpace that can cause GC before
2149 bool NewSpace::ReserveSpace(int bytes) { function in class:v8::NewSpace
2168 return ReserveSpace(bytes);
2206 bool PagedSpace::ReserveSpace(int size_in_bytes) { function in class:v8::PagedSpace
2231 bool LargeObjectSpace::ReserveSpace(int bytes) { function in class:v8::LargeObjectSpace
H A Dheap.cc603 void Heap::ReserveSpace( function in class:v8::internal::Heap
623 if (!new_space->ReserveSpace(new_space_size)) {
628 if (!old_pointer_space->ReserveSpace(pointer_space_size)) {
633 if (!(old_data_space->ReserveSpace(data_space_size))) {
638 if (!(code_space->ReserveSpace(code_space_size))) {
643 if (!(map_space->ReserveSpace(map_space_size))) {
648 if (!(cell_space->ReserveSpace(cell_space_size))) {
656 // The ReserveSpace method on the large object space checks how much
661 if (!(lo_space->ReserveSpace(large_object_size))) {
670 V8::FatalProcessOutOfMemory("Heap::ReserveSpace");
[all...]
H A Dspaces.h797 virtual bool ReserveSpace(int bytes) = 0;
1511 virtual bool ReserveSpace(int bytes);
1894 virtual bool ReserveSpace(int bytes) { function in class:v8::internal::SemiSpace
2226 virtual bool ReserveSpace(int bytes);
2518 // See the comments for ReserveSpace in the Space class. This has to be
2519 // called after ReserveSpace has been called on the paged spaces, since they
2521 virtual bool ReserveSpace(int bytes);

Completed in 178 milliseconds