/external/llvm/lib/CodeGen/ |
GCMetadata.cpp | 42 class Deleter : public FunctionPass { 46 Deleter(); 187 char Deleter::ID = 0; 190 return new Deleter(); 193 Deleter::Deleter() : FunctionPass(ID) {} 195 const char *Deleter::getPassName() const { 199 void Deleter::getAnalysisUsage(AnalysisUsage &AU) const { 204 bool Deleter::runOnFunction(Function &MF) { 208 bool Deleter::doFinalization(Module &M) [all...] |
/external/icu4c/common/ |
uhash_us.cpp | 51 * Deleter for Hashtable objects. 60 * Deleter for UObject instances.
|
uvector.cpp | 33 deleter(0), 43 deleter(0), 53 deleter(d), 63 deleter(d), 100 if (elements[i].pointer != 0 && deleter != 0) { 101 (*deleter)(elements[i].pointer); 140 if (elements[index].pointer != 0 && deleter != 0) { 141 (*deleter)(elements[index].pointer); 150 if (elements[index].pointer != 0 && deleter != 0) { 152 (*deleter)(elements[index].pointer) [all...] |
uhash.h | 35 * by whether or not the key deleter and value deleter functions are 38 * key deleter function pointer to a non-NULL value. If this is done, 42 * and the value deleter function pointer. Keys passed to methods 83 * UHashTok, but the deleter receives the void* pointer within it. 294 * @return the previous key deleter; may be NULL 307 * @return the previous value deleter; may be NULL 667 * Deleter function for UnicodeString* keys or values. 699 * Deleter for Hashtable objects. 706 * Deleter for UObject instances [all...] |
uvector.h | 68 * option to <em>own</em>its contents. To employ this, set a deleter 69 * function. The deleter is called on a void* pointer when that 73 * removes an element. If no deleter is set, or the deleter is set to 93 // comparison function. It uses UObjectDeleter as its deleter 105 UObjectDeleter *deleter; member in class:UVector
|
/external/llvm/lib/Support/ |
ManagedStatic.cpp | 23 void (*Deleter)(void*)) const { 32 DeleterFn = Deleter; 44 DeleterFn = Deleter;
|
/external/chromium/chrome/browser/importer/ |
firefox_profile_lock_unittest.cc | 41 FileAutoDeleter deleter(lock_file_path); 77 FileAutoDeleter deleter(lock_file_path); 102 FileAutoDeleter deleter(test_path);
|
safari_importer_unittest.mm | 162 FileAutoDeleter deleter(fake_library_dir);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
unique_ptr.h | 100 "constructed with null function pointer deleter"); } 106 "constructed with null function pointer deleter"); } 117 "rvalue deleter bound to reference"); } 248 "constructed with null function pointer deleter"); } 254 "constructed with null function pointer deleter"); } 265 "rvalue deleter bound to reference"); }
|
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 582 * and the deleter @a __d. 584 * @param __d A deleter. 605 * and the deleter @a __d. 607 * @param __d A deleter. [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
unique_ptr.h | 100 "constructed with null function pointer deleter"); } 106 "constructed with null function pointer deleter"); } 117 "rvalue deleter bound to reference"); } 248 "constructed with null function pointer deleter"); } 254 "constructed with null function pointer deleter"); } 265 "rvalue deleter bound to reference"); }
|
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 582 * and the deleter @a __d. 584 * @param __d A deleter. 605 * and the deleter @a __d. 607 * @param __d A deleter. [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
unique_ptr.h | 100 "constructed with null function pointer deleter"); } 106 "constructed with null function pointer deleter"); } 117 "rvalue deleter bound to reference"); } 248 "constructed with null function pointer deleter"); } 254 "constructed with null function pointer deleter"); } 265 "rvalue deleter bound to reference"); }
|
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 582 * and the deleter @a __d. 584 * @param __d A deleter. 605 * and the deleter @a __d. 607 * @param __d A deleter. [all...] |
/external/chromium/chrome/common/deprecated/ |
event_sys_unittest.cc | 256 HookupDeleter deleter; local 257 deleter.hookup_ = NewEventListenerHookup(sally.event_channel(), 258 &deleter, 261 ASSERT_TRUE(NULL == deleter.hookup_);
|
/libcore/include/ |
UniquePtr.h | 22 // Default deleter for pointer types. 32 // Default deleter for array types. 219 // Custom deleter tests...
|
/external/chromium/base/files/ |
file_path_watcher_browsertest.cc | 255 class Deleter : public FilePathWatcher::Delegate { 257 Deleter(FilePathWatcher* watcher, MessageLoop* loop) 275 scoped_refptr<Deleter> deleter(new Deleter(watcher, &loop_)); 276 ASSERT_TRUE(SetupWatch(test_file(), watcher, deleter.get())); 283 ASSERT_TRUE(deleter->watcher_.get() == NULL);
|
/external/chromium/chrome/browser/password_manager/ |
password_manager.h | 92 // Deleter for pending_login_managers_ when PasswordManager is deleted (e.g
|
/external/llvm/include/llvm/Support/ |
ManagedStatic.h | 46 void RegisterManagedStatic(void *(*creator)(), void (*deleter)(void*)) const;
|
/external/icu4c/i18n/ |
zonemeta.cpp | 61 * Deleter for UChar* string 70 * Deleter for UVector 78 * Deleter for OlsonToMetaMappingEntry
|
/external/llvm/include/llvm/ADT/ |
STLExtras.h | 46 // deleter - Very very very simple method that is used to invoke operator 49 // for_each(V.begin(), B.end(), deleter<Interval>); 52 static inline void deleter(T *Ptr) { function in namespace:llvm
|
/external/v8/src/ |
splay-tree-inl.h | 39 NodeDeleter deleter; local 40 ForEachNode(&deleter);
|
/external/chromium/net/disk_cache/ |
sparse_control.cc | 343 ChildrenDeleter* deleter = new ChildrenDeleter(entry->backend_, local 346 deleter->AddRef(); 350 deleter, &ChildrenDeleter::Start, buffer, data_len)); 353 deleter, &ChildrenDeleter::ReadData, address, data_len));
|
/external/llvm/include/llvm/CodeGen/ |
GCMetadata.h | 177 /// clear - Resets the pass. The metadata deleter pass calls this.
|
Passes.h | 175 /// Deleter Pass - Releases GC metadata.
|