HomeSort by relevance Sort by last modified time
    Searched defs:heap_allocated (Results 1 - 5 of 5) 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;
  /external/tensorflow/tensorflow/core/lib/io/
format.h 94 bool heap_allocated; // True iff caller should delete[] data.data() member in struct:tensorflow::table::BlockContents

Completed in 265 milliseconds