/external/llvm/include/llvm/Support/ |
YAMLParser.h | 140 void *operator new ( size_t Size 531 Doc->reset(new Document(S));
|
/external/llvm/lib/IR/ |
ConstantsContext.h | 36 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; 39 void *operator new(size_t s) { 40 return User::operator new(s, 1); 53 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; 56 void *operator new(size_t s) { 57 return User::operator new(s, 2); 74 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; 77 void *operator new(size_t s) { 78 return User::operator new(s, 3); 95 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION [all...] |
/external/skia/src/core/ |
SkTLList.h | 16 inline void* operator new(size_t, SkTLList<T>* list, 87 /** Adds a new element to the list before the location indicated by the iterator. If the 88 iterator refers to a NULL location then the new element is added at the tail */ 93 /** Adds a new element to the list after the location indicated by the iterator. If the 94 iterator refers to a NULL location then the new element is added at the head */ 212 // For use with operator new 318 // Support in-place initializing of objects inserted into the list via operator new. 319 friend void* operator new<T>(size_t, 325 // Helpers that insert the node and returns a pointer to where the new object should be init'ed. 351 void *operator new(size_t, SkTLList<T>* list [all...] |
/ndk/sources/host-tools/make-3.81/ |
file.c | 33 don't add new rules (via $(eval ...)) afterwards. In the future it would 37 in the hash have been snapped (a new boolean flag?) and having snap_deps() 138 register struct file *new; local 179 new = (struct file *) xmalloc (sizeof (struct file)); 180 bzero ((char *) new, sizeof (struct file)); 181 new->name = new->hname = name; 182 new->update_status = -1; 186 new->last = new; 415 struct dep *new = (struct dep *) local 472 struct dep *new, *d1; local [all...] |
/system/core/sh/ |
exec.c | 225 char **new; local 266 new = ckmalloc(i + ((char *)ap2 - (char *)argv)); 267 ap = newargs, ap2 = new; 272 shellexec(new, envp, pathval(), 0); 688 * Called before PATH is changed. The argument is the new value of PATH; 696 const char *old, *new; local 702 new = newval; 707 if (*old != *new) { 709 if ((*old == '\0' && *new == ':') 710 || (*old == ':' && *new == '\0') [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
recognizers.rb | 38 RecognizerSharedState = Struct.new( 137 Block = Scope.new( "name", "depth = 0", "variables = {}" ) 138 Block.new # => #<struct Block name=nil, depth=0, variables={}> 139 Block.new( "function" ) # => #<struct Block name="function", depth=0, variables={}> 140 Block.new( 'a', 1, :x => 3 ) # => #<struct Block name="a", depth=1, variables={ :x => 3 }> 145 def self.new( *declarations, &body ) singleton method in class:ANTLR3.Scope 245 Struct.new( *members ) 262 struct = Struct.new( *return_scope_members ) 268 @imported_grammars ||= Set.new 315 Scope.new( *declarations, &body [all...] |
/external/chromium_org/chrome/test/chromedriver/test/ |
run_py_tests.py | 173 """Wait for at least one new window to show up in 20 seconds. 176 old_handles: Handles to all old windows before the new window is added. 179 Handle to a new window. None if timeout. 357 ' div.innerHTML="new<br>";' 369 ' div.innerHTML="new<br>";' 426 ' div.innerHTML="new<br>";' 440 ' div.innerHTML="new<br>";' 475 ' div.innerHTML="new<br>";' 496 """Tests that ChromeDriver determines loading correctly for new windows.""" 503 <a href='%s' target='_blank'>new window/tab</a 645 new = [] variable in class:PerfTest._RunDriverPerfTest.Results [all...] |
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/ |
backportPP.pm | 107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_); 112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_); 129 sub new { subroutine 330 "%s::TO_JSON method returned same object as was passed instead of a new one", 1140 return Math::BigInt->new($v); 1148 return Math::BigFloat->new($v); 1438 sub new { subroutine [all...] |
/external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/ |
backportPP.pm | 107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_); 112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_); 129 sub new { subroutine 330 "%s::TO_JSON method returned same object as was passed instead of a new one", 1140 return Math::BigInt->new($v); 1148 return Math::BigFloat->new($v); 1438 sub new { subroutine [all...] |
/external/chromium_org/third_party/JSON/out/lib/perl5/JSON/ |
backportPP.pm | 107 ($JSON ||= __PACKAGE__->new->utf8)->encode(@_); 112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_); 129 sub new { subroutine 330 "%s::TO_JSON method returned same object as was passed instead of a new one", 1140 return Math::BigInt->new($v); 1148 return Math::BigFloat->new($v); 1438 sub new { subroutine [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ListHashSet.h | 130 // The return value of add is a pair of an iterator to the new value's location, 131 // and a bool that is true if an new entry was added. 252 void* operator new(size_t, NodeAllocator* allocator) 507 location = new (allocator) T(key); 515 , m_allocator(adoptPtr(new NodeAllocator)) 523 , m_allocator(adoptPtr(new NodeAllocator)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.c | 481 struct rc_reader * new; local 484 new = &data->Readers[data->ReaderCount++]; 485 new->Inst = inst; 486 new->WriteMask = mask; 487 return new; 497 struct rc_reader * new = add_reader(pool, data, inst, mask); local 498 new->U.I.Src = src; 510 struct rc_reader * new = add_reader(pool, data, inst, mask); local 511 new->U.P.Src = src; 512 new->U.P.Arg = arg [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser_extras.h | 63 /* Callers of this ralloc-based new need not call delete. It's 65 static void* operator new(size_t size, void *ctx)
|
glsl_types.h | 88 /* Callers of this ralloc-based new need not call delete. It's 90 static void* operator new(size_t size) 474 * Set on the first call to \c glsl_type::new.
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs.h | 69 /* Callers of this ralloc-based new need not call delete. It's 71 static void* operator new(size_t size, void *ctx) 129 /* Callers of this ralloc-based new need not call delete. It's 131 static void* operator new(size_t size, void *ctx)
|
brw_vec4.h | 82 /* Callers of this ralloc-based new need not call delete. It's 84 static void* operator new(size_t size, void *ctx) 120 /* Callers of this ralloc-based new need not call delete. It's 122 static void* operator new(size_t size, void *ctx) 149 /* Callers of this ralloc-based new need not call delete. It's 151 static void* operator new(size_t size, void *ctx)
|
/external/chromium_org/third_party/skia/include/core/ |
SkTypes.h | 75 #include <new> 77 inline void* operator new(size_t size) { 402 /** Assign a new ptr allocated with sk_malloc (or null), and return the 457 * malloc a new block of the smaller size. 470 * Reallocates the block to a new size. The ptr may or may not change. 567 * Return a new block of the requested size, freeing (as necessary) any
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/ |
stabs-dbgfmt.c | 176 /* Create and add a new strtab-style string bytecode to a section, updating 193 /* Create and add a new stab bytecode to a section, updating offset on 260 /* check for new function */ 264 info->lastline = 0; /* new file, so line changes */ 270 /* output new line stabs if there's a basebc (known function) */ 316 int new; local 335 info.stab = yasm_object_get_general(object, ".stab", 4, 0, 0, &new, 0); 336 if (!new) { 351 yasm_object_get_general(object, ".stabstr", 1, 0, 0, &new, 0); 352 if (!new) { [all...] |
/external/chromium_org/tools/gyp/test/lib/ |
TestCmd.py | 581 import new namespace 583 subprocess = new.module('subprocess') [all...] |
/external/clang/include/clang/Lex/ |
PreprocessingRecord.h | 34 void* operator new(size_t bytes, clang::PreprocessingRecord& PR, 99 // in PreprocessingRecord or by doing a placement new. 100 void* operator new(size_t bytes, PreprocessingRecord& PR, 102 return ::operator new(bytes, PR, alignment); 105 void* operator new(size_t bytes, void* mem) throw() { 118 // Make vanilla 'new' and 'delete' illegal for preprocessed entities. 119 void* operator new(size_t bytes) throw(); 353 /// \brief Allocate space for a new set of loaded preprocessed entities. 359 /// \brief Register a new macro definition. 363 /// \brief Construct a new preprocessing record [all...] |
/external/clang/test/Preprocessor/ |
cxx_oper_keyword_ms_compat.cpp | 54 #define new macro 139 new
|
/external/clang/test/SemaCXX/ |
new-delete.cpp | 14 // A special new, to verify that the global version isn't used. 15 void* operator new(size_t, S*); // expected-note {{candidate}} 22 void* operator new(const size_t); // expected-note 2 {{candidate}} 23 void* operator new(size_t, int*); // expected-note 3 {{candidate}} 24 void* operator new(size_t, float*); // expected-note 3 {{candidate}} 25 void* operator new(size_t, S); // expected-note 2 {{candidate}} 31 int *pi = new int; 32 float *pf = new (pi) float(); 33 pi = new int(1); 34 pi = new int('c') [all...] |
/external/dnsmasq/src/ |
cache.c | 105 struct crec **new, **old, *p, *tmp; local 113 new = safe_malloc(new_size * sizeof(struct crec *)); 114 else if (new_size <= hash_size || !(new = whine_malloc(new_size * sizeof(struct crec *)))) 118 new[i] = NULL; 122 hash_table = new; 199 /* insert a new cache entry at the head of the list (youngest entry) */ 362 struct crec *new; local 387 if (!(new = cache_tail)) /* no entries left - cache is too small, bail */ 397 if (new->flags & (F_FORWARD | F_REVERSE)) 412 cache_scan_free(cache_get_name(new), &new->addr.addr, now, new->flags) [all...] |
/external/hyphenation/ |
hyphen.c | 55 char *new; local 59 new = hnj_malloc (l + 1); 60 memcpy (new, s, l); 61 new[l] = 0; 62 return new; 166 /* Get the state number, allocating a new state if necessary. */ 860 /* now create a new char string showing hyphenation positions */ 861 /* count the hyphens and allocate space for the new hyphenated string */ [all...] |
/external/ipsec-tools/src/racoon/ |
isakmp_cfg.c | 167 * Decrypt the packet. If this is the beginning of a new 760 vchar_t *new; local 762 new = vmalloc(s->l + append->l); 763 if (new == NULL) { 769 memcpy(new->v, s->v, s->l); 770 memcpy(new->v + s->l, append->v, append->l); 773 return new; 924 struct isakmp_data *new; 931 new = (struct isakmp_data *)buffer->v; 933 new->type = attr->type 968 struct isakmp_data *new; local 993 struct isakmp_data *new; local 1028 struct isakmp_data *new; local 1056 struct isakmp_data *new; local [all...] |