Home | History | Annotate | Download | only in mms

Lines Matching refs:Row

94         ArrayList<Row> mRows = new ArrayList<Row>();
114 private class Row {
115 public Row(int row, String text, int startOffset, int endOffset) {
117 mRowNumber = row;
155 mRows.add(new Row(i, message, startOffset, endOffset));
221 * a "word" by taking the substring of the full row text in the words table
304 Row row = mRows.get(mCurrentRow);
307 Uri u = Uri.parse("content://mms-sms/search").buildUpon().appendQueryParameter("pattern", row.getWord()).build();
314 return row.getWord();