Home | History | Annotate | Download | only in data

Lines Matching refs:snippet

47         Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR,
66 private static final int SNIPPET = 4;
496 * Returns a snippet of text from the most recent message in the conversation.
608 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
628 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
728 // Replace the snippet with a default value if it's empty.
729 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS);
730 if (TextUtils.isEmpty(snippet)) {
731 snippet = context.getString(R.string.no_subject_view);
733 conv.mSnippet = snippet;
1120 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS);
1124 " " + ThreadsColumns.SNIPPET + " : " + snippet +