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

  /external/v8/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;

Completed in 61 milliseconds