/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowOverlayItem.java | 16 private String snippet; field in class:ShadowOverlayItem 18 public void __constructor__(GeoPoint geoPoint, String title, String snippet) { 21 this.snippet = snippet; 36 return snippet; 50 && Strings.equals(snippet, that.snippet) 59 result = snippet == null ? result : 19 * result + snippet.hashCode();
|
/external/chromium_org/components/query_parser/ |
snippet_unittest.cc | 5 #include "components/query_parser/snippet.h" 83 bool ComparePair1st(const Snippet::MatchPosition& a, 84 const Snippet::MatchPosition& b) { 89 // sqlite's FTS matching. BuildSnippet returns the snippet for matching 106 Snippet::MatchPositions match_positions; 120 // Compute the snippet. 121 Snippet snippet; local 122 snippet.ComputeSnippet(match_positions, document); 124 // Now "highlight" all matches in the snippet with ** [all...] |
snippet.cc | 5 #include "components/query_parser/snippet.h" 21 bool PairFirstLessThan(const Snippet::MatchPosition& a, 22 const Snippet::MatchPosition& b) { 29 Snippet::MatchPositions* match_positions) { 31 Snippet::MatchPosition& pair((*match_positions)[offset]); 45 Snippet::MatchPositions* match_positions) { 48 Snippet::MatchPosition pair(start, end); 55 Snippet::MatchPositions::iterator i = 129 // snippet generation. If not, revisit the way we scan in ComputeSnippet. 139 // Returns true if next match falls within a snippet windo 233 base::string16 snippet; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/ |
ConversionUtilities.java | 56 public String snippet; field in class:ConversionUtilities.BodyFieldData 87 data.snippet = TextUtilities.makeSnippetFromPlainText(text); 92 if (data.snippet == null) { 93 data.snippet = TextUtilities.makeSnippetFromHtmlText(text);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditFormatters.js | 53 snippet: function(snippetText)
|
/external/chromium_org/chrome/browser/ui/webui/ |
history_ui.h | 44 bool is_search_result, const base::string16& snippet, 81 // The entry's search snippet, if this entry is a search result. 82 base::string16 snippet; member in struct:BrowsingHistoryHandler::HistoryEntry
|
/external/chromium_org/components/history/core/browser/ |
url_row.h | 11 #include "components/query_parser/snippet.h" 168 const query_parser::Snippet::MatchPositions& title_matches); 175 const query_parser::Snippet& snippet() const { return snippet_; } function in class:history::URLResult 185 const query_parser::Snippet::MatchPositions& title_match_positions() const { 200 query_parser::Snippet snippet_; 201 query_parser::Snippet::MatchPositions title_match_positions_;
|
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 1093 StringBuilder snippet = new StringBuilder(); local [all...] |
/frameworks/base/core/java/android/util/ |
JsonReader.java | 1164 StringBuilder snippet = new StringBuilder(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
SharedBuffer.cpp | 87 char* snippet = 0; local 89 CString result = CString::newUninitialized(snippetLength, snippet); 95 memcpy(snippet + offset, segment, length); 102 if (!isASCIIPrintable(snippet[i])) 103 snippet[i] = '?'; 119 CString snippet = snippetForBuffer(buffers[i]); local 120 dataLogF("Buffer size=%8u %s\n", buffers[i]->size(), snippet.data());
|
/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
WidgetConversationListItemViewBuilder.java | 150 final String snippet = conversation.getSnippet(); local 176 final SpannableStringBuilder snippetBuilder = new SpannableStringBuilder(snippet);
|
/libcore/luni/src/test/java/libcore/xml/ |
PullParserTest.java | 547 String snippet = "<dagny dad=\"bob\">hello</dagny>"; local 550 parser.setInput(new StringReader(snippet)); 555 String snippet = "<dagny dad=\"bob\">hello</dagny>"; local 558 parser.setInput(new ByteArrayInputStream(snippet.getBytes()), "UTF-8"); [all...] |
/packages/apps/Mms/src/com/android/mms/ |
SuggestionsProvider.java | 119 public Row(int row, String snippet) { 120 mSnippet = snippet.trim(); 131 * FTS3 snippet function does not work so we do it here in the code. 134 int snippetColumn = mDatabaseCursor.getColumnIndex("snippet"); 141 String snippet = mDatabaseCursor.getString(snippetColumn); local 142 if (!TextUtils.equals(previousSnippet, snippet)) { 143 mRows.add(new Row(i, snippet)); 144 previousSnippet = snippet;
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemViewCoordinates.java | 193 // Snippet. 339 final TextView snippet = (TextView) view.findViewById(R.id.snippet); local 340 final int snippetTopAdjust = getLatinTopAdjustment(snippet); 341 snippetX = getX(snippet); 342 snippetY = getY(snippet) + snippetTopAdjust; 343 maxSnippetWidth = snippet.getWidth(); 344 snippetHeight = snippet.getHeight(); 345 snippetFontSize = snippet.getTextSize();
|
MessageHeaderView.java | 451 final String snippet; local 453 snippet = makeSnippet(mMessage.snippet); 455 snippet = mMessage.snippet; 457 mSnippet = snippet == null ? null : getBidiFormatter().unicodeWrap(snippet); 1373 final StringBuilder snippet = new StringBuilder(MAX_SNIPPET_LENGTH); local [all...] |
ConversationItemView.java | 909 final String snippet = mHeader.conversation.getSnippet(); local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Message.java | 89 * @see UIProvider.MessageColumns#SNIPPET 91 public String snippet; field in class:Message 273 dest.writeString(snippet); 309 snippet = in.readString(); 371 snippet = cursor.getString(UIProvider.MESSAGE_SNIPPET_COLUMN); 458 // body values (snippet/bodyText/bodyHtml) 466 snippet = data.snippet;
|
/packages/apps/Mms/src/com/android/mms/data/ |
Conversation.java | 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, 913 String snippet = MessageUtils.cleanseMmsSubject(context, local 1315 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS); local [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
ContactListItemView.java | 1231 String snippet = cursor.getString(summarySnippetColumnIndex); local [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1.c | 202 /* TODO(shess) The snippet-generation code should be using the 1004 typedef struct Snippet { 1016 char *zSnippet; /* Snippet text */ 1018 } Snippet; 1111 Snippet snippet; \/* Cached snippet for the current row *\/ member in struct:fulltext_cursor [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2.c | 366 /* TODO(shess) The snippet-generation code should be using the 2069 Snippet snippet; \/* Cached snippet for the current row *\/ member in struct:fulltext_cursor [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsProvider2Test.java | 299 SearchSnippets.SNIPPET, 4380 ContentValues snippet = createSnippetContentValues(contactId, "cave@aperturescience.com"); local 4392 ContentValues snippet = createSnippetContentValues(contactId, "cave@aperturescience.com"); local 4407 ContentValues snippet = createSnippetContentValues(contactId, "aperturepresident"); local 4418 ContentValues snippet = createSnippetContentValues(contactId, "860-555-1234"); local 4429 ContentValues snippet = createSnippetContentValues(contactId, local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
jdimodel.jar | |
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/ |
gmaven-runtime-support-1.5.jar | |
/prebuilts/devtools/tools/lib/ |
lint-checks.jar | |