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

  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
test7-expected.cc 18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>(); local
19 *heap_allocated = new Foo;
20 return heap_allocated->get();
test7-original.cc 18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>(); local
19 *heap_allocated = new Foo;
20 return *heap_allocated;
test8-expected.cc 23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>(); local
24 *heap_allocated = new Bar;
25 return heap_allocated->get();
test8-original.cc 23 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/
format.cc 72 result->heap_allocated = false;
109 result->heap_allocated = false;
113 result->heap_allocated = true;
133 result->heap_allocated = true;
format.h 89 bool heap_allocated; // True iff caller should delete[] data.data() member in struct:leveldb::BlockContents
block.cc 26 owned_(contents.heap_allocated) {
table.cc 127 if (block.heap_allocated) {
table_test.cc 205 contents.heap_allocated = false;
665 contents.heap_allocated = false;
  /external/chromium_org/v8/test/cctest/
test-api.cc 2671 int* heap_allocated = new int[100]; local
2708 int* heap_allocated = new int[100]; local
    [all...]

Completed in 106 milliseconds