HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 201 - 212 of 212) sorted by null

1 2 3 4 5 6 7 89

  /external/mesa3d/src/glsl/
ast.h 52 /* Callers of this hieralloc-based new need not call delete. It's
54 static void* operator new(size_t size, void *ctx)
  /external/quake/quake/src/QW/client/
common.c 101 // ClearLink is used for new headnodes
1502 // open a new file on the pakfile
2011 char new[1024], *v; local
    [all...]
  /external/quake/quake/src/QW/server/
pr_cmds.c 101 Writes new values for v_forward, v_up, and v_right based on angles
291 float new; local
295 new = value1[0] * value1[0] + value1[1] * value1[1] + value1[2]*value1[2];
296 new = sqrt(new);
298 if (new == 0)
302 new = 1/new;
303 newvalue[0] = value1[0] * new;
304 newvalue[1] = value1[1] * new;
321 float new; local
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 77 default: // Map unknown/new linkages to external
155 void *operator new(size_t s) {
156 return User::operator new(s, 1);
224 Constant *C = new ConstantPlaceHolder(Ty, Context);
242 Value *V = new Argument(Ty);
267 // new value. If they reference more than one placeholder, update them all
281 // constant with a new constant that has *all* placeholder uses updated.
305 // Make the new constant.
348 // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
645 } else // Otherwise, create a new struct
    [all...]
  /build/core/
definitions.mk     [all...]
  /external/blktrace/
blktrace.c 102 * Each tracer will have a tracer_devpath_head that it will add new
226 * for scratch as new connections are established.
712 void *new; local
715 new = mmap(addr, length, prot, flags, fd, offset);
716 } while (new == MAP_FAILED && handle_mem_failure(length));
718 return new;
1338 * If there was some leftover before, tack this new
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 107 // Make vanilla 'new' and 'delete' illegal for Stmts.
109 void* operator new(size_t bytes) throw() {
110 assert(0 && "Stmts cannot be allocated with regular 'new'.");
210 // or by doing a placement new.
211 void* operator new(size_t bytes, ASTContext& C,
213 return ::operator new(bytes, C, alignment);
216 void* operator new(size_t bytes, ASTContext* C,
218 return ::operator new(bytes, *C, alignment);
221 void* operator new(size_t bytes, void* mem) throw() {
460 Body = new (C) Stmt*[NumStmts]
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 94 void* RenderObject::operator new(size_t sz, RenderArena* renderArena) throw()
117 RenderImage* image = new (arena) RenderImage(node);
128 return new (arena) RenderRubyAsInline(node);
130 return new (arena) RenderRubyAsBlock(node);
134 return new (arena) RenderRubyText(node);
140 return new (arena) RenderInline(node);
145 return new (arena) RenderBlock(node);
147 return new (arena) RenderListItem(node);
150 return new (arena) RenderTable(node);
154 return new (arena) RenderTableSection(node)
    [all...]
RenderLayer.cpp 115 void* ClipRects::operator new(size_t sz, RenderArena* renderArena) throw()
438 m_transform.set(new TransformationMatrix);
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]

Completed in 468 milliseconds

1 2 3 4 5 6 7 89