HomeSort by relevance Sort by last modified time
    Searched full:rowid (Results 101 - 125 of 171) sorted by null

1 2 3 45 6 7

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 139 // try to insert another row with the same id. last inserted rowid should be -1
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 547 long rowId = db.insert(
556 if (rowId > 0) {
558 Uri noteUri = ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, rowId);
565 // If the insert didn't succeed, then the rowID is <= 0. Throws an exception.
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 69 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const
71 return m_functor(rowId, colId);
75 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
77 return m_functor.packetOp(rowId, colId);
  /libcore/ojluni/src/main/java/java/sql/
ParameterMetaData.java 103 * maximum allowed precision of the fractional seconds component). For binary data, this is the length in bytes. For the ROWID datatype,
package.html 144 <LI><code>RowId</code> interface -- mapping for SQL <code>ROWID</code>
211 <li>Support added for accessing a SQL ROWID
ResultSetMetaData.java 173 * maximum allowed precision of the fractional seconds component). For binary data, this is the length in bytes. For the ROWID datatype,
DatabaseMetaData.java     [all...]
  /frameworks/base/docs/html/training/tv/discovery/
searchable.jd 157 map.put(BaseColumns._ID, "rowid AS " +
159 map.put(SearchManager.SUGGEST_COLUMN_INTENT_DATA_ID, "rowid AS " +
161 map.put(SearchManager.SUGGEST_COLUMN_SHORTCUT_ID, "rowid AS " +
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 345 long rowId = getDatabaseModifier(mCallsInserter).insert(copiedValues);
346 if (rowId > 0) {
347 return ContentUris.withAppendedId(uri, rowId);
  /frameworks/base/core/java/android/widget/
AdapterView.java     [all...]
ExpandableListConnector.java 796 long rowId;
821 rowId = adapter.getGroupId(seedGroupPosition);
822 if (rowId == groupIdToMatch) {
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java     [all...]
JDBCPreparedStatement.java 781 public void setRowId(int parameterIndex, RowId x) throws SQLException {
785 public void setRowId(String parameterName, RowId x) throws SQLException {
  /external/sqlite/dist/orig/
shell.c     [all...]
sqlite3.c 77794 i64 rowid; local
79344 sqlite_int64 rowid; local
177438 i64 rowid = sqlite3Fts5IterRowid(pIdxIter); local
183822 i64 rowid; \/* This table's current rowid value *\/ member in struct:Fts5VocabCursor
    [all...]
sqlite3.h     [all...]
  /external/sqlite/dist/
shell.c     [all...]
sqlite3.c 77812 i64 rowid; local
79362 sqlite_int64 rowid; local
177468 i64 rowid = sqlite3Fts5IterRowid(pIdxIter); local
183852 i64 rowid; \/* This table's current rowid value *\/ member in struct:Fts5VocabCursor
    [all...]
sqlite3.h     [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
UIIntents.java 339 public abstract Intent getApnEditorIntent(final Context context, final String rowId, int subId);
UIIntentsImpl.java 477 public Intent getApnEditorIntent(final Context context, final String rowId, final int subId) {
479 intent.putExtra(UI_INTENT_EXTRA_APN_ROW_ID, rowId);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemViewHolder.java 112 public long rowId;
539 IntentProvider.getCallDetailIntentProvider(rowId, callIds, null));
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 192 private static void hideDetailsRow(View d, int rowId) {
193 d.findViewById(rowId).setVisibility(View.GONE);
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 428 long rowId = db.replace(Metadata.TABLE, null, values);
429 rowCount = (rowId == -1) ? 0 : 1;
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 152 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
153 if (rowId <= 0) return null;
155 uri = ContentUris.withAppendedId(uri, rowId);
    [all...]

Completed in 1022 milliseconds

1 2 3 45 6 7