HomeSort by relevance Sort by last modified time
    Searched full:nothrow_t (Results 1 - 25 of 32) sorted by null

1 2

  /bionic/libstdc++/include/
new 10 struct nothrow_t {};
11 extern const nothrow_t nothrow;
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
  /ndk/sources/cxx-stl/system/include/
new 10 struct nothrow_t {};
11 extern const nothrow_t nothrow;
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
new 9 struct nothrow_t {};
10 extern const nothrow_t nothrow;
17 void* operator new(std::size_t, const std::nothrow_t&);
18 void* operator new[](std::size_t, const std::nothrow_t&);
19 void operator delete(void*, const std::nothrow_t&);
20 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
new 9 struct nothrow_t {};
10 extern const nothrow_t nothrow;
17 void* operator new(std::size_t, const std::nothrow_t&);
18 void* operator new[](std::size_t, const std::nothrow_t&);
19 void operator delete(void*, const std::nothrow_t&);
20 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
new 9 struct nothrow_t {};
10 extern const nothrow_t nothrow;
17 void* operator new(std::size_t, const std::nothrow_t&);
18 void* operator new[](std::size_t, const std::nothrow_t&);
19 void operator delete(void*, const std::nothrow_t&);
20 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
new 8 struct nothrow_t {};
9 extern const nothrow_t nothrow;
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
new 9 struct nothrow_t {};
10 extern const nothrow_t nothrow;
17 void* operator new(std::size_t, const std::nothrow_t&);
18 void* operator new[](std::size_t, const std::nothrow_t&);
19 void operator delete(void*, const std::nothrow_t&);
20 void operator delete[](void*, const std::nothrow_t&);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
new 8 struct nothrow_t {};
9 extern const nothrow_t nothrow;
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
  /bionic/libstdc++/src/
new.cpp 4 const std::nothrow_t std::nothrow = {};
34 void* operator new(std::size_t size, const std::nothrow_t&)
39 void* operator new[](std::size_t size, const std::nothrow_t&)
44 void operator delete(void* ptr, const std::nothrow_t&)
49 void operator delete[](void* ptr, const std::nothrow_t&)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
new 67 struct nothrow_t { };
69 extern const nothrow_t nothrow;
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
  /external/stlport/stlport/stl/
_new.h 66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_new.h 66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
  /external/webkit/JavaScriptCore/wtf/wince/
