Lines Matching defs:new
126 // Allocate a new handle for the object, do not canonicalize.
154 // Patches this Handle's value, in-place, with a new value. All handles with
192 // handle scope and a new one is created, all allocations will take
193 // place in the new handle scope until it is deleted. After that,
194 // new handles will again be allocated in the original handle scope.
207 // Allow placement new.
208 void* operator new(size_t size, void* storage) {
209 return ::operator new(size, storage);
213 void* operator new(size_t size) = delete;
223 // Create a new handle or lookup a canonical handle.
226 // Creates a new handle with the given value.
287 // A CanonicalHandleScope does not open a new HandleScope. It changes the
294 // If no Zone is passed to this constructor, we create (and own) a new zone.
340 // Seal off the current HandleScope so that new handles can only be created
341 // if a new HandleScope is entered.