/packages/apps/InCallUI/src/com/android/incallui/ |
ConferenceManagerFragment.java | 109 public void setRowVisible(int rowId, boolean on) { 111 mConferenceCallList[rowId].setVisibility(View.VISIBLE); 113 mConferenceCallList[rowId].setVisibility(View.GONE); 122 public final void displayCallerInfoForConferenceRow(int rowId, String callerName, 125 final TextView nameTextView = (TextView) mConferenceCallList[rowId].findViewById( 127 final TextView numberTextView = (TextView) mConferenceCallList[rowId].findViewById( 129 final TextView numberTypeTextView = (TextView) mConferenceCallList[rowId].findViewById( 148 public final void setupEndButtonForRow(final int rowId) { 149 View endButton = mConferenceCallList[rowId].findViewById(R.id.conferenceCallerDisconnect); 153 getPresenter().endConferenceConnection(rowId); [all...] |
ConferenceManagerPresenter.java | 151 public void separateConferenceConnection(int rowId) { 152 CallCommandClient.getInstance().separateCall(mCallerIds[rowId]); 155 public void endConferenceConnection(int rowId) { 156 CallCommandClient.getInstance().disconnectCall(mCallerIds[rowId]); 162 void setRowVisible(int rowId, boolean on); 163 void displayCallerInfoForConferenceRow(int rowId, String callerName, String callerNumber, 165 void setCanSeparateButtonForRow(int rowId, boolean canSeparate); 166 void setupEndButtonForRow(int rowId);
|
/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);
|
/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...] |
Notepadv2.java | 138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); 139 if (rowId != null) { 142 mDbHelper.updateNote(rowId, editTitle, editBody);
|
/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...] |
Notepadv3.java | 138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); 139 if (rowId != null) { 142 mDbHelper.updateNote(rowId, editTitle, editBody);
|
/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...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DbModifierWithNotification.java | 100 long rowId = mDb.insert(table, nullColumnHack, values); 101 if (rowId > 0 && packagesModified.size() != 0) { 102 notifyVoicemailChangeOnInsert(ContentUris.withAppendedId(mBaseUri, rowId), 105 if (rowId > 0 && mIsCallsTable) { 108 return rowId; 114 long rowId = mInsertHelper.insert(values); 115 if (rowId > 0 && packagesModified.size() != 0) { 117 ContentUris.withAppendedId(mBaseUri, rowId), packagesModified); 119 if (rowId > 0 && mIsCallsTable) { 122 return rowId; [all...] |
VoicemailStatusTable.java | 67 long rowId = getDatabaseModifier(db).insert(mTableName, null, copiedValues); 68 if (rowId > 0) { 69 Uri newUri = ContentUris.withAppendedId(uriData.getUri(), rowId);
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
TrackerProvider.java | 101 long rowId = db.insert(TABLE_NAME, null, values); 102 if (rowId > 0) { 103 Uri addedUri = ContentUris.withAppendedId(CONTENT_URI, rowId);
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryProvider.java | 139 String rowId = uri.getLastPathSegment(); 144 return mDictionary.getWord(rowId, columns); 155 String rowId = uri.getLastPathSegment(); 163 return mDictionary.getWord(rowId, columns);
|
/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);
|
/hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/ |
DBAdapter.java | 115 public boolean deleteStation(long rowId) 119 "=" + rowId, null) > 0; 139 public Cursor getStation(long rowId) throws SQLException 149 KEY_ROWID + "=" + rowId,
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastContentProvider.java | 198 long rowId = db.insert(CellBroadcastDatabaseHelper.TABLE_NAME, null, cv); 199 if (rowId == -1) { 212 * @param rowId the row ID of the broadcast to delete 215 boolean deleteBroadcast(long rowId) { 220 new String[]{Long.toString(rowId)}); 224 Log.e(TAG, "failed to delete broadcast at row " + rowId);
|
CellBroadcastListActivity.java | 232 * @param rowId the row ID of the broadcast to delete, or -1 to delete all broadcasts 234 public void confirmDeleteThread(long rowId) { 235 DeleteThreadListener listener = new DeleteThreadListener(rowId); 236 confirmDeleteThreadDialog(listener, (rowId == -1), getActivity()); 262 public DeleteThreadListener(long rowId) { 263 mRowId = rowId;
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
ClockDatabaseHelper.java | 209 long rowId = -1; 227 rowId = db.insert(ALARMS_TABLE_NAME, ClockContract.AlarmsColumns.RINGTONE, values); 232 if (rowId < 0) { 235 if (Log.LOGV) Log.v("Added alarm rowId = " + rowId); 237 return rowId;
|
ClockProvider.java | 166 long rowId; 170 rowId = mOpenHelper.fixAlarmInsert(initialValues); 173 rowId = db.insert(ClockDatabaseHelper.INSTANCES_TABLE_NAME, null, initialValues); 176 rowId = db.insert(ClockDatabaseHelper.CITIES_TABLE_NAME, null, initialValues); 182 Uri uriResult = ContentUris.withAppendedId(ClockContract.AlarmsColumns.CONTENT_URI, rowId);
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssContentProvider.java | 184 long rowId = -1; 185 rowId = mDb.insert(DATABASE_TABLE_NAME, "rawcontent", initialValues); 186 Uri newUri = CONTENT_URI.addId(rowId);
|
/frameworks/ex/common/java/com/android/common/content/ |
SyncStateContentProviderHelper.java | 100 public int update(SQLiteDatabase db, long rowId, Object data) { 102 new String[]{Long.toString(rowId)}) < 1) { 107 + " WHERE " + SyncStateContract.Columns._ID + "=" + rowId,
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
IntentProvider.java | 50 public static IntentProvider getPlayVoicemailIntentProvider(final long rowId, 57 Calls.CONTENT_URI_WITH_VOICEMAIL, rowId));
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | [all...] |