/libcore/ojluni/src/main/java/java/sql/ |
RowId.java | 30 * The representation (mapping) in the Java programming language of an SQL ROWID 31 * value. An SQL ROWID is a built-in type, a value of which can be thought of as 38 * allow a programmer to access a SQL <code>ROWID</code> value. The <code>RowId</code> 40 * for representing the value of the <code>ROWID</code> as a byte array or as a 45 * to determine if a <code>RowId</code> object remains valid for the duration of the transaction in 46 * which the <code>RowId</code> was created, the duration of the session in which 47 * the <code>RowId</code> was created, 50 * source, <code>getRowIdLifetime</code> specifies the duration of a <code>ROWID</code> 56 * All methods on the <code>RowId</code> interface must be fully implemented if th [all...] |
RowIdLifetime.java | 31 * Enumeration for RowId life-time values. 39 * Indicates that this data source does not support the ROWID type. 44 * Indicates that the lifetime of a RowId from this data source is indeterminate; 51 * Indicates that the lifetime of a RowId from this data source is at least the 57 * Indicates that the lifetime of a RowId from this data source is at least the 63 * Indicates that the lifetime of a RowId from this data source is, effectively,
|
/external/eigen/Eigen/src/Core/ |
Swap.h | 52 inline Scalar& coeffRef(Index rowId, Index colId) 54 return m_expression.const_cast_derived().coeffRef(rowId, colId); 62 inline Scalar& coeffRef(Index rowId, Index colId) const 64 return m_expression.coeffRef(rowId, colId); 73 void copyCoeff(Index rowId, Index colId, const DenseBase<OtherDerived>& other) 76 eigen_internal_assert(rowId >= 0 && rowId < rows() 78 Scalar tmp = m_expression.coeff(rowId, colId); 79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId) [all...] |
ArrayWrapper.h | 66 inline CoeffReturnType coeff(Index rowId, Index colId) const 68 return m_expression.coeff(rowId, colId); 71 inline Scalar& coeffRef(Index rowId, Index colId) 73 return m_expression.const_cast_derived().coeffRef(rowId, colId); 76 inline const Scalar& coeffRef(Index rowId, Index colId) const 78 return m_expression.const_cast_derived().coeffRef(rowId, colId); 97 inline const PacketScalar packet(Index rowId, Index colId) const 99 return m_expression.template packet<LoadMode>(rowId, colId); 103 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) 105 m_expression.const_cast_derived().template writePacket<LoadMode>(rowId, colId, val) [all...] |
CwiseUnaryOp.h | 101 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const 103 return derived().functor()(derived().nestedExpression().coeff(rowId, colId)); 107 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const 109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
|
Replicate.h | 92 inline Scalar coeff(Index rowId, Index colId) const 96 : RowFactor==1 ? rowId 97 : rowId%m_matrix.rows(); 105 inline PacketScalar packet(Index rowId, Index colId) const 108 : RowFactor==1 ? rowId 109 : rowId%m_matrix.rows();
|
/external/wpa_supplicant_8/hs20/server/www/ |
cert-enroll.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 23 $rowid = $row['rowid']; variable 28 if (!$db->exec("UPDATE sessions SET user='$user', type='cert' WHERE rowid=$rowid")) {
|
add-free.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 23 $rowid = $row['rowid']; variable 39 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', machine_managed='1' WHERE rowid=$rowid")) {
|
add-mo.php | 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 43 $rowid = $row['rowid']; variable 45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' WHERE rowid=$rowid")) {
|
users.php | 22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch(); 41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch(); 49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch(); 64 $db->exec("UPDATE users SET remediation='' WHERE rowid=$id"); 67 $db->exec("UPDATE users SET remediation='user' WHERE rowid=$id"); 70 $db->exec("UPDATE users SET remediation='machine' WHERE rowid=$id"); 73 $db->exec("UPDATE users SET remediation='policy' WHERE rowid=$id"); 76 $db->exec("UPDATE users SET remediation='free' WHERE rowid=$id"); 79 $db->exec("UPDATE users SET fetch_pps=1 WHERE rowid=$id"); 82 $db->exec("UPDATE users SET fetch_pps=0 WHERE rowid=$id") [all...] |
redirect.php | 15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
|
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 113 * successfully created return the new rowId for that note, otherwise return 118 * @return rowId or -1 if failed 129 * Delete the note with the given rowId 131 * @param rowId id of note to delete 134 public boolean deleteNote(long rowId) { 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 151 * Return a Cursor positioned at the note that matches the given rowId 153 * @param rowId id of note to retrieve 157 public Cursor fetchNote(long rowId) throws SQLException { 162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null [all...] |
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryDatabase.java | 73 map.put(BaseColumns._ID, "rowid AS " + 75 map.put(SearchManager.SUGGEST_COLUMN_INTENT_DATA_ID, "rowid AS " + 77 map.put(SearchManager.SUGGEST_COLUMN_SHORTCUT_ID, "rowid AS " + 83 * Returns a Cursor positioned at the word specified by rowId 85 * @param rowId id of word to retrieve 89 public Cursor getWord(String rowId, String[] columns) { 90 String selection = "rowid = ?"; 91 String[] selectionArgs = new String[] {rowId}; 96 * SELECT <columns> FROM <table> WHERE rowid = <rowId> [all...] |
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/ |
VideoDatabase.java | 103 map.put(BaseColumns._ID, "rowid AS " + 105 map.put(SearchManager.SUGGEST_COLUMN_INTENT_DATA_ID, "rowid AS " + 107 map.put(SearchManager.SUGGEST_COLUMN_SHORTCUT_ID, "rowid AS " + 113 * Returns a Cursor positioned at the word specified by rowId 115 * @param rowId id of word to retrieve 119 public Cursor getWord(String rowId, String[] columns) { 121 * SELECT <columns> FROM <table> WHERE rowid = <rowId> 123 String selection = "rowid = ?"; 124 String[] selectionArgs = new String[]{rowId}; [all...] |
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalProvider.java | 132 long rowId = 0; 138 rowId = Long.parseLong(segment); 139 count = db.update("data", values, "_id=" + rowId, null); 147 if (false) Log.d(TAG, "*** notifyChange() rowId: " + rowId);
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ChannelUtils.java | 79 long rowId = cursor.getLong(0); 81 existingChannelsMap.put(originalNetworkId, rowId); 116 Long rowId = existingChannelsMap.get(channel.originalNetworkId); 118 if (rowId == null) { 123 uri = TvContract.buildChannelUri(rowId); 138 Long rowId = existingChannelsMap.valueAt(i); 139 resolver.delete(TvContract.buildChannelUri(rowId), null, null);
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
BaseCursorPagerAdapter.java | 94 final Integer rowId; 96 rowId = mCursor.getString(mRowIDColumn).hashCode(); 98 rowId = null; 104 mObjectRowMap.put(obj, rowId); 118 final Integer rowId = mObjectRowMap.get(object); 119 if (rowId == null || mItemPosition == null) { 123 final int position = mItemPosition.get(rowId, POSITION_NONE); 252 final int rowId = mCursor.getString(mRowIDColumn).hashCode(); 255 itemPosition.append(rowId, position);
|
/packages/apps/TV/src/com/android/tv/customization/ |
TvCustomizationManager.java | 122 String rowId = INTENT_CATEGORY_TO_ROW_ID.get(intentCategory); 123 List<CustomAction> actions = mRowIdToCustomActionsMap.get(rowId); 126 mRowIdToCustomActionsMap.put(rowId, actions); 140 Log.d(TAG, "Custom row rowId=" + id + " title=" + action.getTitle() 153 public List<CustomAction> getCustomActions(String rowId) { 154 return mRowIdToCustomActionsMap.get(rowId);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/ |
dbtables.py | 123 _data = '._DATA_.' # this+column+this+rowid key contains table data 124 _rowid = '._ROWID_.' # this+rowid+this key contains a unique entry for each 126 _rowid_str_len = 8 # length in bytes of the unique rowid strings 129 def _data_key(table, col, rowid): 130 return table + _data + col + _data + rowid 138 def _rowid_key(table, rowid): 139 return table + _rowid + rowid + _rowid 499 rowid = self.__new_rowid(table, txn=txn) 504 self.db.put(_data_key(table, column, rowid), dataitem, txn=txn) 517 self.db.delete(_rowid_key(table, rowid)) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/ |
dbtables.py | 123 _data = '._DATA_.' # this+column+this+rowid key contains table data 124 _rowid = '._ROWID_.' # this+rowid+this key contains a unique entry for each 126 _rowid_str_len = 8 # length in bytes of the unique rowid strings 129 def _data_key(table, col, rowid): 130 return table + _data + col + _data + rowid 138 def _rowid_key(table, rowid): 139 return table + _rowid + rowid + _rowid 499 rowid = self.__new_rowid(table, txn=txn) 504 self.db.put(_data_key(table, column, rowid), dataitem, txn=txn) 517 self.db.delete(_rowid_key(table, rowid)) [all...] |