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

1 2 3

  /frameworks/support/core-ui/tests/java/android/support/v4/view/
ViewPagerWithTabStripTest.java 46 // The following block tests that ViewPager page selection changes on clicking titles of
50 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click());
54 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click());
58 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click());
65 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click());
69 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Blue"))).perform(click());
73 // between titles of tabs as that functionality is exposed by PagerTabStrip
78 // Click between titles of page #0 and page #1 and verify that we're on page #1
79 onView(withId(R.id.titles)).perform(clickBetweenTwoTitles("Red", "Green"));
82 // Click between titles of page #0 and page #1 and verify that we're on page #
    [all...]
ViewPagerWithTitleStripTest.java 47 // The following block tests that nothing happens on clicking titles of various tabs
51 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click());
55 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click());
61 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click());
65 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click());
69 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Blue"))).perform(click());
73 // The following block tests that nothing happens on clicking in between titles of various
79 // Click between titles of page #0 and page #1 and verify that we're still on page #0
80 onView(withId(R.id.titles)).perform(clickBetweenTwoTitles("Red", "Green"));
86 // Click between titles of page #1 and page #2 and verify that we're still on page #
    [all...]
BaseViewPagerTest.java 522 onView(withId(R.id.titles)).check(isLeftAlignedWith(withId(R.id.pager)));
523 onView(withId(R.id.titles)).check(isRightAlignedWith(withId(R.id.pager)));
524 onView(withId(R.id.titles)).check(isTopAlignedWith(withId(R.id.pager)));
530 onView(withId(selectedPageId)).check(isBelow(withId(R.id.titles)));
536 // Check that the title strip shows the expected number of children (tab titles)
538 onView(withId(R.id.titles)).check(hasDisplayedChildren(nonNullTitles));
543 onView(withId(R.id.titles)).check(matches(hasDescendant(
548 onView(withId(R.id.titles)).check(matches(hasDescendant(
553 onView(withId(R.id.titles)).check(matches(hasDescendant(
570 onView(withId(R.id.pager)).check(matches(hasDescendant(withId(R.id.titles))));
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppDomainsPreference.java 38 public void setTitles(CharSequence[] titles) {
39 mNumEntries = (titles != null) ? titles.length : 0;
40 super.setTitles(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 149 static String buildCacheValue(String[] titles, int[] counts) {
152 for (int i = 0; i < titles.length; i++) {
156 appendIfNotNull(sb, titles[i]);
167 public static final Bundle buildExtraBundle(String[] titles, int[] counts) {
169 bundle.putStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
189 final String[] titles = new String[numTitles]; local
193 titles[i] = values[i * 2];
197 return buildExtraBundle(titles, counts);
  /external/lzma/CPP/Windows/Control/
PropertyPage.cpp 50 AStringVector titles; local
60 titles.Add(GetSystemString(pagesInfo[i].Title));
76 if (titles[i].IsEmpty())
81 page.pszTitle = titles[i];
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
Action.java 181 * Returns a list of {@link Action} with the specified keys and titles
186 public static ArrayList<Action> createActionsFromArrays(String[] keys, String[] titles) {
187 return createActionsFromArrays(keys, titles, NO_CHECK_SET, null);
191 * Returns a list of {@link Action} with the specified keys and titles
196 public static ArrayList<Action> createActionsFromArrays(String[] keys, String[] titles,
199 int titlesLength = titles.length;
202 throw new IllegalArgumentException("Keys and titles dimensions must match");
208 builder.key(keys[i]).title(titles[i]).checkSetId(checkSetId);
  /packages/apps/Settings/src/com/android/settings/
ColorModePreference.java 80 String[] titles = resources.getStringArray(R.array.color_mode_names); local
87 desc.title = titles[i];
TrustedCredentialsDialogBuilder.java 274 final ArrayList<String> titles = new ArrayList<String>(); local
280 titles.add(sslCert.getIssuedTo().getCName());
286 titles);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
ColorModePreference.java 82 String[] titles = resources.getStringArray(R.array.color_mode_names); local
89 desc.title = titles[i];
DevelopmentFragment.java 1251 String[] titles = getResources().getStringArray(R.array.select_logd_size_titles); local
1295 String[] titles = getResources().getStringArray(R.array.usb_configuration_titles); local
    [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1-samples.jar 
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/view/
ViewPagerActivity.java 52 mTitles = (PagerTitleStrip) findViewById(R.id.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.adt/src/com/android/ide/common/layout/
BaseViewRule.java     [all...]
  /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));
  /packages/apps/Settings/src/com/android/settings/accessibility/
ListDialogPreference.java 37 * Abstract dialog preference that displays a set of values and optional titles.
93 * Sets the list of item titles. May be null if no titles are specified, or
94 * may be shorter than the list of values to leave some titles unspecified.
96 * @param titles the list of item titles
98 public void setTitles(CharSequence[] titles) {
99 mEntryTitles = titles;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
FastScrollingIndexCacheTest.java 85 String[] titles, int[] counts) {
86 Bundle bundle = FastScrollingIndexCache.buildExtraBundle(titles, counts);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 386 List<String> titles = choices.getTitles(); local
391 assert icons.size() == titles.size();
395 String title = titles.get(i);
436 List<String> titles = choices.getTitles();
440 for (int i = 0; i < titles.size(); i++) {
441 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);
  /packages/services/Car/car-ui-provider/src/android/car/ui/provider/
DrawerController.java 56 private static final String KEY_TITLES = "android.support.car.ui.drawer.sdk.TITLES";
270 // Restore drawer titles if there are any
271 String[] titles = in.getStringArray(KEY_TITLES); local
273 if (titles != null) {
274 mTitles.addAll(Arrays.asList(titles));
  /packages/apps/Terminal/src/com/android/terminal/
TerminalActivity.java 152 mTitles = (PagerTitleStrip) findViewById(R.id.titles);
  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/rule-api/24.4.0-beta3/
rule-api-24.4.0-beta3.jar 

Completed in 899 milliseconds

1 2 3