HomeSort by relevance Sort by last modified time
    Searched full:titles (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_title.js 7 * @fileoverview Rendering for iframed most visited titles.
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
MostVisitedSites.java 12 * Methods to bridge into native history to provide most recent urls, titles and thumbnails.
26 * @param titles Array of most visited url page titles.
30 public void onMostVisitedURLsAvailable(String[] titles, String[] urls);
82 public void onMostVisitedURLsAvailable(String[] titles, String[] urls) {
85 observer.onMostVisitedURLsAvailable(titles, urls);
  /development/samples/ApiDemos/res/layout/
fragment_layout.xml 18 for display when not in landscape: we can only fit the list of titles. -->
24 android:id="@+id/titles"
  /development/samples/Support4Demos/res/layout/
fragment_layout_support.xml 18 for display when not in landscape: we can only fit the list of titles. -->
24 android:id="@+id/titles"
  /development/samples/Support4Demos/res/layout-land/
fragment_layout_support.xml 18 for display when in landscape: we can fit both titles and dialog. -->
26 android:id="@+id/titles" android:layout_weight="1"
  /external/chromium_org/third_party/libxml/src/include/libxml/
xlink.h 100 * @nbTitles: the number of titles detected on the link
101 * @title: array of titles detected on the link
102 * @langs: array of xml:lang values for the titles
118 const xlinkTitle *titles,
128 * @nbTitles: the number of titles detected on the link
129 * @title: array of titles detected on the link
130 * @langs: array of xml:lang values for the titles
141 const xlinkTitle *titles,
  /external/libxml2/include/libxml/
xlink.h 100 * @nbTitles: the number of titles detected on the link
101 * @title: array of titles detected on the link
102 * @langs: array of xml:lang values for the titles
118 const xlinkTitle *titles,
128 * @nbTitles: the number of titles detected on the link
129 * @title: array of titles detected on the link
130 * @langs: array of xml:lang values for the titles
141 const xlinkTitle *titles,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
Action.java 184 * Returns a list of {@link Action} with the specified keys and titles
189 public static ArrayList<Action> createActionsFromArrays(String[] keys, String[] titles) {
190 return createActionsFromArrays(keys, titles, NO_CHECK_SET, null);
194 * Returns a list of {@link Action} with the specified keys and titles
200 String[] keys, String[] titles, String checkedItemKey) {
201 return createActionsFromArrays(keys, titles, DEFAULT_CHECK_SET_ID, checkedItemKey);
205 * Returns a list of {@link Action} with the specified keys and titles
210 public static ArrayList<Action> createActionsFromArrays(String[] keys, String[] titles,
212 return createActionsFromArrays(keys, titles, checkSetId, null);
216 * Returns a list of {@link Action} with the specified keys and titles
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider.h 23 // provides autocomplete suggestions based on the titles of bookmarks. Page
24 // titles, URLs, and typed and visit counts of the bookmarks are not currently
36 // a complete search for |input| across all bookmark titles.
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_instance_view.js 54 var titles = ['Total'];
55 titles = titles.concat(traceNames);
56 table.appendChild(this.buildRow_(null, titles));
  /external/chromium_org/chrome/browser/resources/security_warnings/
ssl.js 17 // The titles are not internationalized because this is debugging information
  /development/samples/ApiDemos/res/layout-land/
fragment_layout.xml 18 for display when in landscape: we can fit both titles and dialog. -->
26 android:id="@+id/titles" android:layout_weight="1"
  /external/chromium_org/device/nfc/
nfc_ndef_record.cc 129 // Verify that the "titles" field was formatted correctly, if it exists.
130 const ListValue* titles = NULL; local
131 if (data->GetList(NfcNdefRecord::kFieldTitles, &titles)) {
132 if (titles->empty()) {
133 VLOG(1) << "\"titles\" field of SmartPoster is empty.";
136 for (ListValue::const_iterator iter = titles->begin();
137 iter != titles->end(); ++iter) {
186 const char NfcNdefRecord::kFieldTitles[] = "titles";
nfc_ndef_record_utils_chromeos.cc 116 // Special case the "titles" and "action" fields.
118 const base::ListValue* titles = NULL; local
119 bool value_result = iter.value().GetAsList(&titles);
121 DCHECK(titles->GetSize() != 0);
127 value_result = titles->GetDictionary(0, &first_title);
224 base::ListValue* titles = new base::ListValue(); local
225 titles->Append(text_attributes.release());
226 attributes.Set(NfcNdefRecord::kFieldTitles, titles);
  /packages/apps/Settings/src/com/android/settings/accessibility/
ListDialogPreference.java 36 * Abstract dialog preference that displays a set of values and optional titles.
92 * Sets the list of item titles. May be null if no titles are specified, or
93 * may be shorter than the list of values to leave some titles unspecified.
95 * @param titles the list of item titles
97 public void setTitles(CharSequence[] titles) {
98 mEntryTitles = titles;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
FastScrollingIndexCache.java 143 static String buildCacheValue(String[] titles, int[] counts) {
146 for (int i = 0; i < titles.length; i++) {
150 appendIfNotNull(sb, titles[i]);
161 public static final Bundle buildExtraBundle(String[] titles, int[] counts) {
163 bundle.putStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
183 final String[] titles = new String[numTitles]; local
187 titles[i] = values[i * 2];
191 return buildExtraBundle(titles, counts);
  /external/chromium_org/components/bookmarks/browser/
bookmark_pasteboard_helper_mac.mm 221 NSMutableArray* titles,
228 [titles addObject:title];
231 FillFlattenedArraysForBookmarks(element.children, titles, urls);
239 NSMutableArray* titles = [NSMutableArray array];
241 FillFlattenedArraysForBookmarks(elements, titles, urls);
248 [pb setPropertyList:[NSArray arrayWithObjects:urls, titles, nil]
258 NSString* titleString = [titles objectAtIndex:0];
bookmark_index_unittest.cc 62 void AddBookmarks(const char** titles, const char** urls, size_t count) {
66 TitleAndURL bookmark(titles[i], urls[i]);
146 const std::string titles; member in struct:bookmarks::__anon10985::TestData
177 std::vector<std::string> titles; local
178 base::SplitString(data[i].titles, ';', &titles);
180 for (size_t j = 0; j < titles.size(); ++j) {
181 TitleAndURL bookmark(titles[j], kAboutBlankURL);
370 const char* titles[] = { "a", "b" }; local
372 AddBookmarks(titles, urls, ARRAYSIZE_UNSAFE(titles))
381 const char* titles[] = { "a", "b" }; local
393 const char* titles[] = { "abcd", "abcde" }; local
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
SaveRestoreStateTest.java 49 private static final String TITLES[] = {
81 "<title>" + TITLES[i] + "</title>",
112 assertEquals(TITLES[i], history.getEntryAtIndex(i).getTitle());
139 return TITLES[0].equals(restoredVars.awContents.getTitle()) &&
140 TITLES[0].equals(restoredVars.contentsClient.getUpdatedTitle());
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List4.java 62 return Shakespeare.TITLES.length;
95 sv = new SpeechView(mContext, Shakespeare.TITLES[position],
99 sv.setTitle(Shakespeare.TITLES[position]);
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.h 84 // Profile used to load titles.
89 // Used in loading titles.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bubble_controller_unittest.mm 185 NSArray* titles =
187 EXPECT_TRUE([titles containsObject:@"one"]);
188 EXPECT_TRUE([titles containsObject:@"two"]);
189 EXPECT_TRUE([titles containsObject:@"three"]);
190 EXPECT_TRUE([titles containsObject:@"sub"]);
191 EXPECT_FALSE([titles containsObject:@"title1"]);
192 EXPECT_FALSE([titles containsObject:@"title2"]);
196 EXPECT_TRUE([titles containsObject:@"Other Bookmarks"]);
197 EXPECT_TRUE([titles containsObject:@"Bookmarks Bar"]);
199 EXPECT_TRUE([titles containsObject:@"Mobile Bookmarks"])
    [all...]
  /development/samples/HoneycombGallery/res/values/
strings.xml 32 <string name="toggle_titles">Toggle Titles</string>
  /development/samples/training/EffectiveNavigation/res/layout/
activity_collection_demo.xml 24 titles for adjacent pages.
  /external/chromium_org/chrome/browser/ui/cocoa/
ui_localizer.h 25 // - Titles and altTitles (for menus, buttons, windows, menuitems, -tabViewItem)

Completed in 878 milliseconds

1 2 3 4 5 6 7 8 91011>>