Searched refs:new (Results 276 - 300 of 2217) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/skia/include/core/
H A DSkPostConfig.h100 # define SkNEW(type_name) (new type_name)
101 # define SkNEW_ARGS(type_name, args) (new type_name args)
102 # define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
103 # define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
104 # define SkNEW_PLACEMENT_ARGS(buf, type_name, args) (new (buf) type_name args)
262 void * operator new(
269 void * operator new[](
284 # define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0)
286 # define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
288 # define new DEBUG_CLIENTBLOC macro
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbrel_ma.c36 static errcode_t bma_move(ext2_brel brel, blk64_t old, blk64_t new);
124 if (ma->entries[(unsigned)old].new == 0)
143 if (ma->entries[(unsigned)brel->current].new == 0)
153 static errcode_t bma_move(ext2_brel brel, blk64_t old, blk64_t new) argument
158 if ((old > ma->max_block) || (new > ma->max_block))
160 if (ma->entries[(unsigned)old].new == 0)
162 ma->entries[(unsigned)new] = ma->entries[old];
163 ma->entries[(unsigned)old].new = 0;
174 if (ma->entries[(unsigned)old].new == 0)
176 ma->entries[(unsigned)old].new
[all...]
H A Direl_ma.c39 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
155 if (ma->entries[(unsigned) old].new == 0)
187 if (ma->entries[(unsigned) old].new == 0)
223 if (ma->entries[(unsigned) irel->current].new == 0)
277 if (ma->entries[(unsigned) ino].new == 0)
305 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new)
310 if ((old > ma->max_inode) || (new > ma->max_inode))
312 if (ma->entries[(unsigned) old].new == 0)
315 ma->entries[(unsigned) new] = ma->entries[(unsigned) old];
316 if (ma->ref_entries[(unsigned) new]
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemset.S177 if (p0.new) jump:nt .L3
192 if (!p0.new) jump:nt .L8
204 if (!p0.new) jump:nt .L10
210 if (p0.new) jump:nt .L1
215 if (!p0.new) jump:nt .L12
221 if (p0.new) jump:nt .L1
226 if (!p0.new) jump:nt .L14
266 if (!p0.new) jump:nt .L28
279 if (!p0.new) jump:nt .L33
288 if (!p0.new) jum
[all...]
/external/skia/include/core/
H A DSkPostConfig.h100 # define SkNEW(type_name) (new type_name)
101 # define SkNEW_ARGS(type_name, args) (new type_name args)
102 # define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
103 # define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
104 # define SkNEW_PLACEMENT_ARGS(buf, type_name, args) (new (buf) type_name args)
262 void * operator new(
269 void * operator new[](
284 # define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0)
286 # define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
288 # define new DEBUG_CLIENTBLOC macro
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dbasic.rb18 lexer = Zero::Lexer.new( '0' )
28 lexer = Zero::Lexer.new( '0' )
35 lexer = Zero::Lexer.new( '1' )
60 lexer = Binary::Lexer.new( '01' )
73 lexer = Binary::Lexer.new( '2' )
98 lexer = BinaryFooze::Lexer.new( '0fooze1' )
114 lexer = BinaryFooze::Lexer.new( '2' )
137 lexer = FooStar::Lexer.new( 'ffofoofooo' )
168 lexer = FooStar::Lexer.new( '2' )
191 lexer = FooPlus::Lexer.new( 'fofoofoo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEvent.h80 return adoptRefWillBeNoop(new Event);
88 return adoptRefWillBeNoop(new Event(type, false, false));
92 return adoptRefWillBeNoop(new Event(type, false, true));
96 return adoptRefWillBeNoop(new Event(type, true, false));
100 return adoptRefWillBeNoop(new Event(type, true, true));
105 return adoptRefWillBeNoop(new Event(type, initializer));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBAny.h56 return new IDBAny(idbObject);
61 return new IDBAny(idbObject);
65 return new IDBAny(value, blobInfo);
70 return new IDBAny(idbObject);
74 return new IDBAny(value);
78 return new IDBAny(value, blobInfo, key, keyPath);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODArena.h64 return adoptRef(new FastMallocAllocator);
74 // Creates a new PODArena configured with a FastMallocAllocator.
77 return adoptRef(new PODArena);
80 // Creates a new PODArena configured with the given Allocator.
83 return adoptRef(new PODArena(allocator));
89 return new (allocateBase<T>()) T();
95 return new (allocateBase<T>()) T(argument1);
134 m_chunks.append(adoptPtr(new Chunk(m_allocator.get(), m_currentChunkSize)));
/external/chromium_org/third_party/webrtc/base/
H A Dcryptstring.h44 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); }
52 CryptString() : impl_(new EmptyCryptStringImpl()) {}
63 void Clear() { impl_.reset(new EmptyCryptStringImpl()); }
79 storage_ = new char[32];
127 storage_ = new char[capacity_];
169 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl;
H A Dasyncinvoker.h81 new RefCountedObject<FireAndForgetAsyncClosure<FunctorT> >(functor);
93 new RefCountedObject<NotifyingAsyncClosure<ReturnT, FunctorT, HostT> >(
107 new RefCountedObject<NotifyingAsyncClosure<void, FunctorT, HostT> >(
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dlist.h31 * Insert a new entry between two known consecutive entries.
37 static inline void __list_add(struct list_head *new, argument
41 next->prev = new;
42 new->next = next;
43 new->prev = prev;
44 prev->next = new;
47 extern void __list_add(struct list_head *new,
53 * list_add - add a new entry
54 * @new: new entr
60 list_add(struct list_head *new, struct list_head *head) argument
74 list_add_tail(struct list_head *new, struct list_head *head) argument
122 list_replace(struct list_head *old, struct list_head *new) argument
131 list_replace_init(struct list_head *old, struct list_head *new) argument
651 hlist_move_list(struct hlist_head *old, struct hlist_head *new) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DOptional.h35 new (storage.buffer) T(y);
39 new (storage.buffer) T(*O);
43 new (storage.buffer) T(std::forward<T>(y));
47 new (storage.buffer) T(std::move(*O));
55 new (storage.buffer) T(std::move(y));
83 new (storage.buffer) T(y);
/external/qemu/util/
H A Dpath.c51 struct pathelem *new = malloc(sizeof(*new)); local
52 new->name = strdup(name);
53 new->pathname = g_strdup_printf("%s/%s", root, name);
54 new->num_entries = 0;
55 return new;
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregcache.c227 Bool new; local
228 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
230 if (new)
236 Bool new; local
239 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
241 if (new)
/external/chromium_org/mojo/dbus/
H A Ddbus_external_service.h74 BindToRequest(new ServiceImpl, &request);
79 external_service_.reset(BindToPipe(new Impl(this), client_handle.Pass()));
96 app_.reset(new ApplicationImpl(service_, service_provider_handle.Pass()));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSKeyframesRule.h42 static PassRefPtrWillBeRawPtr<StyleRuleKeyframes> create() { return adoptRefWillBeNoop(new StyleRuleKeyframes()); }
60 PassRefPtrWillBeRawPtr<StyleRuleKeyframes> copy() const { return adoptRefWillBeNoop(new StyleRuleKeyframes(*this)); }
79 return adoptRefWillBeNoop(new CSSKeyframesRule(rule, sheet));
H A DCSSPropertySourceData.h78 return adoptRefWillBeNoop(new CSSStyleSourceData());
107 return adoptRefWillBeNoop(new CSSRuleSourceData(type));
112 return adoptRefWillBeNoop(new CSSRuleSourceData(UNKNOWN_RULE));
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShapeValue.h52 return adoptRef(new ShapeValue(shape, cssBox));
57 return adoptRef(new ShapeValue(cssBox));
62 return adoptRef(new ShapeValue(image));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGRect.h38 return adoptRef(new SVGRect());
43 return adoptRef(new SVGRect(InvalidSVGRectTag()));
48 return adoptRef(new SVGRect(rect));
H A DSVGTransform.h55 return adoptRef(new SVGTransform());
60 return adoptRef(new SVGTransform(type, mode));
65 return adoptRef(new SVGTransform(affineTransform));
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationValue.h70 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FloatAnimationValue(*this)); }
87 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new TransformAnimationValue(*this)); }
104 virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FilterAnimationValue(*this)); }
/external/chromium_org/third_party/skia/gm/
H A Dcopy_config.py53 new=self._args.new_config_name)
55 def _duplicate_config(self, path, old, new):
61 new: new config name
70 config = new
90 help=('Name of the new config we want to create.'))
H A Drename_config.py53 new=self._args.new_config_name)
55 def _rename_config(self, path, old, new):
61 new: new config name
70 config = new
/external/chromium_org/v8/tools/testrunner/server/
H A Dcompression.py97 def _AppendData(self, new):
99 self.data.write(new)
100 self.datalength += len(new)

Completed in 694 milliseconds

<<11121314151617181920>>