HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 1 - 25 of 413) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/Inputs/
warn-new-overaligned-3.h 3 // This header file pretends to be <new> from the system library, for the
6 void* operator new(unsigned long) {
9 void* operator new[](unsigned long) {
13 void* operator new(unsigned long, void *) {
17 void* operator new[](unsigned long, void *) {
  /external/clang/test/CXX/special/class.free/
p1.cpp 5 void *operator new(size_t) {
8 void *operator new[](size_t) {
  /abi/cpp/src/
new.cc 30 #include <new>
34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
  /external/bison/lib/
strdup.c 42 void *new = malloc (len); local
44 if (new == NULL)
47 return (char *) memcpy (new, s, len);
strndup.c 29 char *new = malloc (len + 1); local
31 if (new == NULL)
34 new[len] = '\0';
35 return memcpy (new, s, len);
  /external/clang/test/Sema/
arm-darwin-aapcs.cpp 10 void* operator new(size_t size)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_placement_new.h 13 // The file provides 'placement new'.
21 inline void *operator new(__sanitizer::operator_new_size_type sz, void *p) {
  /external/tcpdump/
setsignal.c 77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
82 new.sa_flags = SA_RESTART;
83 if (sigaction(sig, &new, &old) < 0)
  /bionic/libc/bionic/
new.cpp 18 #include <new>
25 void* operator new(std::size_t size) {
28 __libc_fatal("new failed to allocate %zu bytes", size);
33 void* operator new[](std::size_t size) {
36 __libc_fatal("new[] failed to allocate %zu bytes", size);
49 void* operator new(std::size_t size, const std::nothrow_t&) {
53 void* operator new[](std::size_t size, const std::nothrow_t&) {
  /ndk/sources/cxx-stl/gabi++/src/
new.cc 31 #include <new>
96 void* operator new(std::size_t size) throw(std::bad_alloc) {
113 void* operator new(std::size_t size, const std::nothrow_t& no)
116 return ::operator new(size);
123 void* operator new[](std::size_t size) throw(std::bad_alloc) {
124 return ::operator new(size);
128 void* operator new[](std::size_t size, const std::nothrow_t& no)
130 return ::operator new(size, no);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_new_delete.cpp 9 // This file implements the new and delete operators.
14 #include <new>
18 [new.delete.single]
36 operator new(std::size_t size)
62 [new.delete.single]
64 Calls operator new(size). If the call returns normally, returns the result of
69 operator new(size_t size, const std::nothrow_t&)
79 p = ::operator new(size);
88 [new.delete.array]
90 Returns operator new(size)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbase.h 36 static void* operator new(size_t in_size)
40 static void* operator new[](size_t in_size)
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/
Class.pm 14 sub new { subroutine
16 my $self = $class->SUPER::new(@args);
  /external/clang/test/CodeGenCXX/
DynArrayInit.cpp 7 inline void* operator new[](unsigned long, void* __p) { return __p; }
9 new (a) char[4]();
  /external/toybox/toys/android/
setenforce.c 22 char *new = *toys.optargs; local
26 else if (!strcmp(new, "1") || !strcasecmp(new, "enforcing")) state = 1;
27 else if (!strcmp(new, "0") || !strcasecmp(new, "permissive")) state = 0;
28 else error_exit("Invalid state: %s", new);
31 if (ret == -1) perror_msg("Couldn't set enforcing status to '%s'", new);
  /ndk/tests/device/test-stlport_shared-exception/jni/
new11.cpp 5 #include <new>
8 void *operator new[](size_t bytes) throw (std::bad_alloc) {
11 return operator new (bytes);
18 // operator new[].
20 new (X);
p755.cpp 2 // It checks to see if you can define your own global new operator.
6 #include <new>
10 void* operator new(size_t sz) throw (std::bad_alloc) {
17 int* i = new int;
  /ndk/tests/device/test-stlport_static-exception/jni/
new11.cpp 5 #include <new>
8 void *operator new[](size_t bytes) throw (std::bad_alloc) {
11 return operator new (bytes);
18 // operator new[].
20 new (X);
p755.cpp 2 // It checks to see if you can define your own global new operator.
6 #include <new>
10 void* operator new(size_t sz) throw (std::bad_alloc) {
17 int* i = new int;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
md5.py 11 new = md5 variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
md5.py 11 new = md5 variable
  /external/libcxx/test/std/localization/locales/locale/locale.cons/
char_pointer.pass.cpp 19 #include <new>
26 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_char_pointer_cat.pass.cpp 19 #include <new>
26 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_locale_cat.pass.cpp 19 #include <new>
26 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_string_cat.pass.cpp 18 #include <new>
25 void* operator new(std::size_t s) throw(std::bad_alloc)

Completed in 1816 milliseconds

1 2 3 4 5 6 7 8 91011>>