HomeSort by relevance Sort by last modified time
    Searched refs:view1 (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 132 QWebView* view1 = new QWebView; local
134 view1->setPage(page);
140 waitForSignal(view1, SIGNAL(loadFinished(bool)), 2000);
143 view1->show();
145 QTest::qWaitForWindowShown(view1);
149 delete view1;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Tabs1.java 43 .setContent(R.id.view1));
  /packages/apps/Calendar/src/com/android/calendar/
WeekActivity.java 73 CalendarView view1 = (CalendarView) mViewSwitcher.getCurrentView(); local
79 view1.setDetailedView(str);
MonthActivity.java 330 MonthView view1 = (MonthView) mSwitcher.getCurrentView(); local
335 view1.updateView();
337 view1.setDetailedView(str);
  /cts/tests/tests/widget/src/android/widget/cts/
RelativeLayout_LayoutParamsTest.java 95 // view1, centered within its parent.
97 View view1 = activity.findViewById(R.id.relative_view1); local
98 ViewAsserts.assertHorizontalCenterAligned(relativeLayout, view1);
99 ViewAsserts.assertVerticalCenterAligned(relativeLayout, view1);
100 layoutParams = (RelativeLayout.LayoutParams) (view1.getLayoutParams());
104 // view2, below view1 and has same left position with view1.
107 ViewAsserts.assertLeftAligned(view1, view2);
108 assertEquals(view1.getBottom(), view2.getTop());
114 // view3, has same top position with view1 and same bottom position with view2
    [all...]
TabWidgetTest.java 225 View view1 = new TextView(mActivity); local
226 mockTabWidget.addView(view1);
227 assertSame(view1, mockTabWidget.getChildAt(0));
CheckedTextViewTest.java 142 CheckedTextView view1 = (CheckedTextView) adapter.getView(1, null, null); local
145 assertTrue(view1.isChecked());
156 assertTrue(view1.isChecked());
160 view1.setChecked(false);
163 assertFalse(view1.isChecked());
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 145 View v1 = activity.findViewById(R.id.view1);
174 v2.setNextFocusLeftId(R.id.view1);
178 v3.setNextFocusUpId(R.id.view1);
187 assertEquals(R.id.view1, v2.getNextFocusLeftId());
190 assertEquals(R.id.view1, v3.getNextFocusUpId());
  /external/webkit/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 735 QWebView view1; local
738 view1.page()->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true);
739 view1.page()->settings()->setLocalStoragePath(QDir::toNativeSeparators(QDir::currentPath() + "/path1"));
740 qt_webpage_setGroupName(view1.page(), "group1");
744 QCOMPARE(qt_webpage_groupName(view1.page()), QString("group1"));
748 view1.setHtml(QString("<html><body> </body></html>"), QUrl("http://www.myexample.com"));
751 view1.page()->mainFrame()->evaluateJavaScript("localStorage.test='value1';");
754 view1.setHtml(QString("<html><body> </body></html>"), QUrl("http://www.myexample.com"));
757 QVariant s1 = view1.page()->mainFrame()->evaluateJavaScript("localStorage.test");
    [all...]

Completed in 182 milliseconds