Searched refs:Delete (Results 1 - 25 of 224) 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:__anon1692::CallbackTrait
58 DefaultSingletonTraits<Type>::Delete(instance);
105 static void Delete(CallbackSingletonWithStaticTrait* instance) { function in struct:__anon1692::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/lib/Transforms/IPO/
H A DExtractGV.cpp54 bool Delete = local
56 if (!Delete) {
67 if (Local || Delete)
70 if (Delete)
76 bool Delete = local
78 if (!Delete) {
87 if (Local || Delete)
90 if (Delete)
/external/llvm/include/llvm/Support/
H A DFormattedStream.h85 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
87 setStream(Stream, Delete);
99 void setStream(raw_ostream &Stream, bool Delete = false) {
103 DeleteStream = Delete;
127 // Delete the stream if needed. Otherwise, transfer the buffer
/external/skia/src/core/
H A DSkTLS.h35 * When this thread, or Delete is called, the cached data is removed, and
46 static void Delete(CreateProc);
/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/regex-re2/re2/testing/
H A Dcharclass_test.cc122 void Delete(CharClass* cc) { function in namespace:re2
123 cc->Delete();
132 void Delete(CharClassBuilder* cc) { function in namespace:re2
179 Delete(ncc);
187 Delete(ncc);
191 Delete(ncc);
209 cc->Delete();
217 cc->Delete();
/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);
/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...]

Completed in 1690 milliseconds

123456789