HomeSort by relevance Sort by last modified time
    Searched refs:container (Results 401 - 425 of 1514) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchDisambiguation.cpp 103 // Blacklist nodes that are container of disambiguated nodes.
114 for (RenderBlock* container = renderer->containingBlock(); container; container = container->containingBlock()) {
115 Node* containerNode = container->node();
FocusController.cpp 744 void FocusController::findFocusCandidateInContainer(Node* container, const LayoutRect& startingRect, FocusDirection direction, FocusCandidate& closest)
746 ASSERT(container);
749 Element* element = ElementTraversal::firstWithin(container);
756 ? ElementTraversal::nextSkippingChildren(element, container)
757 : ElementTraversal::next(element, container)) {
768 candidate.enclosingScrollableBox = container;
773 bool FocusController::advanceFocusDirectionallyInContainer(Node* container, const LayoutRect& startingRect, FocusDirection direction)
775 if (!container || !container->document())
781 newStartingRect = virtualRectForDirection(direction, nodeRectInAbsoluteCoordinates(container));
830 Node* container = focusCandidate.enclosingScrollableBox; local
853 Node* container = focusedDocument; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ObjectPopoverHelper.js 85 var container = document.createElement("div");
86 container.className = "inline-block";
88 var title = container.createChild("div", "function-popover-title source-code");
98 container.appendChild(popoverContentElement);
100 popover.show(container, anchorElement);
ShortcutsScreen.js 68 view.element.className = "settings-tab-container";
70 var scrollPane = view.element.createChild("div", "help-container-wrapper");
71 var container = scrollPane.createChild("div");
72 container.className = "help-content help-container";
74 orderedSections[i].renderSection(container);
143 * @param {!Element} container
145 renderSection: function(container)
147 var parent = container.createChild("div", "help-block");
View.js 277 var container = elements[i];
278 container._scrollTop = container.scrollTop;
279 container._scrollLeft = container.scrollLeft;
287 var container = elements[i];
288 if (container._scrollTop)
289 container.scrollTop = container._scrollTop;
290 if (container._scrollLeft
    [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
strings.c 39 xmlDocPtr container; local
72 container = xsltCreateRVT(tctxt);
73 if (container != NULL) {
74 xsltRegisterLocalRVT(tctxt, container);
83 node = xmlNewDocRawNode(container, NULL,
85 xmlAddChild((xmlNodePtr) container, node);
98 node = xmlNewDocRawNode(container, NULL,
100 xmlAddChild((xmlNodePtr) container, node);
109 node = xmlNewDocRawNode(container, NULL,
111 xmlAddChild((xmlNodePtr) container, node)
147 xmlDocPtr container; local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PointsActivity.java 43 LinearLayout container = new LinearLayout(this); local
44 container.setOrientation(LinearLayout.VERTICAL);
45 setContentView(container);
47 container.addView(slider);
56 container.addView(frame);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimations.java 40 * as items are removed from or added to a container.
45 ViewGroup container = null; field in class:LayoutAnimations
59 container = new FixedGridLayout(this);
60 container.setClipChildren(false);
61 ((FixedGridLayout)container).setCellHeight(90);
62 ((FixedGridLayout)container).setCellWidth(100);
64 container.setLayoutTransition(transitioner);
79 parent.addView(container);
88 container.removeView(v);
91 container.addView(newButton, Math.min(1, container.getChildCount()))
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
manage_profile_overlay.css 21 #create-profile-name-input-container,
22 #manage-profile-name-input-container {
75 .name-input-container {
80 .name-label-container {
84 .action-area-shortcut-container {
  /external/chromium_org/chrome/browser/resources/
policy.css 33 #status-box-container {
62 #show-unset-container {
67 html[dir='rtl'] #show-unset-container {
163 tbody:not(.has-overflowed-value) > tr.expanded-value-container,
164 tbody:not(.show-overflowed-value) > tr.expanded-value-container {
set_as_default_browser.css 5 /* The main (outer) container. */
6 #metro-setup-outer-container {
21 /* The page block within the outer container. */
22 #metro-setup-outer-container .page {
36 #metro-setup-outer-container .page .content-area {
50 #metro-title-container {
56 #metro-setup-outer-container .page h1 {
67 #metro-setup-outer-container .page h2 {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 275 void RenderLineBoxList::dirtyLinesFromChangedChild(RenderObject* container, RenderObject* child)
277 if (!container->parent() || (container->isRenderBlock() && (container->selfNeedsLayout() || !container->isBlockFlow())))
280 RenderInline* inlineContainer = container->isRenderInline() ? toRenderInline(container) : 0;
287 if (container->isInline() && !container->ancestorLineBoxDirty()) {
288 container->parent()->dirtyLinesFromChangedChild(container)
    [all...]
RenderTextControlSingleLine.cpp 128 HTMLElement* container = containerElement(); local
129 RenderBox* containerRenderer = container ? container->renderBox() : 0;
147 // The container might be taller because of decoration elements.
166 if (!container && innerTextRenderer && innerTextRenderer->height() != contentLogicalHeight()) {
222 HTMLElement* container = containerElement();
223 if (result.innerNode()->isDescendantOf(innerTextElement()) || result.innerNode() == node() || (container && container == result.innerNode())) {
225 if (container && innerBlockElement()) {
228 if (container->renderBox()
248 HTMLElement* container = containerElement(); local
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.cc 81 WebKit::WebPluginContainer* PepperWebPluginImpl::container() const { function in class:content::PepperWebPluginImpl
85 bool PepperWebPluginImpl::initialize(WebPluginContainer* container) {
88 init_data_->render_view.get(), container, init_data_->url);
93 container->allowScriptObjects();
105 if (!replacement_plugin || !replacement_plugin->initialize(container))
108 container->setPlugin(replacement_plugin);
113 container_ = container;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 90 public View onCreateView(LayoutInflater inflater, ViewGroup container,
263 View container = mMainView.findViewById(R.id.state_panel_container); local
265 if (container == null) {
267 container = activity.getMainStatePanelContainer(R.id.state_panel_container);
271 if (container == null) {
278 container.setVisibility(View.VISIBLE);
285 container.setVisibility(View.GONE);
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 121 private static ViewGroup getAppsCustomizePage(ViewGroup container, int index) {
122 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index);
137 final PagedView container = (PagedView) parent.getParent(); local
138 final TabHost tabHost = findTabHostParent(container);
142 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parent));
143 final int pageCount = container.getChildCount();
164 newParent = getAppsCustomizePage(container, pageIndex - 1);
181 newParent = getAppsCustomizePage(container, pageIndex + 1);
219 View.OnClickListener clickListener = (View.OnClickListener) container;
297 final PagedView container = (PagedView) parentLayout.getParent(); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 120 private static ViewGroup getAppsCustomizePage(ViewGroup container, int index) {
121 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index);
136 final PagedView container = (PagedView) parent.getParent(); local
137 final TabHost tabHost = findTabHostParent(container);
141 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parent));
142 final int pageCount = container.getChildCount();
163 newParent = getAppsCustomizePage(container, pageIndex - 1);
180 newParent = getAppsCustomizePage(container, pageIndex + 1);
218 View.OnClickListener clickListener = (View.OnClickListener) container;
296 final PagedView container = (PagedView) parentLayout.getParent(); local
    [all...]
  /development/samples/browseable/DoneBar/src/com.example.android.donebar/
MainActivity.java 60 public void onItemClick(AdapterView<?> container, View view, int position, long id) {
81 public View getView(int position, View convertView, ViewGroup container) {
84 container, false);
  /external/chromium_org/chrome/renderer/pepper/
pepper_extensions_common_host.cc 73 WebKit::WebPluginContainer* container = local
75 if (!container)
78 WebKit::WebFrame* frame = container->element().document().frame();
  /external/chromium_org/ui/views/controls/scrollbar/
scrollbar_unittest.cc 66 View* container = new View(); local
67 widget_->SetContentsView(container);
68 container->AddChildView(native_scrollbar_);
  /external/chromium_org/ui/views/examples/
multiline_example.cc 64 void MultilineExample::CreateExampleView(View* container) {
83 GridLayout* layout = new GridLayout(container);
84 container->SetLayoutManager(layout);
scroll_view_example.cc 57 void ScrollViewExample::CreateExampleView(View* container) {
69 GridLayout* layout = new GridLayout(container);
70 container->SetLayoutManager(layout);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractContainerTester.java 31 * @param <C> the type of the container
32 * @param <E> the type of the container's contents
39 protected C container; field in class:AbstractContainerTester
48 * @return the contents of the container under test, for use by
54 * Replaces the existing container under test with a new container created
59 * @return the new container instance.
66 * Replaces the existing container under test with a new container.
73 * @return the new container instanc
    [all...]
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HierarchicalMove.java 42 View container = (View) findViewById(R.id.container); local
43 mSceneRoot = (ViewGroup) container.getParent();
LoginActivityFromResources.java 39 View container = findViewById(R.id.container); local
40 mSceneRoot = (ViewGroup) container.getParent();

Completed in 2529 milliseconds

<<11121314151617181920>>