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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 24 /// Make sure GV is visible from both modules. Delete is true if it is
28 static void makeVisible(GlobalValue &GV, bool Delete) {
30 if (Local || Delete) {
85 bool Delete =
87 if (!Delete) {
94 makeVisible(*I, Delete);
96 if (Delete)
102 bool Delete =
104 if (!Delete) {
109 makeVisible(*I, Delete);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTLS.h 34 * When this thread, or Delete is called, the cached data is removed, and
45 static void Delete(CreateProc);
75 * Will delete our internal list. To be called by the platform if/when its
  /external/chromium_org/v8/src/
allocation.h 18 // Superclass for classes managed with new & delete.
22 void operator delete(void* p) { Delete(p); }
26 static void Delete(void* p);
32 // superclass. The macro prevents the use of new & delete in debug mode.
41 void operator delete(void* p);
54 void operator delete(void* p);
69 delete[] array;
85 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_org/athena/activity/
activity.cc 21 void Activity::Delete(Activity* activity) {
23 delete activity;
  /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.";
60 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;
sql_handler.h 12 // This is a wrapper of information needed for Insert/Update/Delete
28 // table or BookmarkModel in its Insert/Update/Delete method.
32 // be invoked. The Delete() method is called to delete rows.
57 virtual bool Delete(const TableIDRows& ids_set) = 0;
visit_sql_handler.h 28 virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
40 // Delete the visits of the given |url_id|.
  /external/chromium_org/content/common/input/
scoped_web_input_event.cc 23 WebInputEventTraits::Delete(web_event);
  /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;
154 // Delete the stream if needed. Otherwise, transfer the buffer
159 delete TheStream;
  /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);
  /external/chromium_org/ppapi/cpp/
var_dictionary.h 75 void Delete(const Var& key);
  /external/chromium_org/ppapi/thunk/
ppb_var_dictionary_thunk.cc 44 void Delete(PP_Var dict, PP_Var key) {
49 dict_var->Delete(key);
74 &Delete,
  /external/lzma/CPP/Common/
MyVector.cpp 14 delete []((unsigned char *)_items);
21 void CBaseRecordVector::DeleteBack() { Delete(_size - 1); }
22 void CBaseRecordVector::DeleteFrom(int index) { Delete(index, _size - index); }
55 delete [](unsigned char *)_items;
79 void CBaseRecordVector::Delete(int index, int num)
  /external/chromium_org/athena/activity/public/
activity.h 73 static void Delete(Activity* activity);
  /external/chromium_org/chrome/installer/util/
self_cleaning_temp_dir.h 23 // Performs a Delete().
37 bool Delete();
  /external/chromium_org/content/browser/dom_storage/
local_storage_database_adapter.cc 29 sql::Connection::Delete(db_->file_path());

Completed in 932 milliseconds

1 2 3 4 5 6 7 8 91011>>