/external/chromium_org/ash/ |
focus_cycler_unittest.cc | 322 views::View* view1 = new views::View; local 323 view1->SetFocusable(true); 324 pane1->AddChildView(view1); 360 EXPECT_EQ(focus_manager->GetFocusedView(), view1); 379 EXPECT_EQ(focus_manager->GetFocusedView(), view1); 395 EXPECT_EQ(focus_manager->GetFocusedView(), view1); 403 EXPECT_EQ(focus_manager->GetFocusedView(), view1);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
CheckedTextViewTest.java | 104 CheckedTextView view1 = (CheckedTextView) adapter.getView(1, null, null); local 107 assertTrue(view1.isChecked()); 118 assertTrue(view1.isChecked()); 122 view1.setChecked(false); 125 assertFalse(view1.isChecked());
|
TabWidgetTest.java | 164 View view1 = new TextView(mActivity); local 165 mockTabWidget.addView(view1); 166 assertSame(view1, mockTabWidget.getChildAt(0));
|
/external/chromium_org/mojo/services/public/cpp/view_manager/tests/ |
view_manager_unittest.cc | 475 View* view1 = View::Create(window_manager()); local 476 window_manager()->GetRoots().front()->AddChild(view1); 479 ViewManager* embedded1 = Embed(window_manager(), view1); 492 View* view1 = View::Create(window_manager()); local 493 window_manager()->GetRoots().front()->AddChild(view1); 495 ViewManager* embedded = Embed(window_manager(), view1); 502 View* view1_in_wm = window_manager()->GetViewById(view1->id()); 505 WaitForTreeSizeToMatch(view1, 2u);
|
/development/samples/ApiDemos/res/layout/ |
linear_layout_1.xml | 25 <!-- view1 goes on top -->
|
linear_layout_2.xml | 25 <!-- view1 goes on top -->
|
linear_layout_3.xml | 29 <!-- view1 goes on top -->
|
transition_scene1.xml | 27 android:id="@+id/view1"/>
|
transition_scene2.xml | 27 android:id="@+id/view1"/>
|
transition_scene3.xml | 27 android:id="@+id/view1"/>
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Tabs1.java | 42 .setContent(R.id.view1));
|
/development/samples/training/multiscreen/newsreader/res/layout/ |
onepane_with_bar.xml | 34 android:id="@+id/view1"
|
/frameworks/base/core/tests/coretests/res/layout/ |
layout_three.xml | 21 <view class="android.view.InflateTest$ViewOne" android:id="@+id/view1" android:layout_width="match_parent" android:layout_height="match_parent"/>
|
/external/chromium_org/third_party/sqlite/src/test/ |
capi2.test | 722 CREATE VIEW view1 AS SELECT * FROM tab1; 726 check_origins {SELECT col2, col1 FROM view1} 729 check_origins {SELECT col2 AS hello, col1 AS world FROM view1} 732 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM view1)} 735 check_origins {SELECT (SELECT col2 FROM view1), (SELECT col1 FROM view1)} 738 check_origins {SELECT (SELECT col2), (SELECT col1) FROM view1} 741 check_origins {SELECT * FROM view1} 744 check_origins {select * from (select * from view1)} 747 check_origins {select * from (select * from (select * from view1))} [all...] |
speed4.test | 76 # speed4-view1: Querying a view. 77 # speed4-table1: Same queries as in speed4-view1, but run directly against 136 speed_trial speed4-view1 10000 stmt $sql
|
speed4p.explain | 76 # speed4p-view1: Querying a view. 77 # speed4p-table1: Same queries as in speed4p-view1, but run directly against 145 speed_trial_tcl speed4p-view1 10000 stmt $script
|
speed4p.test | 76 # speed4p-view1: Querying a view. 77 # speed4p-table1: Same queries as in speed4p-view1, but run directly against 136 speed_trial_tcl speed4p-view1 10000 stmt $script
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ListViewTest.java | 94 View view1 = new View(null); local 95 view1.setId(1); 101 listView.addHeaderView(view1); 106 assertThat(shadowOf(listView).getHeaderViews().get(1), sameInstance(view1)); 141 View view1 = new View(null); local 143 listView.addFooterView(view1); 145 assertThat(shadowOf(listView).getFooterViews().get(1), sameInstance(view1));
|
/external/chromium_org/ui/views/widget/ |
widget_interactive_uitest.cc | 493 View* view1 = new View; local 494 view1->SetFocusable(true); 495 widget1->GetContentsView()->AddChildView(view1); 507 view1->RequestFocus(); 508 EXPECT_EQ(view1, widget1->GetFocusManager()->GetFocusedView()); 521 EXPECT_EQ(view1, widget1->GetFocusManager()->GetFocusedView()); 815 View* view1 = new View(); local 816 view1->SetFocusable(true); 817 widget1.GetRootView()->AddChildView(view1); 824 focus_manager1->SetFocusedView(view1); [all...] |
/external/chromium_org/third_party/webrtc/test/manual/ |
multiple-video.html | 43 <td><video width="320" height="240" id="view1"
|
/external/chromium_org/ui/base/cocoa/ |
focus_tracker_unittest.mm | 39 // Give focus to |viewB_|, then try and restore it to view1.
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
AndroidTranslatorTest.java | 116 View view1 = new View(null); local 121 directlyOn(view1);
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Transitions.java | 76 setNewSize(R.id.view1, 150, 25);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceParticipantTest.java | 108 " - View view1 = findViewById(R.id.textView1);\n" + 109 " + View view1 = findViewById(R.id.output);\n" + 141 " - View view1 = findViewById(R.id.textView1);\n" + 142 " + View view1 = findViewById(R.id.output);\n" +
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
InfoBarLayout.java | 205 * standard infobar controls (icon, text, buttons). Depending on the available space, view1 and 211 public void setCustomContent(View view1, View view2) { 212 mCustomGroup = addGroup(view1, view2); 537 View view1 = mCustomGroup.views[1]; local 541 measureChildWithFixedWidth(view1, view1.getMeasuredWidth() + extraWidth1);
|