HomeSort by relevance Sort by last modified time
    Searched refs:contentView (Results 26 - 50 of 74) sorted by null

12 3

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
SelectPopupDialog.java 202 * Shows the popup menu triggered by the passed ContentView.
221 * Hides the showing popup menu if any it was triggered by the passed ContentView. If
222 * contentView is null, hides it regardless of which ContentView triggered it.
223 * @param contentView
225 public static void hide(ContentViewCore contentView) {
227 (contentView == null || sShownDialog.mContentViewCore == contentView)) {
228 if (contentView != null) contentView.selectPopupMenuItems(null)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewRenderView.java 17 * This view is used by a ContentView to render its content.
18 * Call {@link #setCurrentContentView(ContentView)} with the contentView that should be displayed.
19 * Note that only one ContentView can be shown at a time.
31 private ContentView mCurrentContentView;
138 * Makes the passed ContentView the one displayed by this ContentViewRenderView.
140 public void setCurrentContentView(ContentView contentView) {
142 ContentViewCore contentViewCore = contentView.getContentViewCore();
146 mCurrentContentView = contentView;
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
TabsAdapter.java 154 final View contentView = mTabs.get(position).view;
155 if (contentView instanceof CaffeinatedScrollView) {
156 ((CaffeinatedScrollView) contentView).awakenScrollBars();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtEnablingActivity.java 96 TextView contentView = (TextView)view.findViewById(R.id.progress_info);
97 contentView.setText(getString(R.string.enabling_progress_content));
  /external/chromium/chrome/browser/ui/cocoa/
fullscreen_controller.h 87 - (void)enterFullscreenForContentView:(NSView*)contentView
cocoa_test_helper.h 114 EXPECT_EQ([test_window() contentView], [view superview]); \
  /external/chromium_org/chrome/browser/ui/cocoa/
presentation_mode_controller.h 88 - (void)enterPresentationModeForContentView:(NSView*)contentView
  /frameworks/base/core/java/android/preference/
DialogPreference.java 287 View contentView = onCreateDialogView();
288 if (contentView != null) {
289 onBindDialogView(contentView);
290 mBuilder.setView(contentView);
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 69 LinearLayout contentView = new LinearLayout(this);
70 contentView.setOrientation(LinearLayout.VERTICAL);
71 setContentView(contentView);
84 contentView.addView(webView, new LayoutParams(
  /frameworks/support/v4/honeycomb/android/support/v4/app/
NotificationCompatHoneycomb.java 33 .setContent(n.contentView)
  /frameworks/support/v4/ics/android/support/v4/app/
NotificationCompatIceCreamSandwich.java 34 .setContent(n.contentView)
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 88 TextView contentView = new TextView(mActivity);
89 mPopupWindow = new PopupWindow(contentView);
90 assertSame(contentView, mPopupWindow.getContentView());
92 mPopupWindow = new PopupWindow(contentView, 0, 0);
95 assertSame(contentView, mPopupWindow.getContentView());
97 mPopupWindow = new PopupWindow(contentView, 50, 50);
100 assertSame(contentView, mPopupWindow.getContentView());
102 mPopupWindow = new PopupWindow(contentView, -1, -1);
105 assertSame(contentView, mPopupWindow.getContentView());
107 mPopupWindow = new PopupWindow(contentView, 0, 0, true)
    [all...]
  /external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
ContentShellTestBase.java 14 import org.chromium.content.browser.ContentView;
99 * Returns the current ContentView.
101 protected ContentView getContentView() {
106 * Returns the current ContentViewCore or null if there is no ContentView.
157 * @param contentView The content view to load the URL in.
162 final ContentView contentView, TestCallbackHelperContainer callbackHelperContainer,
169 contentView.loadUrl(params);
  /external/chromium_org/ui/base/test/
ui_cocoa_test_helper.h 112 EXPECT_EQ([test_window() contentView], [view superview]); \
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
BaseStatusBar.java 363 if (sbn.getNotification().contentView.getLayoutId() !=
622 RemoteViews contentView = sbn.getNotification().contentView;
624 if (contentView == null) {
662 contentViewLocal = contentView.apply(mContext, adaptive, mOnClickHandler);
    [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 121 n.contentView = new RemoteViews(getPackageName(), R.layout.button_notification);
124 n.contentView.setOnClickPendingIntent(R.id.button, makeIntent2());
136 n.contentView.setOnClickPendingIntent(com.android.internal.R.id.text,
233 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
244 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
258 n.contentView.setInt(1 /*bogus*/, "bogus method", 666);
334 n.contentView = v;
644 n.contentView = new RemoteViews(getPackageName(), R.layout.chrono_notification);
646 n.contentView.setChronometer(R.id.time, mChronometerBase, "Yay! (%s)", true);
660 n.contentView = new RemoteViews(getPackageName()
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 248 * <tt>contentView</tt>. The dimension of the window are (0,0).</p>
253 * @param contentView the popup's content
255 public PopupWindow(View contentView) {
256 this(contentView, 0, 0);
275 * <tt>contentView</tt>. The dimension of the window must be passed to
281 * @param contentView the popup's content
285 public PopupWindow(View contentView, int width, int height) {
286 this(contentView, width, height, false);
290 * <p>Create a new popup window which can display the <tt>contentView</tt>.
296 * @param contentView the popup's conten
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java 372 View contentView = shadowOf(activity).getContentView();
373 assertInstanceOf(FrameLayout.class, contentView);
374 assertThat(((FrameLayout) contentView).getChildCount(), equalTo(2));
411 View contentView = new View(activity);
412 activity.setContentView(contentView);
415 assertThat(contentViewContainer.getChildAt(0), is(contentView));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsHorizontalScrollView.java 206 View contentView = getChildContentView(v);
207 contentView.setAlpha(1f);
208 contentView.setTranslationY(0);
RecentsVerticalScrollView.java 214 View contentView = getChildContentView(v);
215 contentView.setAlpha(1f);
216 contentView.setTranslationX(0);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeEngineMac.mm 166 [[[FakeActiveWindow alwaysInactiveWindow] contentView] addSubview:scroller];
168 [[[FakeActiveWindow alwaysActiveWindow] contentView] addSubview:scroller];
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
JellyBeanAccessibilityInjector.java 178 * @param contentView The ContentViewCore to perform the action on.
182 private boolean performAction(ContentViewCore contentView, String code) {
186 contentView.evaluateJavaScript(js, null);
  /frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 37 .setContent(n.contentView)
  /external/chromium/chrome/browser/resources/net_internals/
detailsview.js 43 this.tabs_[i].contentView.setData(sortedCurrentData);
  /packages/apps/Browser/src/com/android/browser/
TitleBar.java 65 FrameLayout contentView) {
69 mContentView = contentView;

Completed in 1884 milliseconds

12 3