HomeSort by relevance Sort by last modified time
    Searched refs:heap_allocated (Results 1 - 8 of 8) 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.cc 84 result->heap_allocated = false;
128 result->heap_allocated = false;
132 result->heap_allocated = true;
152 result->heap_allocated = true;
format.h 94 bool heap_allocated; // True iff caller should delete[] data.data() member in struct:tensorflow::table::BlockContents
block.cc 37 owned_(contents.heap_allocated) {
table_test.cc 206 contents.heap_allocated = false;
449 contents.heap_allocated = false;

Completed in 1822 milliseconds