Searched defs:Delete (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium/base/memory/
H A Dsingleton_objc.h47 static void Delete(Type* object) { function in struct:DefaultSingletonObjCTraits
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 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 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
/external/v8/src/
H A Dallocation-inl.h42 void PreallocatedStorage::Delete(void* p) { function in class:v8::internal::PreallocatedStorage
H A Dallocation.cc47 void Malloced::Delete(void* p) { function in class:v8::internal::Malloced
H A Dzone.h176 static void Delete(void* p) { } function in class:v8::internal::ZoneListAllocationPolicy
/external/protobuf/src/google/protobuf/
H A Drepeated_field.cc87 void StringTypeHandlerBase::Delete(string* value) { function in class:google::protobuf::internal::StringTypeHandlerBase
H A Dunknown_field_set.cc57 (*fields_)[i].Delete();
174 void UnknownField::Delete() { function in class:google::protobuf::UnknownField
/external/v8/test/cctest/
H A Dtest-list.cc39 // Stash the size in the first word to use for Delete.
47 static void Delete(void* ptr) { function in class:ZeroingAllocationPolicy
/external/srec/seti/sltsEngine/src/
H A Dlinklist_impl.c192 LListResult Delete(LList *list) function
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
156 =begin rdoc ANTLR3::TokenRewriteStream::Delete
165 class Delete < Replace class in class:ANTLR3
206 op = Delete.new( @stream, range )
/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 Dshared_memory_win.cc116 bool SharedMemory::Delete(const std::string& name) { function in class:base::SharedMemory
H A Dshared_memory_posix.cc125 file_util::Delete(path, false);
175 bool SharedMemory::Delete(const std::string& name) { function in class:base::SharedMemory
181 return file_util::Delete(path, false);
H A Dfile_util.cc381 bool Delete(const std::wstring& path, bool recursive) { function in namespace:file_util
382 return Delete(FilePath::FromWStringHack(path), recursive);
H A Dfile_util_proxy.cc60 if (!file_util::Delete(dest_file_path, false /* recursive */)) {
318 if (!file_util::Delete(file_path_, recursive_)) {
825 bool FileUtilProxy::Delete(scoped_refptr<MessageLoopProxy> message_loop_proxy, function in class:base::FileUtilProxy
/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/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs352 public virtual void Delete( int index ) method in class:Antlr.Runtime.TokenRewriteStream
354 Delete( DEFAULT_PROGRAM_NAME, index, index );
357 public virtual void Delete( int from, int to ) method in class:Antlr.Runtime.TokenRewriteStream
359 Delete( DEFAULT_PROGRAM_NAME, from, to );
362 public virtual void Delete( IToken indexT ) method in class:Antlr.Runtime.TokenRewriteStream
364 Delete( DEFAULT_PROGRAM_NAME, indexT, indexT );
367 public virtual void Delete( IToken from, IToken to ) method in class:Antlr.Runtime.TokenRewriteStream
369 Delete( DEFAULT_PROGRAM_NAME, from, to );
372 public virtual void Delete( string programName, int from, int to ) method in class:Antlr.Runtime.TokenRewriteStream
377 public virtual void Delete( strin method in class:Antlr.Runtime.TokenRewriteStream
[all...]
/external/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp75 bool Delete = false; local
84 Delete = true;
98 << Delete;
102 Delete ? "delete" : "default", tok::semi);
/external/chromium/chrome/browser/download/
H A Ddownload_item.cc58 file_util::Delete(path, false);
407 void DownloadItem::Delete(DeleteReason reason) { function in class:DownloadItem
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp80 Delete, ///< Delete the specified members enumerator in enum:ArchiveOperation
190 case 'd': ++NumOperations; Operation = Delete; break;
741 case Delete: haveError = doDelete(&ErrMsg); break;
/external/skia/src/svg/
H A DSkSVGParser.cpp60 void SkSVGParser::Delete(SkTDArray<SkSVGElement*>& fChildren) { function in class:SkSVGParser
63 Delete((*ptr)->fChildren);
106 Delete(fChildren);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file.cc147 // Delete the chunks in |deleted| from |chunks|.
215 if (file_util::Delete(original_filename, false)) {
225 file_util::Delete(journal_filename, false);
240 bool SafeBrowsingStoreFile::Delete() { function in class:SafeBrowsingStoreFile
248 if (!file_util::Delete(filename_, false) &&
255 if (!file_util::Delete(new_filename, false) &&
267 file_util::Delete(journal_filename, false);
652 if (!file_util::Delete(filename_, false) &&

Completed in 1006 milliseconds

12