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

1 2 3

  /external/chromium/chrome/browser/bookmarks/
bookmark_index_unittest.cc 28 void AddBookmarksWithTitles(const char** titles, size_t count) {
31 title_vector.push_back(titles[i]);
35 void AddBookmarksWithTitles(const std::vector<std::string>& titles) {
37 for (size_t i = 0; i < titles.size(); ++i)
39 ASCIIToUTF16(titles[i]), url);
138 std::vector<std::string> titles; local
139 base::SplitString(data[i].input, ';', &titles);
140 AddBookmarksWithTitles(titles);
165 std::vector<std::string> titles; local
166 titles.push_back(data[i].title)
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_index_unittest.cc 30 void AddBookmarksWithTitles(const char** titles, size_t count) {
33 title_vector.push_back(titles[i]);
37 void AddBookmarksWithTitles(const std::vector<std::string>& titles) {
39 for (size_t i = 0; i < titles.size(); ++i)
41 ASCIIToUTF16(titles[i]), url);
144 std::vector<std::string> titles; local
145 base::SplitString(data[i].input, ';', &titles);
146 AddBookmarksWithTitles(titles);
176 std::vector<std::string> titles; local
177 titles.push_back(data[i].title)
    [all...]
  /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/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(ContactCounts.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/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.
25 * @param titles Array of most visited url page titles.
29 public void onMostVisitedURLsAvailable(String[] titles, String[] urls);
53 * Asynchronous method that fetches most visited urls and their page titles.
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
failures.js 81 var titles = this.createTHead().insertRow();
82 titles.insertCell().textContent = 'debug';
83 titles.insertCell().textContent = 'release';
84 titles.insertCell().textContent = 'type';
  /external/chromium_org/chrome/browser/
memory_details.cc 152 if (!iter1->titles.empty()) {
155 iter1->titles.begin();
156 iter2 != iter1->titles.end(); ++iter2) {
157 if (iter2 != iter1->titles.begin())
192 info.titles.push_back(iter.GetData().name);
215 // Check if it's a renderer, if so get the list of page titles in it and
283 process.titles.push_back(title);
297 process.titles.push_back(UTF8ToUTF16(url.spec()));
304 process.titles.push_back(UTF8ToUTF16(url.spec()));
318 process.titles.push_back(title)
    [all...]
memory_details_win.cc 132 info.titles = child_info[child].titles;
memory_details.h 64 // A collection of titles used, i.e. for a tab it'll show all the page titles.
65 std::vector<string16> titles; member in struct:ProcessMemoryInformation
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 52 std::vector<string16> titles; local
54 ExtractMostVisitedTitlesAndURLs(visited_list, &titles, &urls);
60 ToJavaArrayOfStrings(env, titles).obj(),
70 std::vector<string16>* titles,
78 titles->push_back(visited.title);
  /external/chromium/chrome/browser/
memory_details.h 43 // A collection of titles used, i.e. for a tab it'll show all the page titles.
44 std::vector<string16> titles; member in struct:ProcessMemoryInformation
memory_details_win.cc 130 info.titles = child_info[child].titles;
memory_details.cc 99 info.titles.push_back(WideToUTF16Hack(iter->name()));
121 // Check if it's a renderer, if so get the list of page titles in it and
179 process.titles.push_back(title);
183 process.titles.push_back(UTF8ToUTF16(url.spec()));
211 process.titles.push_back(title);
memory_details_mac.cc 216 info.titles = child_info[child].titles;
  /prebuilts/tools/common/easymock-tools/
easymock-3.1-samples.jar 
  /external/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_proxy.cc 258 base::ListValue* titles = new ListValue(); local
259 process->Set("titles", titles);
260 for (size_t i = 0; i < iter->titles.size(); ++i)
261 titles->AppendString(iter->titles[i]);
  /external/chromium/chrome/browser/sync/glue/
typed_url_model_associator.cc 55 TypedUrlTitleVector titles; local
101 titles.push_back(std::pair<GURL, string16>(new_url.url(),
181 return WriteToHistoryBackend(&titles, &new_urls, &updated_urls,
284 const TypedUrlTitleVector* titles,
289 if (titles) {
290 for (TypedUrlTitleVector::const_iterator title = titles->begin();
291 title != titles->end(); ++title) {
typed_url_model_associator.h 101 bool WriteToHistoryBackend(const TypedUrlTitleVector* titles,
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_builder_test_helper.cc 226 std::vector<string16> titles; local
228 titles.push_back(tabs[i].title);
229 return titles;
  /external/chromium_org/chrome/browser/resources/memory_internals/
memory_internals.js 73 value += '<br>' + process['titles'].join('<br>');
117 value = extension['titles'].join('<br>');
  /external/chromium_org/tools/gen_keyboard_overlay_data/
gen_keyboard_overlay_data.py 313 titles = []
320 titles.append(title)
332 PrintDiffs('Exist only on the spreadsheet: ', titles, sheets)
333 PrintDiffs('Specified but do not exist on the spreadsheet: ', sheets, titles)
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActionBar.java 197 ArrayList<CharSequence> titles = new ArrayList<CharSequence>(); local
201 titles.add(mContext.getString(item.dialogTitle));
205 mTitles = new CharSequence[titles.size()];
206 titles.toArray(mTitles);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 160 List<String> titles = choices.getTitles(); local
162 assertEquals("Wrap Content", titles.get(0));
164 assertEquals("Match Parent", titles.get(1));
166 assertEquals("42dip", titles.get(2));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java     [all...]

Completed in 887 milliseconds

1 2 3