HomeSort by relevance Sort by last modified time
    Searched full:view1 (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/qemu/android/base/
StringView_unittest.cpp 34 StringView view1(kString);
35 StringView view2(view1);
72 StringView view1(kString);
74 view.set(view1);
105 StringView view1(kHello1);
107 EXPECT_TRUE(view1 == view2);
108 EXPECT_FALSE(view1 != view2);
109 EXPECT_TRUE(view1 <= view2);
110 EXPECT_TRUE(view1 >= view2);
111 EXPECT_FALSE(view1 < view2)
    [all...]
  /cts/tests/tests/view/res/layout/
focus_handling_layout.xml 23 android:id="@+id/view1"
32 android:layout_toRightOf="@id/view1"
33 android:layout_alignTop="@id/view1"
34 android:nextFocusLeft="@id/view1"
41 android:layout_below="@id/view1"
42 android:layout_alignLeft="@id/view1"
43 android:nextFocusUp="@id/view1"
viewgrouptest_stub.xml 25 <!-- view1 goes on top -->
viewtreeobserver_layout.xml 23 <View android:id="@+id/view1"
  /external/chromium_org/tools/perf/page_sets/webrtc/
local-video.html 17 document.getElementById("view1").src = webkitURL.createObjectURL(stream);
28 <video width="640" height="480" id="view1" autoplay="autoplay"></video>
  /development/samples/ApiDemos/res/layout/
relative_layout_1.xml 25 <!-- view1 goes on top -->
27 android:id="@+id/view1"
43 <!-- view3 stretches betweeen view1 and view2 -->
50 android:layout_below="@id/view1"
tabs1.xml 21 <TextView android:id="@+id/view1"
  /cts/tests/tests/widget/src/android/widget/cts/
RelativeLayout_LayoutParamsTest.java 62 // view1, centered within its parent.
64 View view1 = activity.findViewById(R.id.relative_view1); local
65 ViewAsserts.assertHorizontalCenterAligned(relativeLayout, view1);
66 ViewAsserts.assertVerticalCenterAligned(relativeLayout, view1);
67 layoutParams = (RelativeLayout.LayoutParams) (view1.getLayoutParams());
71 // view2, below view1 and has same left position with view1.
74 ViewAsserts.assertLeftAligned(view1, view2);
75 assertEquals(view1.getBottom(), view2.getTop());
81 // view3, has same top position with view1 and same bottom position with view2
171 View view1 = activity.findViewById(R.id.relative_view21); local
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout_unittest.mm 112 base::scoped_nsobject<NSView> view1 = CreateViewWithHeight(30.0f);
113 layout.AddView(view1);
137 base::scoped_nsobject<NSView> view1 = CreateViewWithHeight(37.0f);
138 layout.AddView(view1);
158 base::scoped_nsobject<NSView> view1 = CreateViewWithHeight(30.0f);
159 layout.AddView(view1);
179 base::scoped_nsobject<NSView> view1 = CreateViewWithHeight(22.0f);
181 layout.AddView(view1);
192 EXPECT_FLOAT_EQ(72.0f, NSWidth([view1 frame]));
193 EXPECT_FLOAT_EQ(22.0f, NSHeight([view1 frame]))
    [all...]
  /external/chromium_org/third_party/webrtc/test/manual/
two-video-devices.html 33 attachMediaStream(document.getElementById("view1"), stream);
38 <body onload="requestVideo('view1'); requestVideo('view2');">
44 <td><video width="320" height="240" id="view1"
audio-and-video.html 30 attachMediaStream(document.getElementById("view1"), stream);
41 <td><video width="320" height="240" id="view1"
single-video.html 30 attachMediaStream(document.getElementById("view1"), stream);
40 <td><video width="320" height="240" id="view1"
  /cts/tests/tests/view/src/android/view/cts/
ViewTreeObserverTest.java 76 final View view1 = mActivity.findViewById(R.id.view1); local
82 view1.requestFocus();
102 && listener.oldFocus == view1 && listener.newFocus == view2;
159 final View view1 = mActivity.findViewById(R.id.view1); local
160 mViewTreeObserver = view1.getViewTreeObserver();
167 final View view1 = mActivity.findViewById(R.id.view1); local
168 mViewTreeObserver = view1.getViewTreeObserver()
222 final View view1 = mActivity.findViewById(R.id.view1); local
    [all...]
View_FocusHandlingTest.java 38 View v1 = activity.findViewById(R.id.view1);
67 v2.setNextFocusLeftId(R.id.view1);
71 v3.setNextFocusUpId(R.id.view1);
80 assertEquals(R.id.view1, v2.getNextFocusLeftId());
83 assertEquals(R.id.view1, v3.getNextFocusUpId());
  /external/clang/test/CodeGenObjC/
debug-info-lifetime-crash.m 7 @interface View1
12 - (void)View:(View1 *)View foo:(W *)W
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewTest.java 338 TestView view1 = new TestView(new Activity()); local
339 assertFalse(view1.onAnimationEndWasCalled);
340 shadowOf(view1).finishedAnimation();
341 assertTrue(view1.onAnimationEndWasCalled);
347 TestView view1 = new TestView(new Activity()); local
349 assertThat(view1.getHeight(), equalTo(0));
350 assertThat(view1.getWidth(), equalTo(0));
351 assertThat(view1.getMeasuredHeight(), equalTo(0));
352 assertThat(view1.getMeasuredWidth(), equalTo(0));
354 view1.measure( MeasureSpec.makeMeasureSpec(150, MeasureSpec.AT_MOST)
    [all...]
  /external/chromium_org/ui/views/controls/native/
native_view_host_unittest.cc 215 // +-- view1 (View)
222 View* view1 = new View; local
223 toplevel()->GetRootView()->AddChildView(view1);
233 view1,
249 // Reparent view0 to view1, expect no parent change because the old and new
250 // parents of both view0 and view1 belong to the same toplevel widget.
255 view1->AddChildView(view0);
260 // Then, reparent view1 to contents view of child0.
268 child0->GetContentsView()->AddChildView(view1);
  /cts/tests/tests/widget/res/layout/
relative_layout.xml 27 <!-- view1, centered within its parent. -->
35 <!-- view2, below view1 and has same left position with view1. -->
44 <!-- view3, has same top position with view1 and same bottom position with view2,
45 and on the right of view1. -->
91 <!-- view8, centered vertically within its parent and on the left of view1. -->
179 <!-- view22, below view1 and has same start position with view21. -->
189 and on the end of view1. -->
viewgrouptest_stub.xml 25 <!-- view1 goes on top -->
  /external/chromium_org/chrome/browser/ui/cocoa/
l10n_util.mm 13 NSInteger CompareFrameY(id view1, id view2, void* context) {
14 CGFloat y1 = NSMinY([view1 frame]);
l10n_util.h 13 NSInteger CompareFrameY(id view1, id view2, void* context);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsListEN.java 50 @Override protected UserDictionaryToolsEdit createUserDictionaryToolsEdit(View view1, View view2) {
51 return new UserDictionaryToolsEditEN(view1, view2);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsListJAJP.java 47 @Override protected UserDictionaryToolsEdit createUserDictionaryToolsEdit(View view1, View view2) {
48 return new UserDictionaryToolsEditJAJP(view1, view2);
  /external/chromium_org/ash/tooltips/
tooltip_controller_unittest.cc 137 TooltipTestView* view1 = new TooltipTestView; local
138 AddViewToWidgetAndResize(widget1.get(), view1);
139 view1->set_tooltip_text(base::ASCIIToUTF16("Tooltip Text for view 1"));
171 view1->bounds().CenterPoint());
  /external/chromium_org/ui/views/focus/
focus_manager_unittest.cc 72 SimpleTestView* view1 = new SimpleTestView(&event_list, kView1ID); local
74 GetContentsView()->AddChildView(view1);
77 view1->RequestFocus();
98 View* view1 = new View(); local
99 view1->SetFocusable(true);
102 GetContentsView()->AddChildView(view1);
111 view1->RequestFocus();
113 EXPECT_TRUE(listener.focus_changes()[0] == ViewPair(null_view, view1));
118 EXPECT_TRUE(listener.focus_changes()[0] == ViewPair(view1, view2));
889 View* view1 = new View local
    [all...]

Completed in 478 milliseconds

1 2 3