/external/webkit/Source/WebCore/inspector/front-end/ |
AuditFormatters.js | 66 snippet: function(snippetText)
|
DebuggerPresentationModel.js | 627 var snippet = ""; variable 629 snippet = content.substring(lineEndings[this.lineNumber - 1], lineEndings[this.lineNumber]); 630 callback(snippet);
|
/external/chromium/chrome/browser/history/ |
snippet_unittest.cc | 5 #include "chrome/browser/history/snippet.h" 82 bool ComparePair1st(const Snippet::MatchPosition& a, 83 const Snippet::MatchPosition& b) { 88 // sqlite's FTS matching. BuildSnippet returns the snippet for matching 104 Snippet::MatchPositions match_positions; 118 // Compute the snippet. 119 Snippet snippet; local 120 snippet.ComputeSnippet(match_positions, document); 122 // Now "highlight" all matches in the snippet with ** [all...] |
text_database.h | 46 // included in the snippet. 47 Snippet::MatchPositions title_match_positions; 49 // Snippet of the match we generated from the body. 50 Snippet snippet; member in struct:history::TextDatabase::Match
|
snippet.cc | 5 #include "chrome/browser/history/snippet.h" 20 bool PairFirstLessThan(const Snippet::MatchPosition& a, 21 const Snippet::MatchPosition& b) { 28 Snippet::MatchPositions* match_positions) { 30 Snippet::MatchPosition& pair((*match_positions)[offset]); 44 Snippet::MatchPositions* match_positions) { 47 Snippet::MatchPosition pair(start, end); 54 Snippet::MatchPositions::iterator i = 128 // snippet generation. If not, revisit the way we scan in ComputeSnippet. 138 // Returns true if next match falls within a snippet windo 230 string16 snippet; local [all...] |
history_types.h | 20 #include "chrome/browser/history/snippet.h" 339 URLResult(const GURL& url, const Snippet::MatchPositions& title_matches); 345 const Snippet& snippet() const { return snippet_; } function in class:history::URLResult 350 const Snippet::MatchPositions& title_match_positions() const { 363 Snippet snippet_; 364 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 | 1161 StringBuilder snippet = new StringBuilder(); local [all...] |
/external/webkit/Source/WebKit/qt/tests/qwebelement/ |
tst_qwebelement.cpp | 812 QString snippet = "" local 826 body.findFirst("em").encloseContentsWith(snippet); 863 QString snippet = "" local 877 body.findFirst("em").encloseWith(snippet); [all...] |
/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");
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailDisplayUtils.java | 228 * Set the social snippet text. If there isn't one, then set the view to gone. 236 CharSequence snippet = null; local 240 snippet = HtmlUtils.fromHtml(context, firstEntry.getText()); 245 // If displaying an image, hide the snippet text. 246 snippet = null; 249 setDataOrHideIfNone(snippet, statusView);
|
/packages/apps/Mms/src/com/android/mms/ |
SuggestionsProvider.java | 120 public Row(int row, String snippet) { 121 mSnippet = snippet.trim(); 132 * FTS3 snippet function does not work so we do it here in the code. 135 int snippetColumn = mDatabaseCursor.getColumnIndex("snippet"); 142 String snippet = mDatabaseCursor.getString(snippetColumn); local 143 if (!TextUtils.equals(previousSnippet, snippet)) { 144 mRows.add(new Row(i, snippet)); 145 previousSnippet = snippet;
|
/packages/apps/Email/src/com/android/email/widget/ |
EmailWidget.java | 361 * Create styled text for our combination subject and snippet 364 * @param snippet the message's snippet (or null) 368 private CharSequence getStyledSubjectSnippet(String subject, String snippet, boolean read) { 380 if (!TextUtils.isEmpty(snippet)) { 384 SpannableString ss = new SpannableString(snippet); 385 ss.setSpan(new ForegroundColorSpan(sLightTextColor), 0, snippet.length(), 426 // Add style to subject/snippet 428 String snippet = mCursor.getString(EmailWidgetLoader.WIDGET_COLUMN_SNIPPET); local 429 CharSequence subjectAndSnippet = getStyledSubjectSnippet(subject, snippet, !isUnread) [all...] |
/packages/apps/Mms/src/com/android/mms/data/ |
Conversation.java | 46 Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR, 65 private static final int SNIPPET = 4; 495 * Returns a snippet of text from the most recent message in the conversation. 607 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs, 627 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs, 725 // Replace the snippet with a default value if it's empty. 726 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS); local 727 if (TextUtils.isEmpty(snippet)) { 728 snippet = context.getString(R.string.no_subject_view) 1117 String snippet = MessageUtils.extractEncStrFromCursor(c, SNIPPET, SNIPPET_CS); local [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactListItemView.java | 1184 String snippet; local [all...] |
/prebuilt/common/groovy/ |
groovy-all-1.7.0.jar | |