Home | History | Annotate | Download | only in data

Lines Matching refs:snippet

55         Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR,
74 private static final int SNIPPET = 4;
561 * Returns a snippet of text from the most recent message in the conversation.
723 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
743 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
912 // Replace the snippet with a default value if it's empty.
913 String snippet = MessageUtils.cleanseMmsSubject(context,
914 MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS));
915 if (TextUtils.isEmpty(snippet)) {
916 snippet = context.getString(R.string.no_subject_view);
918 conv.mSnippet = snippet;
1315 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS);
1319 " " + ThreadsColumns.SNIPPET + " : " + snippet +