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

1 2 3

  /external/chromium/net/disk_cache/
cache_util_posix.cc 23 if (!file_util::Delete(file, /* recursive */ false))
28 if (!file_util::Delete(path, /* recursive */ false))
34 return file_util::Delete(name, false);
  /external/srec/seti/sltsEngine/include/
linklist.h 58 LListResult Delete(LList *list);
  /external/v8/src/
allocation.h 67 // Superclass for classes managed with new & delete.
71 void operator delete(void* p) { Delete(p); }
75 static void Delete(void* p);
81 // superclass. The macro prevents the use of new & delete in debug mode.
90 void operator delete(void* p);
103 void operator delete(void* p);
119 delete[] array;
135 INLINE(static void Delete(void* p)) { Malloced::Delete(p);
    [all...]
hashmap.h 41 virtual void Delete(void* p) { Malloced::Delete(p); }
list.h 65 INLINE(void operator delete(void* p, size_t)) { return P::Delete(p); }
110 // pointer type, clearing the list doesn't delete the entries.
133 INLINE(void DeleteData(T* data)) { P::Delete(data); }
allocation.cc 44 void Malloced::Delete(void* p) {
64 void Embedded::operator delete(void* p) {
75 void AllStatic::operator delete(void* p) {
163 void PreallocatedStorage::Delete(void* p) {
168 FreeStoreAllocationPolicy::Delete(p);
zone.cc 79 static void Delete(Segment* segment, int size) {
81 Malloced::Delete(segment);
129 Segment::Delete(current, size);
163 // except that we employ a maximum segment size when we delete. This
hashmap.cc 55 allocator_->Delete(map_);
221 // Delete old map.
222 allocator_->Delete(map);
  /external/chromium/base/
lazy_instance.h 51 static void Delete(void* instance) {
102 EnsureInstance(instance, Traits::New, Traits::Delete);
singleton_objc.h 46 static void Delete(Type* object) {
scoped_temp_dir.cc 15 if (!path_.empty() && !file_util::Delete(path_, true))
16 LOG(ERROR) << "ScopedTempDir unable to delete " << path_.value();
singleton.h 13 // Default traits for Singleton<Type>. Calls operator new and operator delete on
26 static void Delete(Type* x) {
27 delete x;
47 // normal process exit). The Trait::Delete function will not be called on
182 Traits::Delete(reinterpret_cast<Type*>(
singleton_unittest.cc 28 static void Delete(CallbackFunc* p) {
31 DefaultSingletonTraits<CallbackFunc>::Delete(p);
186 // Delete the leaky singleton. It is interesting to note that Purify does
188 DefaultSingletonTraits<CallbackFunc>::Delete(leaky_singleton);
shared_memory_unittest.cc 30 memory.Delete(s_test_name_);
124 bool rv = memory1.Delete(test_name);
126 rv = memory1.Delete(test_name);
159 rv = memory1.Delete(test_name);
161 rv = memory2.Delete(test_name);
196 delete thread_delegates[index];
225 delete thread_delegates[index];
285 memory.Delete(s_test_name_);
directory_watcher_unittest.cc 50 file_util::Delete(test_dir_, true);
59 ASSERT_TRUE(file_util::Delete(test_dir_, true));
195 ASSERT_TRUE(file_util::Delete(test_dir_.AppendASCII("test_file"), false));
380 ASSERT_TRUE(file_util::Delete(subdir, true));
shared_memory.h 80 bool Delete(const std::wstring& name);
shared_memory_posix.cc 99 bool SharedMemory::Delete(const std::wstring& name) {
105 return file_util::Delete(path, false);
144 // In case we want to delete it later, it may be useful to save the value
165 file_util::Delete(path, false);
logging_win.cc 24 static void Delete(logging::LogEventProvider* p) {
  /external/chromium/base/i18n/
file_util_icu_unittest.cc 24 file_util::Delete(test_dir_, true);
30 ASSERT_TRUE(file_util::Delete(test_dir_, true));
  /external/protobuf/src/google/protobuf/
repeated_field.cc 50 delete [] old_elements;
87 void StringTypeHandlerBase::Delete(string* value) {
88 delete value;
  /external/v8/test/cctest/
test-list.cc 39 // Stash the size in the first word to use for Delete.
47 static void Delete(void* ptr) {
  /external/skia/include/svg/
SkSVGParser.h 62 static void Delete(SkTDArray<SkSVGElement*>& fChildren);
  /external/webkit/WebCore/inspector/front-end/
KeyboardShortcut.js 59 Delete: 46,
  /external/chromium/base/test/
test_file_util_posix.cc 24 return file_util::Delete(file, recurse);
test_file_util_win.cc 28 // Sometimes Delete fails, so try a few more times. Divide the timeout
32 if (file_util::Delete(file, recurse))

Completed in 285 milliseconds

1 2 3