FastMallocWince.h 74 static inline void* operator new(size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
75 static inline void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
76 static inline void* operator new[](size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
77 static inline void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
  /external/chromium/base/allocator/
generic_allocators.cc 43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.h 226 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
228 WTF_PRIVATE_INLINE void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
230 WTF_PRIVATE_INLINE void* operator new[](size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
232 WTF_PRIVATE_INLINE void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
  /external/stlport/test/eh/
nc_alloc.cpp 212 void* _STLP_CALL operator new(size_t size, const EH_STD::nothrow_t&) throw() {
228 void* _STLP_CALL operator new[](size_t size, const EH_STD::nothrow_t&) throw() {
  /external/stlport/src/
dll_main.cpp 90 const nothrow_t nothrow /* = {} */;
  /ndk/sources/cxx-stl/stlport/src/
dll_main.cpp 90 const nothrow_t nothrow /* = {} */;
  /development/ndk/platforms/android-3/arch-arm/lib/
libstdc++.a 143 L %?  7? ptr7?+ ?Q??g ?0?I? ptr0?t ?Q?  ?& ptr?? ?<?R ptr?P+?? $??+(O ?Q?C&?? b??&(? ?Q?P?? ??(?p?C? ?<?( p?R??? bionic/libstdc++/src/usr/local/google/home/digit/android/main/cupcake/android/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/../lib/gcc/arm-eabi/4.2.1/includebionic/libstdc++/includenew.cppstddef.h<built-in>new60/0/0/00/00/0*0/%0/0303???(????????????(????????????(????????????(????????????????????????????????????????????????????? ????| B?BB?BB?BB?B B?B B?B B?B B?B]}} P P]}} P P]}} P P]}} P P]} }P]} }P]} }P]} }P?H}operator delete []?operator delete?operator delete []&operator deleteRoperator new []?operator new?operator new []operator new<nothrow\ _ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cpp/usr/local/google/home/digit/android/main/cupcake/androidnothrowsize_ZdlPvRKSt9nothrow_t_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1Aaeabi5TE .symtab.strtab.shstrtab.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rel.text._ZdaPvRKSt9nothrow_t.ARM.extab.text._ZdaPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdaPvRKSt9nothrow_t.rel.text._ZdlPvRKSt9nothrow_t.ARM.extab.text._ZdlPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdlPvRKSt9nothrow_t.rel.text._ZdaPv.ARM.extab.text._ZdaPv.rel.ARM.exidx.text._ZdaPv.rel.text._ZdlPv.ARM.extab.text._ZdlPv.rel.ARM.exidx.text._ZdlPv.rel.text._ZnajRKSt9nothrow_t.ARM.extab.text._ZnajRKSt9nothrow_t.rel.ARM.exidx.text._ZnajRKSt9nothrow_t.rel.text._ZnwjRKSt9nothrow_t.ARM.extab.text._ZnwjRKSt9nothrow_t.rel.ARM.exidx.text._ZnwjRKSt9nothrow_t.rel.text._Znaj.ARM.extab.text._Znaj.rel.ARM.exidx.text._Znaj.rel.text._Znwj.ARM.extab.text._Znwj.rel.ARM.exidx.text._Znwj.rodata.rel.debug_frame.rel.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.ARM.attributes4!4'4,4>:H: T>N??J \@>?Z ?> y ?p?  ? ?> ?(? ?>?8p?8  ?>O@4 ?>EP`p?P\ ?>?Xw ?>?h?p?h? ?>?p ? ?>?|p?|?  > L? $  >"B?jp??"f  >%?? ? , >'???p??'? 4 >*?? ? D >,???p??,? L >/??? \ ?>2+?' ? @>4:??6 #>6Nn `J $#P>8]0? `h. qp@ Y ????1 ????         " "$%' ')*, ,./12468:;<  !&=RY` t{ "? '? ,?1new.cpp$t_ZdaPvRKSt9nothrow_tfree__aeabi_unwind_cpp_pr0_ZdlPvRKSt9nothrow_t_ZdaPv_ZdlPv_ZnajRKSt9nothrow_tmalloc_ZnwjRKSt9nothrow_t_Znaj_Znwj_ZSt7nothrow ...).6.M.S.Y.r.y..?.? ? ?+?+?.?.? ? ?+?+?..
  /development/ndk/platforms/android-5/arch-x86/lib/
