HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 76 - 100 of 221) sorted by null

1 2 34 5 6 7 8 9

  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_construct.h 84 #if defined (new)
85 # define _STLP_NEW_REDEFINE new
86 # undef new macro
91 new(__p) _T1();
119 new(__p) _Tp(__val);
139 new(__p) _T1(__val);
160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val));
183 # define new DEBUG_NEW macro
  /external/llvm/include/llvm/MC/
MCContext.h 133 /// CreateTempSymbol - Create and return a new assembler temporary symbol
276 // operator new and delete aren't allowed inside namespaces.
278 /// @brief Placement new for using the MCContext's allocator.
280 /// This placement form of operator new uses the MCContext's allocator for
281 /// obtaining memory. It is a non-throwing new, which means that it returns
287 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
289 /// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
300 inline void *operator new(size_t Bytes, llvm::MCContext &C,
304 /// @brief Placement delete companion to the new above.
306 /// This operator is just a companion to the new above. There is no way o
    [all...]
  /external/stlport/test/eh/
nc_alloc.cpp 21 # include <new>
27 # include <new.h>
205 void* _STLP_CALL operator new(size_t s)
212 void* _STLP_CALL operator new(size_t size, const EH_STD::nothrow_t&) throw() {
223 void* _STLP_CALL operator new[](size_t size ) throw(EH_STD::bad_alloc) {
228 void* _STLP_CALL operator new[](size_t size, const EH_STD::nothrow_t&) throw() {
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 27 #include <new>
99 AllocTypeClassNew, // Encompasses class operator new from FastAllocBase.
100 AllocTypeClassNewArray, // Encompasses class operator new[] from FastAllocBase.
103 AllocTypeNew, // Encompasses global operator new.
104 AllocTypeNewArray // Encompasses global operator new[].
113 // allocation operation. If memory is allocated with operator new[]
217 // new by accident.
225 WTF_PRIVATE_INLINE void* operator new(size_t size) throw (std::bad_alloc) { return fastMalloc(size); }
226 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
229 WTF_PRIVATE_INLINE void* operator new[](size_t size) throw (std::bad_alloc) { return fastMalloc(size);
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 442 void* HTMLDocument::operator new(size_t size)
444 return Node::operator new(size);
447 void* HTMLDocument::operator new[](size_t size)
449 return Node::operator new[](size);
HTMLLinkElement.cpp 68 return adoptRef(new HTMLLinkElement(tagName, document, createdByParser));
508 void* HTMLLinkElement::operator new(size_t size)
510 return Node::operator new(size);
513 void* HTMLLinkElement::operator new[](size_t size)
515 return Node::operator new[](size);
  /bionic/libc/bionic/
semaphore.c 166 unsigned int old, new; local
175 new = SEMCOUNT_DECREMENT(old);
178 (int)(new|shared),
190 unsigned int old, new; local
199 new = SEMCOUNT_DECREMENT(old);
202 (int)(new|shared),
220 unsigned int old, new; local
234 new = SEMCOUNT_ONE;
236 new = SEMCOUNT_INCREMENT(old);
239 (int)(new|shared)
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 40 import new namespace
68 # Unpicklable statements to seed new sessions with.
149 statement: string, the statement that created new unpicklable global(s).
170 """Creates a new session and renders the shell.html template.
179 # create a new session
226 statement_module = new.module('__main__')
274 # extract the new globals that this statement added
289 # new globals back into the datastore.
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 125 void* operator new(size_t size) { return (::operator new)(size); }
  /external/clang/include/clang/AST/
Attr.h 41 void *operator new(size_t Bytes, const clang::ASTContext &C,
45 void *operator new[](size_t Bytes, const clang::ASTContext &C,
48 // It is good practice to pair new/delete operators. Also, MSVC gives many
69 void* operator new(size_t bytes) throw() {
70 llvm_unreachable("Attrs cannot be allocated with regular 'new'.");
77 // Forward so that the regular new and delete do not hide global ones.
78 void* operator new(size_t Bytes, ASTContext &C,
80 return ::operator new(Bytes, C, Alignment);
  /external/clang/test/SemaTemplate/
example-dynarray.cpp 6 // Placement new requires <new> to be included, but we don't support that yet.
7 void* operator new(size_t, void* ptr) throw() {
23 new (Start + I) T(other[I]);
37 new (NewStart + I) T(other[I]);
105 new (NewStart + I) T(Start[I]);
116 new (Last) T(value);
  /external/ipsec-tools/src/racoon/
policy.c 297 struct secpolicy *new; local
299 new = racoon_calloc(1, sizeof(*new));
300 if (new == NULL)
303 return new;
391 inssp(new)
392 struct secpolicy *new;
398 if (new->spidx.priority < p->spidx.priority) {
399 TAILQ_INSERT_BEFORE(p, new, chain);
405 TAILQ_INSERT_TAIL(&sptree, new, chain)
438 struct ipsecrequest *new; local
    [all...]
sainfo.c 191 struct sainfo *new; local
193 new = racoon_calloc(1, sizeof(*new));
194 if (new == NULL)
197 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT;
198 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX;
200 return new;
252 inssainfo(new)
253 struct sainfo *new;
258 LIST_INSERT_HEAD(&sitree, new, chain)
325 struct sainfoalg *new; local
    [all...]
schedule.c 131 * add new schedule to schedule table.
184 caddr_t new; local
203 new = racoon_malloc(*len);
204 if (new == NULL)
206 dst = (struct scheddump *)new;
223 *buf = new;
272 printf("new queue tick = %d\n", *tick);
  /external/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 63 #--- HTML::Toc::new() ---------------------------------------------------------
66 sub new { subroutine
88 } # new()
97 # returns: 0 if new level equals previous level, 1 if new level exceeds
98 # previous level, -1 if new level is smaller then previous level.
118 # Bias to new level being smaller than previous level;
236 # Yes, new level is greater than previous level;
244 # Make sure, new level is increased one step only
271 # Yes, new level is smaller than previous level
    [all...]
TocUpdator.pm 35 #--- HTML::TocUpdator::new() --------------------------------------------------
38 sub new { subroutine
41 my $self = $aType->SUPER::new;
54 } # new()
161 # note: Updating actually means: deleting the old ToC and inserting a new
186 my $tokenUpdateBeginParser = HTML::_TokenUpdateParser->new(
190 my $tokenUpdateEndParser = HTML::_TokenUpdateParser->new(
603 #--- HTML::_TokenUpdateParser::new() ------------------------------------------
606 sub new { subroutine
610 my $self = $aType->SUPER::new;
    [all...]
  /external/stlport/src/
cxa.c 72 struct exit_function *new = __new_exitfn (); local
74 if ( new == NULL )
77 new->flavor = ef_cxa;
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
  /external/valgrind/main/memcheck/perf/
many-loss-records.c 92 struct Chunk *new = NULL; // shut gcc up local
96 new = malloc (sz);
99 new->child = prev;
100 prev = new;
102 topblocks[freetop] = new;
  /external/webkit/Source/JavaScriptCore/runtime/
ArgList.h 160 // Prohibits new / delete, which would break GC.
163 void* operator new(size_t size)
172 void* operator new[](size_t);
175 void* operator new(size_t, void*);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 64 Strong<JSDOMWindowPrototype> prototype(*JSDOMWindow::commonJSGlobalData(), new JSDOMWindowPrototype(*JSDOMWindow::commonJSGlobalData(), 0, prototypeStructure));
67 JSDOMWindow* jsDOMWindow = new (JSDOMWindow::commonJSGlobalData()) JSDOMWindow(*JSDOMWindow::commonJSGlobalData(), structure, domWindow, this);
162 void* JSDOMWindowShell::operator new(size_t size)
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 97 sub new subroutine
133 $codeGenerator = $ifaceName->new($object, $useOutputDir, $useOutputHeadersDir, $useLayerOnTop, $preprocessor, $writeDependencies, $verbose);
294 my $parser = IDLParser->new(1);
CodeGeneratorGObject.pm 41 sub new { subroutine
    [all...]
  /external/webkit/Source/WebCore/
config.h 115 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h".
116 #undef new macro
159 // New theme
  /external/webkit/Source/WebCore/inspector/
CodeGeneratorInspector.pm 245 sub new subroutine
884 InspectorBackend = new InspectorBackendStub();
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineBox.cpp 68 void* InlineBox::operator new(size_t sz, RenderArena* renderArena) throw()

Completed in 2046 milliseconds

1 2 34 5 6 7 8 9