/external/chromium/base/memory/ |
singleton_objc.h | 47 static void Delete(Type* object) {
|
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();
|
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(
|
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
|
/external/v8/src/ |
allocation-inl.h | 42 void PreallocatedStorage::Delete(void* p) {
|
allocation.cc | 47 void Malloced::Delete(void* p) { 67 void Embedded::operator delete(void* p) { 78 void AllStatic::operator delete(void* p) {
|
zone.h | 42 // Zone scopes are in one of two modes. Either they delete the zone 154 // Ideally, the delete operator should be private instead of 157 // require the operator to be visible. MSVC requires the delete 161 // Zone::DeleteAll() to delete all zone objects in one go. 162 void operator delete(void*, size_t) { UNREACHABLE(); } 163 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } 176 static void Delete(void* p) { } 182 // Zone. ZoneLists cannot be deleted individually; you can delete all 201 void operator delete(void* pointer) { UNREACHABLE(); } 202 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); [all...] |
/external/v8/test/cctest/ |
test-list.cc | 39 // Stash the size in the first word to use for Delete. 47 static void Delete(void* ptr) { 146 delete list;
|
/external/llvm/lib/Transforms/IPO/ |
ExtractGV.cpp | 54 bool Delete = 56 if (!Delete) { 67 if (Local || Delete) 70 if (Delete) 76 bool Delete = 78 if (!Delete) { 87 if (Local || Delete) 90 if (Delete) 121 delete CurI;
|
/external/protobuf/src/google/protobuf/ |
repeated_field.cc | 50 delete [] old_elements; 87 void StringTypeHandlerBase::Delete(string* value) { 88 delete value;
|
unknown_field_set.cc | 51 delete fields_; 57 (*fields_)[i].Delete(); 174 void UnknownField::Delete() { 177 delete length_delimited_; 180 delete group_;
|
/external/srec/seti/sltsEngine/src/ |
linklist_impl.c | 192 LListResult Delete(LList *list) 208 /* delete from the head */ 220 /* delete from the end */ 232 /* delete somewhere in the middle */
|
/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; 139 // Traits::Delete will be null for LeakyLazyInstanceTraits 140 void (*dtor)(void*) = Traits::Delete; 173 Traits::Delete(me->instance_);
|
shared_memory_win.cc | 116 bool SharedMemory::Delete(const std::string& name) {
|
shared_memory_posix.cc | 98 // In case we want to delete it later, it may be useful to save the value 125 file_util::Delete(path, false); 175 bool SharedMemory::Delete(const std::string& name) { 181 return file_util::Delete(path, false);
|
file_util.cc | 381 bool Delete(const std::wstring& path, bool recursive) { 382 return Delete(FilePath::FromWStringHack(path), recursive);
|
/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/skia/src/core/ |
SkTLS.cpp | 99 void SkTLS::Delete(CreateProc createProc) {
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
rewrite.rb | 58 edit-inducing methods like +delete+ and +insert+ as RewriteOperation objects in 61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace, 156 =begin rdoc ANTLR3::TokenRewriteStream::Delete 165 class Delete < Replace 166 @operation_name = 'delete'.freeze 204 def delete( *range_arguments ) method in class:ANTLR3.RewriteProgram 206 op = Delete.new( @stream, range ) 288 if operation = operations.delete( cursor ) 296 if operation = operations.delete( cursor ) and 391 @programs.delete( name 412 def delete( *args ) method [all...] |
/external/regex-re2/re2/testing/ |
charclass_test.cc | 122 void Delete(CharClass* cc) { 123 cc->Delete(); 132 void Delete(CharClassBuilder* cc) { 133 delete cc; 179 Delete(ncc); 187 Delete(ncc); 191 Delete(ncc); 209 cc->Delete(); 217 cc->Delete(); 218 delete ccb1 [all...] |
/frameworks/volley/tests/src/com/android/volley/mock/ |
TestRequest.java | 130 /** Test example of a DELETE request in the new style. */ 131 public static class Delete extends Base { 132 public Delete() { 133 super(Method.DELETE, TEST_URL, null);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
TokenRewriteStream.cs | 45 * You can insert stuff, replace, and delete chunks. Note that the 308 public virtual void Delete(int index) { 309 Delete(DEFAULT_PROGRAM_NAME, index, index); 312 public virtual void Delete(int from, int to) { 313 Delete(DEFAULT_PROGRAM_NAME, from, to); 316 public virtual void Delete(IToken indexT) { 317 Delete(DEFAULT_PROGRAM_NAME, indexT, indexT); 320 public virtual void Delete(IToken from, IToken to) { 321 Delete(DEFAULT_PROGRAM_NAME, from, to); 324 public virtual void Delete(string programName, int from, int to) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
TokenRewriteStream.cs | 48 * You can insert stuff, replace, and delete chunks. Note that the 352 public virtual void Delete( int index ) 354 Delete( DEFAULT_PROGRAM_NAME, index, index ); 357 public virtual void Delete( int from, int to ) 359 Delete( DEFAULT_PROGRAM_NAME, from, to ); 362 public virtual void Delete( IToken indexT ) 364 Delete( DEFAULT_PROGRAM_NAME, indexT, indexT ); 367 public virtual void Delete( IToken from, IToken to ) 369 Delete( DEFAULT_PROGRAM_NAME, from, to ); 372 public virtual void Delete( string programName, int from, int to [all...] |
/external/chromium/chrome/browser/download/ |
download_item.cc | 56 // Make sure we only delete files. 58 file_util::Delete(path, false); 407 void DownloadItem::Delete(DeleteReason reason) {
|
/external/clang/lib/Parse/ |
ParseCXXInlineMethods.cpp | 82 bool Delete = false; 91 Delete = true; 100 llvm_unreachable("function definition after = not 'delete' or 'default'"); 105 << Delete; 109 Delete ? "delete" : "default", tok::semi); 158 delete getCurrentClass().LateParsedDeclarations.back(); 178 delete getCurrentClass().LateParsedDeclarations.back(); 365 delete Toks;
|