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

<<1112131415161718

  /external/clang/include/clang/AST/
Stmt.h 117 // Make vanilla 'new' and 'delete' illegal for Stmts.
119 void* operator new(size_t bytes) throw() {
120 llvm_unreachable("Stmts cannot be allocated with regular 'new'.");
314 // or by doing a placement new.
315 void* operator new(size_t bytes, ASTContext& C,
318 void* operator new(size_t bytes, ASTContext* C,
321 void* operator new(size_t bytes, void* mem) throw() {
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 141 // for each new request. This is because, until we've read the ipc_msg_hdr to find out what the
142 // operation is, we don't know if we're going to need to allocate a new request_state or not.
812 RecordUpdatedNiceLabel(m, 0); // Successfully got new name, tell user immediately
879 // with the old rdata (so that we can free it) and stores the new rdata in "rr->resrec.rdata". This means, (…)
1950 DNameListElem *new = mDNSPlatformMemAllocate(sizeof(DNameListElem)); local
    [all...]
  /ndk/build/core/
definitions-graph.mk 185 -ndk-mod-get-new-depends = \
216 # Used internally to visit a new node during -ndk-mod-get-closure.
  /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...]
  /build/core/
definitions.mk     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp 524 OwnPtr<Vector<RenderLayer*> > posZOrderListBeforePromote = adoptPtr(new Vector<RenderLayer*>);
525 OwnPtr<Vector<RenderLayer*> > negZOrderListBeforePromote = adoptPtr(new Vector<RenderLayer*>);
526 OwnPtr<Vector<RenderLayer*> > posZOrderListAfterPromote = adoptPtr(new Vector<RenderLayer*>);
527 OwnPtr<Vector<RenderLayer*> > negZOrderListAfterPromote = adoptPtr(new Vector<RenderLayer*>);
586 posZOrderListBeforePromote = adoptPtr(new Vector<RenderLayer*>());
810 m_transform = adoptPtr(new TransformationMatrix);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 47 ** for defining new tokenizers. The second parameter is a vtable
107 ** varint POS_COLUMN; (marks start of position list for new column)
108 ** varint column; (index of new column)
163 ** New data is spilled to a new leaf node when the current node
164 ** exceeds LEAF_MAX bytes (default 2048). New data which itself is
183 ** SegmentWriter creates new leaf nodes, or when an interior node
214 ** New data is spilled to a new interior node at the same height when
231 ** and a new root interior node is generated (which should always fi
3630 DataBuffer left, right, new; local
3853 DataBuffer left, right, or, new; local
    [all...]
  /external/v8/src/
ast.h 204 void* operator new(size_t size, Zone* zone) {
205 return zone->New(static_cast<int>(size));
244 void* operator new(size_t size);
    [all...]
  /external/chromium_org/v8/src/
ast.h 208 void* operator new(size_t size, Zone* zone) {
209 return zone->New(static_cast<int>(size));
251 void* operator new(size_t size);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macerrors.py 369 errAEPropertiesClash = -10025 #illegal combination of properties settings for Set Data, make new, or duplicate
370 errAECantPutThatThere = -10024 #in make new, duplicate, etc. class can't be an element of container
1001 cfragImportTooNewErr = -2814 #An import library was too new for a client. namespace
    [all...]

Completed in 1076 milliseconds

<<1112131415161718