/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/ |
types_traits.hpp | 52 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 55 typedef value_type_base<Key, Mapped, Alloc, Store_Extra> type; 58 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 60 : public vt_base_selector<Key, Mapped, Alloc, Store_Extra>::type 62 typedef typename Alloc::template rebind<Key>::other key_allocator; 68 typedef typename Alloc::size_type size_type;
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ |
types_traits.hpp | 52 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 55 typedef value_type_base<Key, Mapped, Alloc, Store_Extra> type; 58 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 60 : public vt_base_selector<Key, Mapped, Alloc, Store_Extra>::type 62 typedef typename Alloc::template rebind<Key>::other key_allocator; 68 typedef typename Alloc::size_type size_type;
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ |
types_traits.hpp | 52 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 55 typedef value_type_base<Key, Mapped, Alloc, Store_Extra> type; 58 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra> 60 : public vt_base_selector<Key, Mapped, Alloc, Store_Extra>::type 62 typedef typename Alloc::template rebind<Key>::other key_allocator; 68 typedef typename Alloc::size_type size_type;
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_button_cell_unittest.mm | 47 base::scoped_nsobject<NSButton> view([[NSButton alloc] initWithFrame:frame]); 49 [[BookmarkButtonCell alloc] initTextCell:@"Testing"]); 62 base::scoped_nsobject<NSButton> view([[NSButton alloc] initWithFrame:frame]); 64 [[BookmarkButtonCell alloc] initTextCell:@"Testing"]); 92 [[BookmarkButtonCell alloc] initTextCell:@"Testing"]); 95 [cell setMenu:[[[NSMenu alloc] initWithTitle:@"foo"] autorelease]]; 111 [[BookmarkButtonCell alloc] initTextCell:@"Testing"]); 124 [[BookmarkButtonCell alloc] initTextCell:@"Testing"]); 126 [[ButtonRemembersMouseEnterExit alloc] 152 [[BookmarkButtonCell alloc] init]) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/ |
main.m | 8 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 21 TParser *parser = [[TParser alloc] initWithTokenStream:tokenStream];
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu_unittest.mm | 17 scoped_nsobject<BookmarkMenu> menu([[BookmarkMenu alloc] 19 scoped_nsobject<NSMenuItem> item([[NSMenuItem alloc] initWithTitle:@"item"
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
hover_close_button_unittest.mm | 16 button_.reset([[HoverCloseButton alloc] initWithFrame:content_frame]); 28 button_.reset([[WebUIHoverCloseButton alloc] initWithFrame:content_frame]);
|
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
omnibox_popup_separator_view_unittest.mm | 14 bottom_view_.reset([[OmniboxPopupBottomSeparatorView alloc] 36 top_view_.reset([[OmniboxPopupTopSeparatorView alloc]
|
/external/chromium_org/chrome/browser/ui/cocoa/tab_contents/ |
overlayable_contents_controller.mm | 15 [[NSView alloc] initWithFrame:NSZeroRect]); 19 activeContainer_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
lzma_sdk.gyp | 16 'Alloc.c', 17 'Alloc.h',
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
stl_allocator.h | 46 // that uses a given type-less allocator Alloc, which must provide: 47 // static void* Alloc::Allocate(size_t size); 48 // static void Alloc::Free(void* ptr, size_t size); 58 template <typename T, class Alloc> 70 typedef STL_Allocator<T1, Alloc> other; 75 template <class T1> STL_Allocator(const STL_Allocator<T1, Alloc>&) { } 83 return static_cast<T*>(Alloc::Allocate(n * sizeof(T))); 85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); }
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
stl_allocator.h | 46 // that uses a given type-less allocator Alloc, which must provide: 47 // static void* Alloc::Allocate(size_t size); 48 // static void Alloc::Free(void* ptr, size_t size); 58 template <typename T, class Alloc> 70 typedef STL_Allocator<T1, Alloc> other; 75 template <class T1> STL_Allocator(const STL_Allocator<T1, Alloc>&) { } 83 return static_cast<T*>(Alloc::Allocate(n * sizeof(T))); 85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); }
|
/external/clang/test/ARCMT/ |
init.m | 16 +alloc; 24 a = [[A alloc] init];
|
init.m.result | 16 +alloc; 24 a = [[A alloc] init];
|
/external/clang/test/Analysis/inlining/ |
ObjCImproperDynamictallyDetectableCast.m | 6 +(id)alloc; 33 id a = [[self alloc] init];
|
RetainCountExamples.m | 10 +(id)alloc; 32 SelfStaysLive *foo = [[SelfStaysLive alloc] init]; 58 Cell *sharedCell3 = [[Cell alloc] initWithInt: 3]; 63 Cell *sharedCell4 = [[Cell alloc] initWithInt: 3]; // expected-warning {{leak}} 117 DelegateTest *obj1 = [[DelegateTest alloc] initWithDelegate: d]; // no-warning 118 DelegateTest *obj2 = [[DelegateTest alloc] init]; // no-warning 119 DelegateTest *obj3 = [[DelegateTest alloc] init]; // no-warning 123 DelegateTest *obj4 = [[DelegateTest alloc] init]; // no-warning
|
assume-super-init-does-not-return-nil.m | 7 +(id)alloc; 37 Cell *newCell = [[Cell alloc] init];
|
/external/clang/test/Analysis/ |
properties.m | 12 +(id)alloc; 25 +(id)alloc; 44 Test1 *cell = [[[Test1 alloc] init] autorelease]; 46 NSString *string1 = [[NSString alloc] initWithFormat:@"test %f", 0.0]; // expected-warning {{Potential leak}} 89 return [[NSNumber alloc] initWithInteger:1]; 103 value = [[NSNumber alloc] initWithInteger:0]; 131 Person *p = [[[Person alloc] init] autorelease]; 134 p.name = [[NSString alloc] init]; // expected-warning {{leak}}
|
/external/clang/test/CodeGenObjC/ |
objc2-legacy-dispatch.m | 16 +(id) alloc; 21 [A alloc];
|
/external/clang/test/SemaObjC/ |
ivar-access-package.m | 10 +alloc; 41 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
large_allocation_leak.cc | 12 fprintf(stderr, "Test alloc: %p.\n", large_alloc); 15 // CHECK: Test alloc: [[ADDR:.*]].
|
suppressions_default.cc | 18 fprintf(stderr, "Test alloc: %p.\n", p); 24 fprintf(stderr, "Test alloc: %p.\n", q);
|
suppressions_file.cc | 18 fprintf(stderr, "Test alloc: %p.\n", p); 24 fprintf(stderr, "Test alloc: %p.\n", q);
|
use_globals_initialized.cc | 15 fprintf(stderr, "Test alloc: %p.\n", data_var); 18 // CHECK: Test alloc: [[ADDR:.*]].
|
use_globals_uninitialized.cc | 15 fprintf(stderr, "Test alloc: %p.\n", bss_var); 18 // CHECK: Test alloc: [[ADDR:.*]].
|