Home
last modified time | relevance | path

Searched refs:FixedStringAllocator (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/strings/
Dstring-stream.h46 class FixedStringAllocator final : public StringAllocator {
48 FixedStringAllocator(char* buffer, unsigned length) in FixedStringAllocator() function
50 ~FixedStringAllocator() override = default;
51 FixedStringAllocator(const FixedStringAllocator&) = delete;
52 FixedStringAllocator& operator=(const FixedStringAllocator&) = delete;
Dstring-stream.cc26 char* FixedStringAllocator::allocate(unsigned bytes) { in allocate()
31 char* FixedStringAllocator::grow(unsigned* old) { in grow()
/third_party/node/deps/v8/src/execution/
Disolate.cc684 FixedStringAllocator fixed(&js_stack_trace_[0], buffer_length - 1); in StackTraceFailureMessage()