Searched refs:Delete (Results 1 - 25 of 213) sorted by relevance

123456789

/external/chromium/base/memory/
H A Dscoped_temp_dir.cc14 if (!path_.empty() && !Delete())
61 bool ScopedTempDir::Delete() { function in class:ScopedTempDir
65 bool ret = file_util::Delete(path_, true);
H A Dscoped_temp_dir.h17 // intervening calls to Delete or Take, or the calls will fail.
42 bool Delete() WARN_UNUSED_RESULT;
H A Dsingleton_objc.h47 static void Delete(Type* object) { function in struct:DefaultSingletonObjCTraits
H A Dsingleton_unittest.cc55 static void Delete(Type* instance) { function in struct:__anon1555::CallbackTrait
58 DefaultSingletonTraits<Type>::Delete(instance);
105 static void Delete(CallbackSingletonWithStaticTrait* instance) { function in struct:__anon1555::CallbackSingletonWithStaticTrait::Trait
108 StaticMemorySingletonTraits<CallbackSingletonWithStaticTrait>::Delete(
127 DefaultSingletonTraits<CallbackSingletonWithLeakTrait>::Delete(
229 // Delete the leaky singleton. It is interesting to note that Purify does
H A Dsingleton.h28 static void Delete(Type* x) { function in struct:DefaultSingletonTraits
88 static void Delete(Type* p) { function in struct:StaticMemorySingletonTraits
119 // normal process exit). The Trait::Delete function will not be called on
260 Traits::Delete(
H A Dscoped_temp_dir_unittest.cc82 EXPECT_TRUE(dir.Delete());
104 EXPECT_FALSE(dir.Delete()); // We should not be able to delete.
108 EXPECT_TRUE(dir.Delete());
/external/llvm/include/llvm/Support/
H A DFormattedStream.h84 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
/external/srec/seti/sltsEngine/include/
H A Dlinklist.h58 LListResult Delete(LList *list);
/external/v8/src/
H A Dallocation-inl.h42 void PreallocatedStorage::Delete(void* p) { function in class:v8::internal::PreallocatedStorage
H A Dallocation.h45 void operator delete(void* p) { Delete(p); }
49 static void Delete(void* p);
108 INLINE(static void Delete(void* p)) { Malloced::Delete(p); }
124 static inline void Delete(void* p);
/external/chromium/net/disk_cache/
H A Dcache_util_posix.cc49 if (!file_util::Delete(file, /* recursive */ false)) {
56 if (!file_util::Delete(path, /* recursive */ false)) {
64 return file_util::Delete(name, false);
/external/chromium/base/
H A Dlazy_instance.h58 static void Delete(void* instance) { function in struct:base::DefaultLazyInstanceTraits
71 // Rather than define an empty Delete function, we make Delete itself
76 static void (*Delete)(void* instance); member in struct:base::LeakyLazyInstanceTraits
80 void (*LeakyLazyInstanceTraits<Type>::Delete)(void* instance) = NULL; member in namespace:base
139 // Traits::Delete will be null for LeakyLazyInstanceTraits
140 void (*dtor)(void*) = Traits::Delete;
173 Traits::Delete(me->instance_);
H A Dfile_util_deprecated.h39 BASE_API bool Delete(const std::wstring& path, bool recursive);
H A Dshared_memory_unittest.cc32 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);
215 rv = memory1.Delete(test_name);
335 memory.Delete(s_test_name_);
/external/chromium/chrome/browser/extensions/
H A Dextension_history_apitest.cc32 IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, Delete) {
H A Dextension_startup_browsertest.cc70 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/
H A Dsqlite_features_unittest.cc53 file_util::Delete(path_, false);
67 ASSERT_TRUE(file_util::Delete(path_, false));
/external/chromium/chrome/common/
H A Dimportant_file_writer.cc49 file_util::Delete(tmp_file_path, false);
55 file_util::Delete(tmp_file_path, false);
61 file_util::Delete(tmp_file_path, false);
H A Dauto_start_linux.cc52 file_util::Delete(autostart_file, false);
62 return file_util::Delete(autostart_file, false);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc30 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());
H A Dsafe_browsing_store_unittest_helper.h51 // filename, for the Delete() test.
65 TEST_F(test_fixture, Delete) { \
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptHeapSnapshot.cpp45 const_cast<v8::HeapSnapshot*>(m_snapshot)->Delete();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs308 public virtual void Delete(int index) { method in class:Antlr.Runtime.TokenRewriteStream
309 Delete(DEFAULT_PROGRAM_NAME, index, index);
312 public virtual void Delete(int from, int to) { method in class:Antlr.Runtime.TokenRewriteStream
313 Delete(DEFAULT_PROGRAM_NAME, from, to);
316 public virtual void Delete(IToken indexT) { method in class:Antlr.Runtime.TokenRewriteStream
317 Delete(DEFAULT_PROGRAM_NAME, indexT, indexT);
320 public virtual void Delete(IToken from, IToken to) { method in class:Antlr.Runtime.TokenRewriteStream
321 Delete(DEFAULT_PROGRAM_NAME, from, to);
324 public virtual void Delete(string programName, int from, int to) { method in class:Antlr.Runtime.TokenRewriteStream
328 public virtual void Delete(strin method in class:Antlr.Runtime.TokenRewriteStream
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock-nice-strict_test.cc78 void Delete() { delete this; } function in class:testing::gmock_nice_strict_test::MockFoo
128 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
240 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
/external/chromium/chrome/browser/webdata/
H A Dtoken_service_table_unittest.cc27 file_util::Delete(file_, false);
31 file_util::Delete(file_, false);

Completed in 312 milliseconds

123456789