HomeSort by relevance Sort by last modified time
    Searched refs:Delete (Results 1 - 25 of 655) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/core/
SkTLS.h 35 * When this thread, or Delete is called, the cached data is removed, and
46 static void Delete(CreateProc);
76 * Will delete our internal list. To be called by the platform if/when its
  /external/chromium_org/v8/src/
allocation-inl.h 42 void PreallocatedStorageAllocationPolicy::Delete(void* p) {
allocation.h 41 // Superclass for classes managed with new & delete.
45 void operator delete(void* p) { Delete(p); }
49 static void Delete(void* p);
55 // superclass. The macro prevents the use of new & delete in debug mode.
64 void operator delete(void* p);
77 void operator delete(void* p);
92 delete[] array;
108 INLINE(static void Delete(void* p)) { Malloced::Delete(p);
    [all...]
  /external/skia/src/core/
SkTLS.h 35 * When this thread, or Delete is called, the cached data is removed, and
46 static void Delete(CreateProc);
76 * Will delete our internal list. To be called by the platform if/when its
  /external/v8/src/
allocation-inl.h 42 void PreallocatedStorage::Delete(void* p) {
allocation.h 41 // Superclass for classes managed with new & delete.
45 void operator delete(void* p) { Delete(p); }
49 static void Delete(void* p);
55 // superclass. The macro prevents the use of new & delete in debug mode.
64 void operator delete(void* p);
77 void operator delete(void* p);
92 delete[] array;
108 INLINE(static void Delete(void* p)) { Malloced::Delete(p);
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
write_batch.h 12 // batch.Delete("key");
40 void Delete(const Slice& key);
50 virtual void Delete(const Slice& key) = 0;
  /external/chromium/base/memory/
scoped_temp_dir.cc 14 if (!path_.empty() && !Delete())
15 LOG(WARNING) << "Could not delete temp dir in dtor.";
61 bool ScopedTempDir::Delete() {
65 bool ret = file_util::Delete(path_, true);
70 LOG(ERROR) << "ScopedTempDir unable to delete " << path_.value();
scoped_temp_dir.h 17 // intervening calls to Delete or Take, or the calls will fail.
27 // Recursively delete path.
42 bool Delete() WARN_UNUSED_RESULT;
singleton_objc.h 47 static void Delete(Type* object) {
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 54 bool Delete =
56 if (!Delete) {
67 if (Local || Delete)
70 if (Delete)
76 bool Delete =
78 if (!Delete) {
87 if (Local || Delete)
90 if (Delete)
121 delete CurI;
  /external/chromium_org/base/files/
scoped_temp_dir.h 16 // intervening calls to Delete or Take, or the calls will fail.
28 // Recursively delete path.
43 bool Delete() WARN_UNUSED_RESULT;
scoped_temp_dir.cc 16 if (!path_.empty() && !Delete())
17 DLOG(WARNING) << "Could not delete temp dir in dtor.";
62 bool ScopedTempDir::Delete() {
  /external/chromium_org/chrome/browser/history/android/
android_urls_sql_handler.h 25 virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
urls_sql_handler.h 24 virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
favicon_sql_handler.h 23 virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
  /external/chromium_org/chrome/browser/renderer_host/
chrome_url_request_user_data.h 25 // Delete the ChromeURLRequestUserData from a |request|. |request| must be
27 static void Delete(net::URLRequest* request);
  /external/llvm/include/llvm/Support/
FormattedStream.h 29 /// DELETE_STREAM - Tell the destructor to delete the held stream.
33 /// PRESERVE_STREAM - Tell the destructor to not delete the held
44 /// DeleteStream - Do we need to delete TheStream in the
87 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
89 setStream(Stream, Delete);
101 void setStream(raw_ostream &Stream, bool Delete = false) {
105 DeleteStream = Delete;
135 // Delete the stream if needed. Otherwise, transfer the buffer
140 delete TheStream;
  /external/srec/seti/sltsEngine/include/
linklist.h 58 LListResult Delete(LList *list);
  /external/chromium/base/
lazy_instance.h 58 static void Delete(void* instance) {
71 // Rather than define an empty Delete function, we make Delete itself
76 static void (*Delete)(void* instance);
80 void (*LeakyLazyInstanceTraits<Type>::Delete)(void* instance) = NULL;
139 // Traits::Delete will be null for LeakyLazyInstanceTraits
140 void (*dtor)(void*) = Traits::Delete;
173 Traits::Delete(me->instance_);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
page_heap_test.cc 32 // Split span 's1' into 's1', 's2'. Delete 's2'
35 ph->Delete(s2);
42 // Delete span 's1'
43 ph->Delete(s1);
46 delete ph;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap_allocator.h 58 Delete(New());
88 void Delete(T* p) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
page_heap_test.cc 32 // Split span 's1' into 's1', 's2'. Delete 's2'
35 ph->Delete(s2);
42 // Delete span 's1'
43 ph->Delete(s1);
46 delete ph;
  /external/chromium_org/base/memory/
singleton_objc.h 46 static void Delete(Type* object) {
  /external/chromium_org/ppapi/c/
ppb_var_dictionary.h 76 void (*Delete)(struct PP_Var dict, struct PP_Var key);

Completed in 503 milliseconds

1 2 3 4 5 6 7 8 91011>>