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

1 2

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-111557.js 57 top.titles = new Array();
62 top.titles[i] = "NDS Libraries for C";
66 top.titles[i] = "NDS Backup Services";
70 top.titles[i] = "Functions";
74 top.titles[i] = "NDSBackupServerData";
78 top.titles[i] = "NDSFreeNameList";
82 top.titles[i] = "NDSGetReplicaPartitionNames";
86 top.titles[i] = "NDSIsOnlyServerInTree";
90 top.titles[i] = "NDSSYSVolumeRecovery";
94 top.titles[i] = "NDSVerifyServerInfo"
    [all...]
  /external/webkit/Source/WebKit/mac/History/
WebURLsWithTitles.h 33 // Convenience class for getting URLs and associated titles on and off an NSPasteboard
37 // Writes parallel arrays of URLs and titles to the pasteboard. These items can be retrieved by
39 // titles must consist of NSStrings, or be nil. If titles is nil, or if titles is a different
40 // length than URLs, empty strings will be used for all titles. If URLs is nil, this method
43 + (void)writeURLs:(NSArray *)URLs andTitles:(NSArray *)titles toPasteboard:(NSPasteboard *)pasteboard;
47 // the titles returned from titlesFromPasteboard.
51 // data of type WebURLsWithTitlesPboardType. This array consists of the titles that correspond to
WebURLsWithTitles.m 48 +(void)writeURLs:(NSArray *)URLs andTitles:(NSArray *)titles toPasteboard:(NSPasteboard *)pasteboard
63 if (count != [titles count]) {
64 titles = nil;
71 [titlesOrEmptyStrings addObject:(titles == nil) ? @"" : [[titles objectAtIndex:index] _webkit_stringByTrimmingWhitespace]];
  /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/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 135 static String buildCacheValue(String[] titles, int[] counts) {
138 for (int i = 0; i < titles.length; i++) {
142 appendIfNotNull(sb, titles[i]);
153 public static final Bundle buildExtraBundle(String[] titles, int[] counts) {
155 bundle.putStringArray(ContactCounts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
175 final String[] titles = new String[numTitles]; local
179 titles[i] = values[i * 2];
183 return buildExtraBundle(titles, counts);
  /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...]
  /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;
browser_about_handler.cc 1120 ListValue* titles = new ListValue(); local
    [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1-samples.jar 
  /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,
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,
  /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...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
FastScrollingIndexCacheTest.java 86 String[] titles, int[] counts) {
87 Bundle bundle = FastScrollingIndexCache.buildExtraBundle(titles, counts);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_button.h 169 // Given a list or |urls| and |titles|, create new bookmark nodes and add
175 // URLs and titles. http://crbug.com/44411
176 - (BOOL)addURLs:(NSArray*)urls withTitles:(NSArray*)titles at:(NSPoint)point;
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generateviewbylayout/ui/
AbstractLayoutItemsDialog.java 368 String[] titles = local
379 TableViewerColumn col = createTableViewerColumn(viewer, titles[0], bounds[0], 0);
390 col = createTableViewerColumn(viewer, titles[1], bounds[1], 1);
401 col = createTableViewerColumn(viewer, titles[2], bounds[2], 2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 384 List<String> titles = choices.getTitles(); local
389 assert icons.size() == titles.size();
393 String title = titles.get(i);
434 List<String> titles = choices.getTitles();
438 for (int i = 0; i < titles.size(); i++) {
439 String title = titles.get(i);
DynamicContextMenu.java 589 List<String> titles = mParentAction.getTitles(); local
592 assert titles.size() == ids.size();
596 for (int i = 0, n = Math.min(titles.size(), ids.size()); i < n; i++) {
624 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 856 milliseconds

1 2