libstdc++.a 144 operator delete []6operator deleteboperator new []?operator new?operator new []operator newJnothrows_ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cppnothrowsize_ZdlPvRKSt9nothrow_t/home/bjbeare/Android/wrs-eclair-b2e1.Feb17.sdk_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1?$?.symtab.strtab.shstrtab.rel.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rodata.rel.debug_frame.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.text.__i686.get_pc_thunk.bx.note.GNU-stack.group?4@s p?%?+?0?B?V> 0?RcN ( ^ujx?f 0? wl ?x ?? ??6
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/lib/
libstdc++.a 143 L %?  7? ptr7?+ ?Q??g ?0?I? ptr0?t ?Q?  ?& ptr?? ?<?R ptr?P+?? $??+(O ?Q?C&?? b??&(? ?Q?P?? ??(?p?C? ?<?( p?R??? bionic/libstdc++/src/usr/local/google/home/digit/android/main/cupcake/android/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/../lib/gcc/arm-eabi/4.2.1/includebionic/libstdc++/includenew.cppstddef.h<built-in>new60/0/0/00/00/0*0/%0/0303???(????????????(????????????(????????????(????????????????????????????????????????????????????? ????| B?BB?BB?BB?B B?B B?B B?B B?B]}} P P]}} P P]}} P P]}} P P]} }P]} }P]} }P]} }P?H}operator delete []?operator delete?operator delete []&operator deleteRoperator new []?operator new?operator new []operator new<nothrow\ _ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cpp/usr/local/google/home/digit/android/main/cupcake/androidnothrowsize_ZdlPvRKSt9nothrow_t_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1Aaeabi5TE .symtab.strtab.shstrtab.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rel.text._ZdaPvRKSt9nothrow_t.ARM.extab.text._ZdaPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdaPvRKSt9nothrow_t.rel.text._ZdlPvRKSt9nothrow_t.ARM.extab.text._ZdlPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdlPvRKSt9nothrow_t.rel.text._ZdaPv.ARM.extab.text._ZdaPv.rel.ARM.exidx.text._ZdaPv.rel.text._ZdlPv.ARM.extab.text._ZdlPv.rel.ARM.exidx.text._ZdlPv.rel.text._ZnajRKSt9nothrow_t.ARM.extab.text._ZnajRKSt9nothrow_t.rel.ARM.exidx.text._ZnajRKSt9nothrow_t.rel.text._ZnwjRKSt9nothrow_t.ARM.extab.text._ZnwjRKSt9nothrow_t.rel.ARM.exidx.text._ZnwjRKSt9nothrow_t.rel.text._Znaj.ARM.extab.text._Znaj.rel.ARM.exidx.text._Znaj.rel.text._Znwj.ARM.extab.text._Znwj.rel.ARM.exidx.text._Znwj.rodata.rel.debug_frame.rel.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.ARM.attributes4!4'4,4>:H: T>N??J \@>?Z ?> y ?p?  ? ?> ?(? ?>?8p?8  ?>O@4 ?>EP`p?P\ ?>?Xw ?>?h?p?h? ?>?p ? ?>?|p?|?  > L? $  >"B?jp??"f  >%?? ? , >'???p??'? 4 >*?? ? D >,???p??,? L >/??? \ ?>2+?' ? @>4:??6 #>6Nn `J $#P>8]0? `h. qp@ Y ????1 ????         " "$%' ')*, ,./12468:;<  !&=RY` t{ "? '? ,?1new.cpp$t_ZdaPvRKSt9nothrow_tfree__aeabi_unwind_cpp_pr0_ZdlPvRKSt9nothrow_t_ZdaPv_ZdlPv_ZnajRKSt9nothrow_tmalloc_ZnwjRKSt9nothrow_t_Znaj_Znwj_ZSt7nothrow ...).6.M.S.Y.r.y..?.? ? ?+?+?.?.? ? ?+?+?..
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/lib/
libstdc++.a 143 L %?  7? ptr7?+ ?Q??g ?0?I? ptr0?t ?Q?  ?& ptr?? ?<?R ptr?P+?? $??+(O ?Q?C&?? b??&(? ?Q?P?? ??(?p?C? ?<?( p?R??? bionic/libstdc++/src/usr/local/google/home/digit/android/main/cupcake/android/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/../lib/gcc/arm-eabi/4.2.1/includebionic/libstdc++/includenew.cppstddef.h<built-in>new60/0/0/00/00/0*0/%0/0303???(????????????(????????????(????????????(????????????????????????????????????????????????????? ????| B?BB?BB?BB?B B?B B?B B?B B?B]}} P P]}} P P]}} P P]}} P P]} }P]} }P]} }P]} }P?H}operator delete []?operator delete?operator delete []&operator deleteRoperator new []?operator new?operator new []operator new<nothrow\ _ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cpp/usr/local/google/home/digit/android/main/cupcake/androidnothrowsize_ZdlPvRKSt9nothrow_t_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1Aaeabi5TE .symtab.strtab.shstrtab.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rel.text._ZdaPvRKSt9nothrow_t.ARM.extab.text._ZdaPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdaPvRKSt9nothrow_t.rel.text._ZdlPvRKSt9nothrow_t.ARM.extab.text._ZdlPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdlPvRKSt9nothrow_t.rel.text._ZdaPv.ARM.extab.text._ZdaPv.rel.ARM.exidx.text._ZdaPv.rel.text._ZdlPv.ARM.extab.text._ZdlPv.rel.ARM.exidx.text._ZdlPv.rel.text._ZnajRKSt9nothrow_t.ARM.extab.text._ZnajRKSt9nothrow_t.rel.ARM.exidx.text._ZnajRKSt9nothrow_t.rel.text._ZnwjRKSt9nothrow_t.ARM.extab.text._ZnwjRKSt9nothrow_t.rel.ARM.exidx.text._ZnwjRKSt9nothrow_t.rel.text._Znaj.ARM.extab.text._Znaj.rel.ARM.exidx.text._Znaj.rel.text._Znwj.ARM.extab.text._Znwj.rel.ARM.exidx.text._Znwj.rodata.rel.debug_frame.rel.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.ARM.attributes4!4'4,4>:H: T>N??J \@>?Z ?> y ?p?  ? ?> ?(? ?>?8p?8  ?>O@4 ?>EP`p?P\ ?>?Xw ?>?h?p?h? ?>?p ? ?>?|p?|?  > L? $  >"B?jp??"f  >%?? ? , >'???p??'? 4 >*?? ? D >,???p??,? L >/??? \ ?>2+?' ? @>4:??6 #>6Nn `J $#P>8]0? `h. qp@ Y ????1 ????         " "$%' ')*, ,./12468:;<  !&=RY` t{ "? '? ,?1new.cpp$t_ZdaPvRKSt9nothrow_tfree__aeabi_unwind_cpp_pr0_ZdlPvRKSt9nothrow_t_ZdaPv_ZdlPv_ZnajRKSt9nothrow_tmalloc_ZnwjRKSt9nothrow_t_Znaj_Znwj_ZSt7nothrow ...).6.M.S.Y.r.y..?.? ? ?+?+?.?.? ? ?+?+?..
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/lib/
libstdc++.a 143 L %?  7? ptr7?+ ?Q??g ?0?I? ptr0?t ?Q?  ?& ptr?? ?<?R ptr?P+?? $??+(O ?Q?C&?? b??&(? ?Q?P?? ??(?p?C? ?<?( p?R??? bionic/libstdc++/src/usr/local/google/home/digit/android/main/cupcake/android/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/../lib/gcc/arm-eabi/4.2.1/includebionic/libstdc++/includenew.cppstddef.h<built-in>new60/0/0/00/00/0*0/%0/0303???(????????????(????????????(????????????(????????????????????????????????????????????????????? ????| B?BB?BB?BB?B B?B B?B B?B B?B]}} P P]}} P P]}} P P]}} P P]} }P]} }P]} }P]} }P?H}operator delete []?operator delete?operator delete []&operator deleteRoperator new []?operator new?operator new []operator new<nothrow\ _ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cpp/usr/local/google/home/digit/android/main/cupcake/androidnothrowsize_ZdlPvRKSt9nothrow_t_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1Aaeabi5TE .symtab.strtab.shstrtab.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rel.text._ZdaPvRKSt9nothrow_t.ARM.extab.text._ZdaPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdaPvRKSt9nothrow_t.rel.text._ZdlPvRKSt9nothrow_t.ARM.extab.text._ZdlPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdlPvRKSt9nothrow_t.rel.text._ZdaPv.ARM.extab.text._ZdaPv.rel.ARM.exidx.text._ZdaPv.rel.text._ZdlPv.ARM.extab.text._ZdlPv.rel.ARM.exidx.text._ZdlPv.rel.text._ZnajRKSt9nothrow_t.ARM.extab.text._ZnajRKSt9nothrow_t.rel.ARM.exidx.text._ZnajRKSt9nothrow_t.rel.text._ZnwjRKSt9nothrow_t.ARM.extab.text._ZnwjRKSt9nothrow_t.rel.ARM.exidx.text._ZnwjRKSt9nothrow_t.rel.text._Znaj.ARM.extab.text._Znaj.rel.ARM.exidx.text._Znaj.rel.text._Znwj.ARM.extab.text._Znwj.rel.ARM.exidx.text._Znwj.rodata.rel.debug_frame.rel.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.ARM.attributes4!4'4,4>:H: T>N??J \@>?Z ?> y ?p?  ? ?> ?(? ?>?8p?8  ?>O@4 ?>EP`p?P\ ?>?Xw ?>?h?p?h? ?>?p ? ?>?|p?|?  > L? $  >"B?jp??"f  >%?? ? , >'???p??'? 4 >*?? ? D >,???p??,? L >/??? \ ?>2+?' ? @>4:??6 #>6Nn `J $#P>8]0? `h. qp@ Y ????1 ????         " "$%' ')*, ,./12468:;<  !&=RY` t{ "? '? ,?1new.cpp$t_ZdaPvRKSt9nothrow_tfree__aeabi_unwind_cpp_pr0_ZdlPvRKSt9nothrow_t_ZdaPv_ZdlPv_ZnajRKSt9nothrow_tmalloc_ZnwjRKSt9nothrow_t_Znaj_Znwj_ZSt7nothrow ...).6.M.S.Y.r.y..?.? ? ?+?+?.?.? ? ?+?+?..
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/lib/
libstdc++.a 144 operator delete []6operator deleteboperator new []?operator new?operator new []operator newJnothrows_ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cppnothrowsize_ZdlPvRKSt9nothrow_t/home/bjbeare/Android/wrs-eclair-b2e1.Feb17.sdk_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1?$?.symtab.strtab.shstrtab.rel.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rodata.rel.debug_frame.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.text.__i686.get_pc_thunk.bx.note.GNU-stack.group?4@s p?%?+?0?B?V> 0?RcN ( ^ujx?f 0? wl ?x ?? ??6
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/lib/
libstdc++.a 143 L %?  7? ptr7?+ ?Q??g ?0?I? ptr0?t ?Q?  ?& ptr?? ?<?R ptr?P+?? $??+(O ?Q?C&?? b??&(? ?Q?P?? ??(?p?C? ?<?( p?R??? bionic/libstdc++/src/usr/local/google/home/digit/android/main/cupcake/android/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/../lib/gcc/arm-eabi/4.2.1/includebionic/libstdc++/includenew.cppstddef.h<built-in>new60/0/0/00/00/0*0/%0/0303???(????????????(????????????(????????????(????????????????????????????????????????????????????? ????| B?BB?BB?BB?B B?B B?B B?B B?B]}} P P]}} P P]}} P P]}} P P]} }P]} }P]} }P]} }P?H}operator delete []?operator delete?operator delete []&operator deleteRoperator new []?operator new?operator new []operator new<nothrow\ _ZdaPvsize_t_ZdaPvRKSt9nothrow_tnothrow_tbionic/libstdc++/src/new.cpp/usr/local/google/home/digit/android/main/cupcake/androidnothrowsize_ZdlPvRKSt9nothrow_t_Znaj_ZnajRKSt9nothrow_tunsigned intoperator delete_ZSt7nothrow_ZnwjRKSt9nothrow_tlong long intoperator delete []_Znwjlong intGNU C++ 4.2.1_ZdlPvoperator newoperator new []GCC: (GNU) 4.2.1Aaeabi5TE .symtab.strtab.shstrtab.text.data.bss.debug_abbrev.rel.debug_info.rel.debug_line.rel.text._ZdaPvRKSt9nothrow_t.ARM.extab.text._ZdaPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdaPvRKSt9nothrow_t.rel.text._ZdlPvRKSt9nothrow_t.ARM.extab.text._ZdlPvRKSt9nothrow_t.rel.ARM.exidx.text._ZdlPvRKSt9nothrow_t.rel.text._ZdaPv.ARM.extab.text._ZdaPv.rel.ARM.exidx.text._ZdaPv.rel.text._ZdlPv.ARM.extab.text._ZdlPv.rel.ARM.exidx.text._ZdlPv.rel.text._ZnajRKSt9nothrow_t.ARM.extab.text._ZnajRKSt9nothrow_t.rel.ARM.exidx.text._ZnajRKSt9nothrow_t.rel.text._ZnwjRKSt9nothrow_t.ARM.extab.text._ZnwjRKSt9nothrow_t.rel.ARM.exidx.text._ZnwjRKSt9nothrow_t.rel.text._Znaj.ARM.extab.text._Znaj.rel.ARM.exidx.text._Znaj.rel.text._Znwj.ARM.extab.text._Znwj.rel.ARM.exidx.text._Znwj.rodata.rel.debug_frame.rel.debug_loc.rel.debug_pubnames.rel.debug_aranges.debug_str.comment.ARM.attributes4!4'4,4>:H: T>N??J \@>?Z ?> y ?p?  ? ?> ?(? ?>?8p?8  ?>O@4 ?>EP`p?P\ ?>?Xw ?>?h?p?h? ?>?p ? ?>?|p?|?  > L? $  >"B?jp??"f  >%?? ? , >'???p??'? 4 >*?? ? D >,???p??,? L >/??? \ ?>2+?' ? @>4:??6 #>6Nn `J $#P>8]0? `h. qp@ Y ????1 ????         " "$%' ')*, ,./12468:;<  !&=RY` t{ "? '? ,?1new.cpp$t_ZdaPvRKSt9nothrow_tfree__aeabi_unwind_cpp_pr0_ZdlPvRKSt9nothrow_t_ZdaPv_ZdlPv_ZnajRKSt9nothrow_tmalloc_ZnwjRKSt9nothrow_t_Znaj_Znwj_ZSt7nothrow ...).6.M.S.Y.r.y..?.? ? ?+?+?.?.? ? ?+?+?..

Completed in 605 milliseconds

1 2