HomeSort by relevance Sort by last modified time
    Searched refs:view2 (Results 1 - 11 of 11) sorted by null

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsListEN.java 49 @Override protected UserDictionaryToolsEdit createUserDictionaryToolsEdit(View view1, View view2) {
50 return new UserDictionaryToolsEditEN(view1, view2);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsListJAJP.java 46 @Override protected UserDictionaryToolsEdit createUserDictionaryToolsEdit(View view1, View view2) {
47 return new UserDictionaryToolsEditJAJP(view1, view2);
  /external/webkit/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 152 QWebView *view2 = new QWebView; local
153 view2->setPage(page);
154 view2->show(); // in Windowless mode, you should still be able to see the plugin here
156 QTest::qWaitForWindowShown(view2);
160 delete view2;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Tabs1.java 46 .setContent(R.id.view2));
  /packages/apps/Calendar/src/com/android/calendar/
WeekActivity.java 74 CalendarView view2 = (CalendarView) mViewSwitcher.getNextView(); local
80 view2.setDetailedView(str);
MonthActivity.java 301 MonthView view2 = (MonthView) mSwitcher.getNextView(); local
306 view2.setDetailedView(str);
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 146 View v2 = activity.findViewById(R.id.view2);
171 v1.setNextFocusRightId(R.id.view2);
181 v4.setNextFocusUpId(R.id.view2);
184 assertEquals(R.id.view2, v1.getNextFocusRightId());
193 assertEquals(R.id.view2, v4.getNextFocusUpId());
  /cts/tests/tests/widget/src/android/widget/cts/
TabWidgetTest.java 239 View view2 = new RelativeLayout(mActivity); local
240 mockTabWidget.addView(view2);
241 assertSame(view2, mockTabWidget.getChildAt(1));
CheckedTextViewTest.java 143 CheckedTextView view2 = (CheckedTextView) adapter.getView(2, null, null); local
146 assertFalse(view2.isChecked());
157 assertTrue(view2.isChecked());
161 view2.setChecked(false);
164 assertFalse(view2.isChecked());
RelativeLayout_LayoutParamsTest.java 104 // view2, below view1 and has same left position with view1.
106 View view2 = activity.findViewById(R.id.relative_view2); local
107 ViewAsserts.assertLeftAligned(view1, view2);
108 assertEquals(view1.getBottom(), view2.getTop());
109 layoutParams = (RelativeLayout.LayoutParams) (view2.getLayoutParams());
114 // view3, has same top position with view1 and same bottom position with view2,
119 ViewAsserts.assertBottomAligned(view2, view3);
  /external/webkit/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 736 QWebView view2; local
741 view2.page()->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true);
742 view2.page()->settings()->setLocalStoragePath(QDir::toNativeSeparators(QDir::currentPath() + "/path2"));
743 qt_webpage_setGroupName(view2.page(), "group2");
745 QCOMPARE(qt_webpage_groupName(view2.page()), QString("group2"));
749 view2.setHtml(QString("<html><body> </body></html>"), QUrl("http://www.myexample.com"));
752 view2.page()->mainFrame()->evaluateJavaScript("localStorage.test='value2';");
755 view2.setHtml(QString("<html><body> </body></html>"), QUrl("http://www.myexample.com"));
760 QVariant s2 = view2.page()->mainFrame()->evaluateJavaScript("localStorage.test");
    [all...]

Completed in 424 milliseconds