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

123

/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:__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
/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/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/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/skia/src/core/
H A DSkTLS.cpp99 void SkTLS::Delete(CreateProc createProc) { function in class:SkTLS
/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);
/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/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.cpp82 bool Delete = false; local
91 Delete = true;
105 << Delete;
109 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/skia/src/svg/
H A DSkSVGParser.cpp60 void SkSVGParser::Delete(SkTDArray<SkSVGElement*>& fChildren) { function in class:SkSVGParser
63 Delete((*ptr)->fChildren);
106 Delete(fChildren);

Completed in 1303 milliseconds

123