Searched refs:NewArray (Results 1 – 25 of 50) sorted by relevance
12
/external/v8/src/ |
D | allocation.cc | 86 char* result = NewArray<char>(length + 1); in StrDup() 96 char* result = NewArray<char>(length + 1); in StrNDup()
|
D | circular-queue.cc | 48 buffer_(NewArray<Cell>(buffer_size_ + 1)) { in SamplingCircularQueue() 66 positions_ = NewArray<byte>(positions_size); in SamplingCircularQueue()
|
D | preparser-api.cc | 86 pushback_buffer_backing_ = NewArray<uc16>(kPushBackSize); in PushBack() 96 uc16* new_buffer = NewArray<uc16>(pushback_buffer_backing_size_ * 2); in PushBack()
|
D | utils.cc | 92 result = NewArray<char>(len + 1); in ReadLine() 96 char* new_result = NewArray<char>(new_len); in ReadLine() 129 char* result = NewArray<char>(*size + extra_space); in ReadCharsFromFile()
|
D | data-flow.h | 93 data_(ZONE->NewArray<uint32_t>(data_length_)) { in BitVector() 101 data_(ZONE->NewArray<uint32_t>(data_length_)) { in BitVector() 240 sparse_(ZONE->NewArray<int>(universe_size)) { in SparseSet()
|
D | regexp-stack.cc | 94 Address new_memory = NewArray<byte>(static_cast<int>(size)); in EnsureCapacity()
|
D | allocation.h | 84 static T* NewArray(int size) { in NewArray() function
|
D | zone-inl.h | 68 T* Zone::NewArray(int length) { in NewArray() function
|
D | zone.h | 64 inline T* NewArray(int length);
|
D | string-stream.cc | 39 space_ = NewArray<char>(bytes); in allocate() 254 char* str = NewArray<char>(length_ + 1); in ToCString() 572 char* new_space = NewArray<char>(new_bytes); in grow()
|
D | log-utils.h | 68 blocks_[index] = NewArray<char>(block_size_); in AllocateBlock()
|
D | utils.h | 307 return Vector<T>(NewArray<T>(length), length); in New() 342 T* result = NewArray<T>(length_); in Clone() 452 explicit ScopedVector(int length) : Vector<T>(NewArray<T>(length), length) { } in ScopedVector()
|
D | compilation-cache.h | 46 tables_ = NewArray<Object*>(generations); in CompilationSubCache()
|
D | debug-agent.cc | 309 char* buffer = NewArray<char>(content_length + 1); in ReceiveMessage()
|
D | log-utils.cc | 147 message_buffer_ = NewArray<char>(kMessageBufferSize); in Initialize()
|
D | v8threads.cc | 236 data_ = NewArray<char>(ArchiveSpacePerThread()); in AllocateSpace()
|
D | flags.cc | 407 const char** js_argv = NewArray<const char*>(js_argc); in SetFlagsFromCommandLine()
|
D | liveedit.cc | 70 buffer_ = NewArray<int>(len1_ * len2_); in Differencer() 1118 buffer_ = NewArray<byte>(buffer_size_); in RelocInfoBuffer() 1158 byte* new_buffer = NewArray<byte>(new_buffer_size); in Grow()
|
/external/javassist/src/main/javassist/expr/ |
D | ExprEditor.java | 231 expr = new NewArray(pos, iterator, clazz, minfo, c); in loopBody() 232 edit((NewArray)expr); in loopBody() 271 public void edit(NewArray a) throws CannotCompileException {} in edit()
|
D | NewArray.java | 29 public class NewArray extends Expr { class 32 protected NewArray(int pos, CodeIterator i, CtClass declaring, in NewArray() method in NewArray
|
/external/v8/test/cctest/ |
D | test-strings.cc | 116 uc16* buf = ZONE->NewArray<uc16>(len); in InitializeBuildingBlocks() 128 char* buf = NewArray<char>(len); in InitializeBuildingBlocks() 284 char* foo = NewArray<char>(DEEP_ASCII_DEPTH); in TEST() 368 char* ascii = ZONE->NewArray<char>(i + 1); in TEST() 380 uc16* non_ascii = ZONE->NewArray<uc16>(i + 1); in TEST()
|
D | test-spaces.cc | 61 byte* mem = NewArray<byte>(2*Page::kPageSize); in TEST()
|
D | test-compiler.cc | 75 uint16_t* string = NewArray<uint16_t>(length + 1); in Print()
|
D | test-mark-compact.cc | 49 byte* mem = NewArray<byte>(20*kPointerSize); in TEST()
|
/external/icu4c/common/unicode/ |
D | uobject.h | 106 static void * NewArray(int size, int count);
|
12