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

1 2 3 4 5 6 7 8 9

  /external/v8/src/
allocation-inl.h 42 void PreallocatedStorage::Delete(void* p) {
allocation.h 42 // Superclass for classes managed with new & delete.
46 void operator delete(void* p) { Delete(p); }
50 static void Delete(void* p);
56 // superclass. The macro prevents the use of new & delete in debug mode.
65 void operator delete(void* p);
78 void operator delete(void* p);
93 delete[] array;
109 INLINE(static void Delete(void* p)) { Malloced::Delete(p);
    [all...]
hashmap.h 41 virtual void Delete(void* p) { Malloced::Delete(p); }
  /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) {
singleton_unittest.cc 55 static void Delete(Type* instance) {
58 DefaultSingletonTraits<Type>::Delete(instance);
105 static void Delete(CallbackSingletonWithStaticTrait* instance) {
108 StaticMemorySingletonTraits<CallbackSingletonWithStaticTrait>::Delete(
127 DefaultSingletonTraits<CallbackSingletonWithLeakTrait>::Delete(
229 // Delete the leaky singleton. It is interesting to note that Purify does
singleton.h 15 // Default traits for Singleton<Type>. Calls operator new and operator delete on
28 static void Delete(Type* x) {
29 delete x;
88 static void Delete(Type* p) {
119 // normal process exit). The Trait::Delete function will not be called on
260 Traits::Delete(
scoped_temp_dir_unittest.cc 82 EXPECT_TRUE(dir.Delete());
104 EXPECT_FALSE(dir.Delete()); // We should not be able to delete.
107 // Now, we should be able to delete.
108 EXPECT_TRUE(dir.Delete());
  /external/llvm/include/llvm/Support/
FormattedStream.h 27 /// DELETE_STREAM - Tell the destructor to delete the held stream.
31 /// PRESERVE_STREAM - Tell the destructor to not delete the held
42 /// DeleteStream - Do we need to delete TheStream in the
84 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
86 setStream(Stream, Delete);
98 void setStream(raw_ostream &Stream, bool Delete = false) {
102 DeleteStream = Delete;
126 // Delete the stream if needed. Otherwise, transfer the buffer
131 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;
131 // Traits::Delete will be null for LeakyLazyInstanceTraits
132 void (*dtor)(void*) = Traits::Delete;
165 Traits::Delete(me->instance_);
file_util_deprecated.h 39 BASE_API bool Delete(const std::wstring& path, bool recursive);
shared_memory_unittest.cc 32 memory.Delete(s_test_name_);
126 bool rv = memory1.Delete(test_name);
128 rv = memory1.Delete(test_name);
161 rv = memory1.Delete(test_name);
163 rv = memory2.Delete(test_name);
205 // Verify that opening memory2 didn't truncate or delete memory 1.
215 rv = memory1.Delete(test_name);
250 delete thread_delegates[index];
279 delete thread_delegates[index];
335 memory.Delete(s_test_name_)
    [all...]
  /external/chromium/net/disk_cache/
cache_util_posix.cc 49 if (!file_util::Delete(file, /* recursive */ false)) {
50 LOG(WARNING) << "Unable to delete cache.";
56 if (!file_util::Delete(path, /* recursive */ false)) {
57 LOG(WARNING) << "Unable to delete cache folder.";
64 return file_util::Delete(name, false);
  /external/chromium/chrome/browser/extensions/
extension_history_apitest.cc 32 IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, Delete) {
33 ASSERT_TRUE(RunExtensionSubtest("history", "delete.html")) << message_;
extension_startup_browsertest.cc 70 EXPECT_TRUE(file_util::Delete(preferences_file_, false));
73 file_util::Delete(user_scripts_dir_, true);
74 file_util::Delete(extensions_dir_, true);
  /external/chromium/app/sql/
sqlite_features_unittest.cc 53 file_util::Delete(path_, false);
67 ASSERT_TRUE(file_util::Delete(path_, false));
  /external/v8/test/mjsunit/regress/
regress-70066.js 28 // Regression test for Chromium issue 70066. Delete should work properly
34 // Delete on a slot from a function's own context.
38 with ({}) { status = delete value; }
46 // Delete on a slot from an outer context.
49 with ({}) { return delete value; }
60 // Delete on an argument. This hits the same code paths as test5 because
65 with ({}) { status = delete value; }
73 // Delete on an argument from an outer context. This hits the same code
77 with ({}) { return delete value; }
87 // Delete on an argument found in the arguments object. Such properties ar
    [all...]
  /external/chromium/chrome/common/
important_file_writer.cc 49 file_util::Delete(tmp_file_path, false);
55 file_util::Delete(tmp_file_path, false);
61 file_util::Delete(tmp_file_path, false);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file_unittest.cc 30 file_util::Delete(filename_, false);
35 file_util::Delete(temp_file, false);
42 store_->Delete();
61 // Test that Delete() deletes the temporary store, if present.
81 EXPECT_TRUE(store_->Delete());
safe_browsing_store_unittest_helper.h 40 // Test that deletes delete the chunk's data.
51 // filename, for the Delete() test.
65 TEST_F(test_fixture, Delete) { \
  /external/webkit/Source/WebCore/bindings/v8/
ScriptHeapSnapshot.cpp 45 const_cast<v8::HeapSnapshot*>(m_snapshot)->Delete();
  /external/chromium/testing/gmock/test/
gmock-nice-strict_test.cc 78 void Delete() { delete this; }
123 // that delete the mock object.
128 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
240 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
  /external/chromium/chrome/browser/webdata/
token_service_table_unittest.cc 27 file_util::Delete(file_, false);
31 file_util::Delete(file_, false);

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 9