HomeSort by relevance Sort by last modified time
    Searched defs:titles (Results 1 - 14 of 14) sorted by null

  /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
browser_about_handler.cc 1120 ListValue* titles = new ListValue(); local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
typed_url_change_processor.cc 199 TypedUrlModelAssociator::TypedUrlTitleVector titles; local
287 titles.push_back(std::pair<GURL, string16>(new_url.url(),
305 if (!model_associator_->WriteToHistoryBackend(&titles, &new_urls,
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) {
  /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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
FastScrollingIndexCache.java 134 static String buildCacheValue(String[] titles, int[] counts) {
137 for (int i = 0; i < titles.length; i++) {
141 appendIfNotNull(sb, titles[i]);
152 public static final Bundle buildExtraBundle(String[] titles, int[] counts) {
154 bundle.putStringArray(ContactCounts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
174 final String[] titles = new String[numTitles]; local
178 titles[i] = values[i * 2];
182 return buildExtraBundle(titles, counts);
ContactsProvider2.java 6134 String titles[] = new String[groupCount]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 161 List<String> titles = choices.getTitles(); local
163 assertEquals("Wrap Content", titles.get(0));
165 assertEquals("Match Parent", titles.get(1));
167 assertEquals("42dip", titles.get(2));
  /external/v8/test/cctest/
test-profile-generator.cc 812 CpuProfilesCollection::kMaxSimultaneousProfiles> titles; local
817 titles[i] = title.start();
822 i::DeleteArray(titles[i]);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActionBar.java 144 ArrayList<CharSequence> titles = new ArrayList<CharSequence>(); local
148 titles.add(mContext.getString(item.dialogTitle));
152 mTitles = new CharSequence[titles.size()];
153 titles.toArray(mTitles);
  /sdk/rule_api/src/com/android/ide/common/api/
RuleAction.java 212 * @param titles The UI-visible titles of the children
225 @NonNull List<String> titles,
232 Choices choices = new Choices(id, title, callback, titles, iconUrls,
257 * @param idsAndTitles a list of pairs (of ids and titles) to use for the
273 List<String> titles = new ArrayList<String>(itemCount); local
277 titles.add(pair.getSecond());
279 Choices choices = new Choices(id, title, callback, titles, iconUrls,
556 @NonNull List<String> titles,
563 mTitles = titles;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 547 List<String> titles = mParentAction.getTitles(); local
550 assert titles.size() == ids.size();
554 for (int i = 0, n = Math.min(titles.size(), ids.size()); i < n; i++) {
582 String title = titles.get(i);
LayoutActionBar.java 290 List<String> titles = choices.getTitles(); local
295 assert icons.size() == titles.size();
299 String title = titles.get(i);
340 List<String> titles = choices.getTitles();
344 for (int i = 0; i < titles.size(); i++) {
345 String title = titles.get(i);
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 237 # Predefined urls and titles for reference links and images.
268 var $titles = array(); variable
282 $this->titles = $this->predef_titles; variable
294 $this->titles = array(); variable
348 # Strips link definitions from text, stores the URLs and titles in
379 $this->titles[$link_id] =& $matches[3];
756 if ( isset( $this->titles[$link_id] ) ) {
757 $title = $this->titles[$link_id];
860 if (isset($this->titles[$link_id])) {
861 $title = $this->titles[$link_id]
    [all...]

Completed in 411 milliseconds