HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 1 - 25 of 341) 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/webkit/Source/WebKit2/
WebKit2Prefix.h 32 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro
33 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
  /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/tcpdump/
setsignal.c 77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
81 if (sigaction(sig, &new, &old) < 0)
  /ndk/sources/host-tools/sed-4.2.1/lib/
strndup.c 32 char *new = malloc (len + 1); local
34 if (new == NULL)
37 new[len] = '\0';
38 return memcpy (new, s, len);
  /bionic/libstdc++/src/
new.cpp 1 #include "new"
6 void* operator new(std::size_t size)
15 void* operator new[](std::size_t size)
34 void* operator new(std::size_t size, const std::nothrow_t&)
39 void* operator new[](std::size_t size, const std::nothrow_t&)
  /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/compiler-rt/lib/sanitizer_common/
sanitizer_placement_new.h 13 // The file provides 'placement new'.
29 inline void *operator new(__sanitizer::operator_new_ptr_type sz, void *p) {
  /external/webkit/Source/JavaScriptCore/
JavaScriptCorePrefix.h 29 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro
30 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
  /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;
new1_4.cpp 10 #include <new>
15 void* operator new(size_t size, double = 0.0) { return ::operator new(size);}
20 int main() { try { new A; } catch(...) {} }
  /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;
  /external/webkit/Source/WebCore/bindings/scripts/
InFilesParser.pm 62 sub new subroutine
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.cpp 36 void* Operation::operator new(size_t size, android::LinearAllocator* allocator)
41 void* Operation::operator new(size_t size)
43 ALOGE("Cannot allocate a new Operation directly!");
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.cons/
char_pointer.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_char_pointer_cat.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_locale_cat.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
locale_string_cat.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
string.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)

Completed in 542 milliseconds

1 2 3 4 5 6 7 8 91011>>