HomeSort by relevance Sort by last modified time
    Searched refs:zone_allocator (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
zone-allocator.h 16 class zone_allocator { class in namespace:v8::internal
26 typedef zone_allocator<O> other;
29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} function in class:v8::internal::zone_allocator
30 explicit zone_allocator(const zone_allocator& other) throw() function in class:v8::internal::zone_allocator
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw() function in class:v8::internal::zone_allocator
34 template<typename U> friend class zone_allocator;
53 bool operator==(zone_allocator const& other) const {
56 bool operator!=(zone_allocator const& other) const
    [all...]
zone-containers.h 24 class ZoneVector : public std::vector<T, zone_allocator<T>> {
28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {}
33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {}
38 : std::vector<T, zone_allocator<T>>(size, def, zone_allocator<T>(zone)) {}
45 class ZoneDeque : public std::deque<T, zone_allocator<T>> {
49 : std::deque<T, zone_allocator<T>>(zone_allocator<T>(zone)) {
    [all...]
  /external/v8/src/compiler/
instruction.h     [all...]

Completed in 1084 milliseconds