HomeSort by relevance Sort by last modified time
    Searched refs:CREATE (Results 76 - 100 of 133) sorted by null

1 2 34 5 6

  /external/chromium_org/third_party/sqlite/src/tool/
space_used.tcl 23 CREATE TABLE space_used(
speedtest.tcl 129 puts $fd "CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100));"
141 puts $fd "CREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100));"
173 puts $fd {CREATE INDEX i2a ON t2(a);}
174 puts $fd {CREATE INDEX i2b ON t2(b);}
spaceanal.tcl 45 {CREATE TABLE space_used(
65 # Create a temporary "dbstat" virtual table.
68 CREATE VIRTUAL TABLE temp.stat USING dbstat;
69 CREATE TEMP TABLE dbstat AS SELECT * FROM temp.stat ORDER BY name, path;
488 The number of indices created using an explicit CREATE INDEX statement.
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 41 CREATE = IBinder::FIRST_CALL_TRANSACTION,
72 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
79 remote()->transact(CREATE, data, &reply);
213 case CREATE: {
218 sp<IMediaPlayer> player = create(client, audioSessionId);
IMediaCodecList.cpp 30 CREATE = IBinder::FIRST_CALL_TRANSACTION,
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.h 124 // Treat the |index|th child of |parent| as a newly added node, and create a
156 CREATE,
170 // position is to be fixed. If |operation| is CREATE, treat |dst| as an
bookmark_change_processor.cc 284 // Create a WriteNode container to hold the new node.
287 // Actually create the node with the appropriate initial position.
288 if (!PlaceSyncNode(CREATE, parent, index, trans, &sync_child, associator)) {
473 success = (operation == CREATE) ?
489 success = (operation == CREATE) ?
572 "Failed to create foster parent",
617 // in us trying to create it here (which will fail). Therefore, we add
667 LOG(ERROR) << "Failed to create bookmark node with title "
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
laststmtchanges.test 34 create table t0 (x);
106 create table t1 (k integer primary key);
107 create table t2 (k integer primary key, v1, v2);
108 create trigger r1 after insert on t1 for each row begin
151 create trigger r1 after update on t1 for each row begin
183 create trigger r1 before delete on t1 for each row begin
216 create temp table t0(x);
217 create temp table t1 (k integer primary key);
218 create temp table t2 (k integer primary key);
219 create temp view v1 as select * from t1
    [all...]
collate2.test 30 # Create a collation type BACKWARDS for use in testing. This collation type
61 CREATE TABLE collate2t1(
90 CREATE INDEX collate2t1_i1 ON collate2t1(a);
91 CREATE INDEX collate2t1_i2 ON collate2t1(b);
92 CREATE INDEX collate2t1_i3 ON collate2t1(c);
611 CREATE TABLE collate2t2(b COLLATE binary);
612 CREATE TABLE collate2t3(b text);
randexpr1.tcl 263 # Create test data
267 CREATE TABLE t1(a,b,c,d,e,f);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 75 private InsertType mInsertType = InsertType.CREATE;
167 mInsertType = InsertType.CREATE;
195 mInsertType = InsertType.CREATE;
226 mInsertType = InsertType.CREATE;
492 * Invokes the create hooks ({@link IViewRule#onCreate},
550 // this create action in case it wants to customize the new object.
551 // (For example, a rule for TabHosts can go and create a default child tab
552 // when you create it.)
    [all...]
  /external/chromium_org/sync/internal_api/test/
test_entry_factory.cc 102 MutableEntry entry(&trans, syncable::CREATE, model_type, parent_id, name);
153 MutableEntry entry(&trans, syncable::CREATE, model_type, parent_id, name);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubManager.java 38 * well as create or retrieve pubsub {@link LeafNode} instances. These
51 * Create a pubsub manager associated to the specified connection. Defaults the service
63 * Create a pubsub manager associated to the specified connection where
84 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.CREATE));
85 NodeExtension elem = (NodeExtension)reply.getExtension("create", PubSubNamespace.BASIC.getXmlns());
111 * Note: This is the only way to create a collection node.
122 PubSub request = createPubsubPacket(to, Type.SET, new NodeExtension(PubSubElementType.CREATE, name));
  /external/chromium_org/sync/internal_api/
write_node.cc 328 // Create a new node with default properties, and bind this WriteNode to it.
346 syncable::CREATE, BOOKMARKS,
359 // Create a new node with default properties and a client defined unique tag,
431 syncable::CREATE,
sync_manager_impl_unittest.cc 211 // Create an entry with the given |model_type|, |client_tag| and
644 syncer::AttachmentId attachment_id(syncer::AttachmentId::Create());
722 virtual HttpPostProviderInterface* Create() OVERRIDE {
889 // We need to create the nigori node as if it were an applied server update.
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
FileObserverTest.java 83 * 3. Observer a dir, when create delete a child file and delete self,
84 * observer should get create-child close-nowrite delete-child delete-self events.
132 expected = new int[] {FileObserver.CREATE,
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportListActivity.java 71 int flags = FileObserver.CREATE | FileObserver.MOVED_TO;
  /libcore/luni/src/main/java/java/util/
TreeMap.java 82 * Create a natural order, empty tree map whose keys must be mutually
91 * Create a natural order tree map populated with the key/value pairs of
113 * Create a tree map ordered by {@code comparator}. This map's keys may only
129 * Create a tree map with the ordering and key/value pairs of {@code
208 CREATE,
240 Node<K, V> created = find(key, Relation.CREATE);
256 if (relation == Relation.CREATE) {
290 case CREATE:
319 case CREATE:
337 case CREATE
    [all...]
  /external/chromium_org/sync/engine/
directory_commit_contribution_unittest.cc 46 syncable::CREATE,
70 syncable::CREATE,
193 // committed before, so we must use CreateFromClientString to re-create them
294 // Create a normal-looking bookmark item.
329 // Create a normal-looking prefs item.
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c 528 /* Create a list of user columns for the virtual table */
534 /* Create the whole "CREATE TABLE" statement to pass to SQLite */
536 "CREATE TABLE x(%s %Q HIDDEN, docid HIDDEN)", zCols, p->zName
551 ** Create the backing store tables (%_content, %_segments and %_segdir)
556 ** FTS4 table, not an FTS3 table) then also create the %_docsize and
565 /* Create a list of user columns for the content table */
573 /* Create the content table */
575 "CREATE TABLE %Q.'%q_content'(%s)",
579 /* Create other tables *
    [all...]
  /external/libnl/lib/
msg.c 98 * // Various methods exist to create/allocate a new netlink
121 * // will create a message with a maximum payload size which equals the
793 PRINT_FLAG(CREATE);
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 385 // No match; insist that create file matches requested MIME
397 throw new FileNotFoundException("Failed to create unique file");
578 | CREATE | DELETE | DELETE_SELF | MOVE_SELF;
  /frameworks/base/services/core/java/com/android/server/firewall/
IntentFirewall.java 556 private static final int MONITORED_EVENTS = FileObserver.CREATE|FileObserver.MOVED_TO|
567 // events. E.g. a delete event followed by a create event followed by a subsequent
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 80 * factory couldn't create a proxy for it.
337 // Attempt to create a root node accordingly.
351 // Create node listener which (during the drop) listens for node additions
421 NodeProxy node = nodeFactory.create((UiViewElementNode) uiNode);
482 return InsertType.CREATE;
612 return ControlPoint.create(mCanvas, event);
681 targetNode = mCanvas.getNodeFactory().create(targetVi);
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 89 using syncer::syncable::CREATE;
786 // thread a chance to create a WriteTransaction
816 // Create autofill protobuf.
836 // Create write transaction.
840 // Create actual entry based on autofill protobuf information.
843 MutableEntry item(&trans, CREATE, syncer::AUTOFILL, parent.GetId(), tag);
    [all...]

Completed in 1480 milliseconds

1 2 34 5 6