Searched refs:delete (Results 1 – 25 of 45) sorted by relevance
12
/ndk/sources/cxx-stl/system/include/ |
D | new | 16 void operator delete(void*); 17 void operator delete[](void*); 20 void operator delete(void*, const std::nothrow_t&); 21 void operator delete[](void*, const std::nothrow_t&); 27 inline void operator delete(void*, void*) { } 28 inline void operator delete[](void*, void*) { }
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | new | 48 void operator delete[](void* ptr) throw(); 49 void operator delete[](void* const, std::nothrow_t&) throw(); 50 void operator delete(void* ptr) throw(); 51 void operator delete(void*, const std::nothrow_t&) throw(); 55 inline void operator delete(void*, void*) throw() {} 56 inline void operator delete[](void*, void*) throw() {}
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | elf_alloc.h | 136 void operator delete(void* ptr) { in delete() function 144 void operator delete[](void* ptr) {
|
D | dwarf_defs.h | 728 delete[] array_; in ~DwarfAbbrDieArray() 782 delete[] array_; in add() 871 delete[] array_; in empty()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _new.h | 132 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p, __FILE__, __LINE__); } in __stl_delete() 135 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p); }
|
D | _auto_ptr.h | 62 delete __pt; 107 ~auto_ptr() _STLP_NOTHROW { /* boris : reset(0) might be better */ delete this->get(); } in ~auto_ptr()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-C | 7 to delete in the work directory instead of the current directory. Make is 9 find the makefile and the file to delete in the work directory.";
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | errors | 9 ."intended to fail) and then a delete command after that is \n" 12 ."delete a file and this is what we check for. The second make\n"
|
D | echoing | 11 ."been placed in front of the delete command line. Four tests \n" 22 ."if it actually tried to run the delete command again and the \n"
|
/ndk/sources/cxx-stl/gabi++/ |
D | sources.mk | 6 src/delete.cc \
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | Makefile.ami | 24 RM = delete
|
D | SMakefile | 27 RM = delete
|
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/ |
D | clean | 3 $description = "The following test creates a makefile to delete a \n"
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | origin | 49 delete $extraENV{MAKETEST};
|
D | foreach | 34 delete $extraENV{FOOFOO};
|
/ndk/sources/cxx-stl/stlport/src/ |
D | message_facets.h | 37 ~_Catalog_locale_map() { if (M) delete M; } in ~_Catalog_locale_map()
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | BUGS | 76 In short, `sed d -i' will let one delete the contents of 86 to the original name: if you rename or delete files, you're actually 101 to delete every line up to the first one including `abc', and this
|
D | autoboot | 588 -type l -xtype l -delete > /dev/null 2>&1
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
D | SHELL | 8 delete $ENV{SHELL};
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _evc.h | 303 inline void __cdecl operator delete(void *, void *) { return; } in delete() function
|
/ndk/sources/host-tools/make-3.81/ |
D | Makefile.ami | 27 RM = delete 158 -delete make
|
D | README.Amiga | 23 delete make.bak quiet @@\
|
D | SMakefile | 32 RM = delete 164 -delete quiet make
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make-stds.texi | 759 building the program. Also delete files in other directories if they 760 are created by this makefile. However, don't delete the files that 763 them. There is no need to delete parent directories that were created 773 that were in the distribution. However, there is no need to delete 780 target for GCC does not delete @file{libgcc.a}, because recompiling it 790 @samp{make maintainer-clean} should not delete @file{configure} even 792 generally, @samp{make maintainer-clean} should not delete anything 794 build the program. Also, there is no need to delete parent 797 @code{maintainer-clean} should delete everything else that can be
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | mac-mf.sed | 105 # Change rm to delete.
|
12