Searched refs:new (Results 226 - 250 of 2217) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DWaveShaperNode.h42 return adoptRefCountedGarbageCollectedWillBeNoop(new WaveShaperNode(context));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODFreeListArena.h38 return adoptRef(new PODFreeListArena);
41 // Creates a new PODFreeListArena configured with the given Allocator.
44 return adoptRef(new PODFreeListArena(allocator));
53 // Use placement operator new to allocate a T at this location.
54 new(ptr) T();
67 // Use placement operator new to allocate a T at this location.
68 new(ptr) T(argument1);
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamWebAudioSource.h47 static PassOwnPtr<MediaStreamWebAudioSource> create(PassOwnPtr<WebAudioSourceProvider> provider) { return adoptPtr(new MediaStreamWebAudioSource(provider)); }
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextFeaturesClientImpl.h42 return adoptPtr(new ContextFeaturesClientImpl());
H A DMIDIClientProxy.h46 return adoptPtr(new MIDIClientProxy(client));
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dv4llookup.h30 v4l_lookup_ = new V4LLookup();
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h55 static void* operator new(size_t size, void *ctx)
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlibc_override_redefine.h34 // malloc/new/etc. (Typically this will be a windows msvcrt.dll that
52 void* operator new(size_t size) { return tc_new(size); }
54 void* operator new[](size_t size) { return tc_newarray(size); }
56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlibc_override_redefine.h34 // malloc/new/etc. (Typically this will be a windows msvcrt.dll that
52 void* operator new(size_t size) { return tc_new(size); }
54 void* operator new[](size_t size) { return tc_newarray(size); }
56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h13 blk64_t new;
62 errcode_t (*move)(ext2_brel brel, blk64_t old, blk_t new);
83 #define ext2fs_brel_move(brel, old, new) ((brel)->move((brel), old, new))
/external/ipsec-tools/src/racoon/
H A Dvmbuf.c124 vchar_t *new; local
131 if ((new = vmalloc(src->l)) == NULL)
134 memcpy(new->v, src->v, src->l);
136 return new;
/external/ltrace/testsuite/ltrace.minor/
H A Ddemangle.h11 void* operator new(size_t);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h55 static void* operator new(size_t size, void *ctx)
/external/valgrind/main/massif/tests/
H A Ddeep-C.stderr.exp4 Massif: operator new(unsigned)
5 Massif: operator new(unsigned long)
7 Massif: operator new[](unsigned)
8 Massif: operator new[](unsigned long)
14 Massif: operator new(unsigned, std::nothrow_t const&)
15 Massif: operator new[](unsigned, std::nothrow_t const&)
16 Massif: operator new(unsigned long, std::nothrow_t const&)
17 Massif: operator new[](unsigned long, std::nothrow_t const&)
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DFastQueue.h46 protected List<T> data = new ArrayList<T>();
76 throw new NoSuchElementException("queue index "+(p+i)+" > size "+data.size());
85 StringBuffer buf = new StringBuffer();
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dparameter.rb5 Parameter = Struct.new( :name, :default )
20 new.add( :values ) do | p |
36 else Parameter.new( name.to_s )
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dbasic.rb19 lexer = SimpleRewriting::Lexer.new( input )
20 tokens = ANTLR3::TokenRewriteStream.new( lexer )
227 lexer = SimpleRewriting::Lexer.new( 'abcc' )
228 stream = ANTLR3::TokenRewriteStream.new( lexer )
239 lexer = SimpleRewriting::Lexer.new( 'abcccba' )
240 stream = ANTLR3::TokenRewriteStream.new( lexer )
250 lexer = SimpleRewriting::Lexer.new( 'abcccba' )
251 stream = ANTLR3::TokenRewriteStream.new( lexer )
261 lexer = SimpleRewriting::Lexer.new( 'abcccba' )
262 stream = ANTLR3::TokenRewriteStream.new( lexe
[all...]
H A Dvia-parser.rb91 lexer = TokenRewrites::Lexer.new( input )
92 tokens = ANTLR3::TokenRewriteStream.new( lexer )
93 parser = TokenRewrites::Parser.new( tokens )
/external/chromium_org/cc/output/
H A Dcopy_output_request.h26 return make_scoped_ptr(new CopyOutputRequest);
30 return make_scoped_ptr(new CopyOutputRequest(false, result_callback));
34 return make_scoped_ptr(new CopyOutputRequest(true, result_callback));
56 // By default copy requests create a new TextureMailbox to return contents
H A Dcopy_output_result.h22 return make_scoped_ptr(new CopyOutputResult);
26 return make_scoped_ptr(new CopyOutputResult(bitmap.Pass()));
33 new CopyOutputResult(size, texture_mailbox, release_callback.Pass()));
/external/chromium_org/courgette/third_party/
H A Dpaged_array.h14 #include <new>
47 pages_ = new(std::nothrow) T*[pages_needed];
52 T* block = new(std::nothrow) T[kPageSize];
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURL.h48 return adoptRefWillBeNoop(new DOMURL(url, blankURL(), exceptionState));
52 return adoptRefWillBeNoop(new DOMURL(url, KURL(KURL(), base), exceptionState));
57 return adoptRefWillBeNoop(new DOMURL(url, base->m_url, exceptionState));
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DApplicationCacheErrorEvent.h32 return adoptRefWillBeNoop(new ApplicationCacheErrorEvent);
37 return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(reason, url, status, message));
42 return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(eventType, initializer));
H A DAutocompleteErrorEvent.h41 return adoptRefWillBeNoop(new AutocompleteErrorEvent);
46 return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason));
51 return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initializer));
H A DCompositionEvent.h46 return adoptRefWillBeNoop(new CompositionEvent);
51 return adoptRefWillBeNoop(new CompositionEvent(type, view, data, underlines));
56 return adoptRefWillBeNoop(new CompositionEvent(type, initializer));

Completed in 5065 milliseconds

1234567891011>>