Searched defs:containerView (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_actions_controller.h66 @property(readonly, nonatomic) BrowserActionsContainerView* containerView; variable
71 containerView:(BrowserActionsContainerView*)container;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPdfExporter.java37 AwPdfExporter(ViewGroup containerView) { argument
38 setContainerView(containerView);
41 public void setContainerView(ViewGroup containerView) { argument
42 mContainerView = containerView;
H A DAwWebContentsDelegateAdapter.java38 View containerView, Context context) {
40 setContainerView(containerView);
44 public void setContainerView(View containerView) { argument
45 mContainerView = containerView;
37 AwWebContentsDelegateAdapter(AwContentsClient contentsClient, View containerView, Context context) argument
H A DNullAwViewMethods.java31 View containerView) {
34 mContainerView = containerView;
44 // When the containerView is using the NullAwViewMethods then it is not
29 NullAwViewMethods( AwContents awContents, InternalAccessDelegate internalAccessAdapter, View containerView) argument
H A DAwContents.java154 * |containerView| is the view where the AwContents should be drawn.
159 boolean requestDrawGL(Canvas canvas, boolean waitForCompletion, View containerView); argument
544 * @param containerView the view-hierarchy item this object will be bound to.
545 * @param context the context to use, usually containerView.getContext().
546 * @param internalAccessAdapter to access private methods on containerView.
553 public AwContents(AwBrowserContext browserContext, ViewGroup containerView, Context context, argument
556 this(browserContext, containerView, context, internalAccessAdapter, nativeGLDelegate,
567 public AwContents(AwBrowserContext browserContext, ViewGroup containerView, Context context, argument
572 mContainerView = containerView;
624 private static ContentViewCore createAndInitializeContentViewCore(ViewGroup containerView, argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentManagerTest.java36 private ViewGroup containerView; field in class:FragmentManagerTest
44 containerView = (ViewGroup) activity.findViewById(CONTAINER_VIEW_ID);
112 assertThat(fragmentViewParent, sameInstance((View) containerView));
117 containerView.addView(new Button(activity));
118 assertEquals(1, containerView.getChildCount());
122 assertEquals(1, containerView.getChildCount());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPopupWindow.java29 private LinearLayout containerView; field in class:ShadowPopupWindow
123 getWindowManager().removeView(containerView);
145 containerView = new LinearLayout(context);
146 containerView.addView(contentView);
147 containerView.setBackgroundDrawable(background);
148 getWindowManager().addView(containerView, null);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwSettingsTest.java69 AwSettingsTestHelper(AwTestContainerView containerView, argument
72 mAwContents = containerView.getAwContents();
73 mContext = containerView.getContext();
150 AwSettingsJavaScriptTestHelper(AwTestContainerView containerView, argument
152 super(containerView, contentViewClient, false);
194 AwTestContainerView containerView,
196 super(containerView, contentViewClient);
218 AwSettingsPluginsTestHelper(AwTestContainerView containerView, argument
220 super(containerView, contentViewClient, true);
259 AwTestContainerView containerView,
193 AwSettingsJavaScriptDynamicTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
258 AwSettingsStandardFontFamilyTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
298 AwSettingsDefaultFontSizeTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
340 AwSettingsLoadImagesAutomaticallyTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, ImagePageGenerator generator) argument
381 AwSettingsImagesEnabledHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, TestWebServer webServer, ImagePageGenerator generator) argument
429 AwSettingsDefaultTextEncodingTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
471 AwSettingsUserAgentStringTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
522 AwSettingsDomStorageEnabledTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
565 AwSettingsDatabaseTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
609 AwSettingsUniversalAccessFromFilesTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
662 AwSettingsFileAccessFromFilesIframeTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
712 AwSettingsFileAccessFromFilesXhrTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
758 AwSettingsFileUrlAccessTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, int startIndex) argument
805 AwSettingsContentUrlAccessTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, int index) argument
855 AwSettingsContentUrlAccessFromFileTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, int index) argument
917 AwSettingsTextAutosizingTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
988 AwSettingsLayoutAlgorithmTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
1034 AwSettingsTextZoomTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
1082 AwSettingsTextZoomAutosizingTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
1132 AwSettingsJavaScriptPopupsTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
1189 AwSettingsCacheModeTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, int index, TestWebServer webServer) argument
1247 AwSettingsUseWideViewportTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
1295 AwSettingsLoadWithOverviewModeTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, boolean withViewPortTag) argument
1360 AwSettingsForceZeroLayoutHeightTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient, boolean withViewPortTag) argument
1421 AwSettingsZeroLayoutHeightDisablesViewportQuirkTestHelper( AwTestContainerView containerView, TestAwContentsClient contentViewClient) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java591 * @param containerView The view that will act as a container for all views created by this.
593 * containerView.
606 public void initialize(ViewGroup containerView, InternalAccessDelegate internalDispatcher, argument
608 setContainerView(containerView);
670 public void setContainerView(ViewGroup containerView) { argument
678 mContainerView = containerView;
702 * containerView.
2077 * Hides the IME if the containerView is the active view for IME.
2083 // containerView may have lost focus.

Completed in 268 milliseconds