Searched refs:heap_allocated (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest7-expected.cc18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>(); local
19 *heap_allocated = new Foo;
20 return heap_allocated->get();
H A Dtest7-original.cc18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>(); local
19 *heap_allocated = new Foo;
20 return *heap_allocated;
H A Dtest8-expected.cc23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>(); local
24 *heap_allocated = new Bar;
25 return heap_allocated->get();
H A Dtest8-original.cc23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>(); local
24 *heap_allocated = new Bar;
25 return *heap_allocated;
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dformat.cc72 result->heap_allocated = false;
109 result->heap_allocated = false;
113 result->heap_allocated = true;
133 result->heap_allocated = true;
H A Dformat.h89 bool heap_allocated; // True iff caller should delete[] data.data() member in struct:leveldb::BlockContents
H A Dblock.cc26 owned_(contents.heap_allocated) {
H A Dtable.cc127 if (block.heap_allocated) {
H A Dtable_test.cc205 contents.heap_allocated = false;
665 contents.heap_allocated = false;
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2671 int* heap_allocated = new int[100]; local
2672 CheckAlignedPointerInInternalField(obj, heap_allocated);
2673 delete[] heap_allocated;
2708 int* heap_allocated = new int[100]; local
2709 CheckAlignedPointerInEmbedderData(&env, 1, heap_allocated);
2710 delete[] heap_allocated;

Completed in 177 milliseconds