Searched refs:container (Results 151 - 175 of 280) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DContainerNode.cpp385 static void willRemoveChildren(ContainerNode* container) argument
387 container->document()->nodeChildrenWillBeRemoved(container);
388 container->document()->incDOMTreeVersion();
391 collectNodes(container, children);
511 // The container node can be removed from event handlers.
868 point = o->container()->localToAbsolute(point, false, true);
925 point = o->container()->localToAbsolute(point, false, true);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp82 static GtkWidget* container; variable
687 gtk_widget_size_allocate(container, &size);
1160 container = GTK_WIDGET(gtk_scrolled_window_new(NULL, NULL));
1161 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(container), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
1162 gtk_container_add(GTK_CONTAINER(window), container); local
1166 gtk_container_add(GTK_CONTAINER(container), GTK_WIDGET(webView));
1168 gtk_widget_show_all(container);
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js104 "-webkit-media-controls-timeline-container", "-webkit-media-controls-volume-slider",
105 "-webkit-media-controls-volume-slider-container", "-webkit-media-controls-current-time-display",
840 var container = document.createElement("div");
842 container.appendChild(element);
845 container.style.cssText = "z-index: 2000000; position: absolute; top: 50px; left: 50px; white-space: pre; overflow: auto; background: white; font-family: monospace; font-size: 12px; border: 1px solid black; opacity: 0.85; -webkit-user-select: text; padding: 2px;";
846 container.style.width = (document.body.offsetWidth - 100) + "px";
847 container.style.height = (document.body.offsetHeight - 100) + "px";
848 document.body.appendChild(container);
853 boundHandler = removeStyleBox.bind(null, container);
1246 var container
[all...]
H A DTextViewer.js626 this._container.className = "inner-container";
838 this._container.className = "inner-container";
1255 window.getSelection().setBaseAndExtent(start.container, start.offset, end.container, end.offset);
1258 for (var node = end.container; node; node = node.parentElement) {
1273 _selectionToPosition: function(container, offset)
1275 if (container === this._container && offset === 0)
1277 if (container === this._container && offset === 1)
1280 var lineRow = this._enclosingLineRowOrSelf(container);
1282 if (container
[all...]
H A Daudits.css94 .audit-launcher-view div.button-container {
104 .audit-launcher-view div.audit-categories-container {
/external/webkit/Source/WebCore/page/
H A DDOMSelection.cpp379 ContainerNode* container = shadowAncestor->parentNodeGuaranteedHostFree(); local
381 return Range::create(shadowAncestor->document(), container, offset, container, offset);
/external/webkit/Source/WebKit/android/jni/
H A DPicturePile.cpp262 PictureContainer container(inval);
264 container.prerendered = PrerenderedInval::create(originalInval.isEmpty()
267 m_pile.append(container);
/external/webkit/Source/WebKit/wx/
H A DWebFrame.cpp78 wxWebFrame::wxWebFrame(wxWebView* container, wxWebFrame* parent, WebViewFrameData* data) : argument
93 RefPtr<WebCore::Frame> newFrame = WebCore::Frame::create(container->m_impl->page, parentFrame, loaderClient);
105 loaderClient->setWebView(container);
H A DWebFrame.h109 wxWebFrame(wxWebView* container, wxWebFrame* parent = NULL, WebViewFrameData* data = NULL);
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_expanded_container_unittest.cc103 // than the container's origin.
120 static void OnChildSizeRequest(GtkExpandedContainer* container, argument
H A Dgtk_util.cc68 void RemoveWidget(GtkWidget* widget, gpointer container) { argument
69 gtk_container_remove(GTK_CONTAINER(container), widget);
136 // Expose event handler for a container that simply suppresses the default
137 // drawing and propagates the expose event to the container's children.
240 // use a container border, since it won't paint there. Use an alignment
452 void RemoveAllChildren(GtkWidget* container) { argument
453 gtk_container_foreach(GTK_CONTAINER(container), RemoveWidget, container); local
880 void SuppressDefaultPainting(GtkWidget* container) { argument
881 g_signal_connect(container, "expos
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dbase_tab.h63 // Sets the container all animations run from.
64 void set_animation_container(ui::AnimationContainer* container);
/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc1156 map<int, char> container; local
1157 container.insert(make_pair(1, 'a'));
1158 container.insert(make_pair(2, 'b'));
1159 container.insert(make_pair(4, 'c'));
1160 EXPECT_THAT(container, Contains(Key(1)));
1161 EXPECT_THAT(container, Not(Contains(Key(3))));
1165 multimap<int, char> container; local
1166 container.insert(make_pair(1, 'a'));
1167 container.insert(make_pair(2, 'b'));
1168 container
1274 map<int, char> container; local
[all...]
/external/webkit/Source/WebCore/css/
H A DmediaControls.css77 audio::-webkit-media-controls-timeline-container, video::-webkit-media-controls-timeline-container {
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGResources.cpp50 // "container elements": http://www.w3.org/TR/SVG11/intro.html#TermContainerElement
164 RenderSVGResourceContainer* container = getRenderSVGResourceContainerById(document, id); local
165 if (!container) {
170 RenderSVGResourceType resourceType = container->resourceType();
174 return container;
H A DSVGRenderSupport.cpp163 void SVGRenderSupport::computeContainerBoundingBoxes(const RenderObject* container, FloatRect& objectBoundingBox, FloatRect& strokeBoundingBox, FloatRect& repaintBoundingBox) argument
165 for (RenderObject* current = container->firstChild(); current; current = current->nextSibling()) {
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dnewtab.css61 * float:left and have a .app-container:first-child { clear:both; } rule,
66 .app-container {
/external/mesa3d/src/glsl/
H A Dlist.h26 * \brief Doubly-linked list abstract container type.
281 #define foreach_iter(iter_type, iter, container) \
282 for (iter_type iter = (container) . iterator(); iter.has_next(); iter.next())
/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.cpp627 PassRefPtr<Node> CompositeEditCommand::appendBlockPlaceholder(PassRefPtr<Element> container) argument
629 if (!container)
633 ASSERT(container->renderer());
636 appendNode(placeholder, container);
653 PassRefPtr<Node> CompositeEditCommand::addBlockPlaceholderIfNeeded(Element* container) argument
655 if (!container)
660 RenderObject* renderer = container->renderer();
668 return appendBlockPlaceholder(container);
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebViewWidget.cpp104 static void webViewWidgetContainerAdd(GtkContainer* container, GtkWidget* widget) argument
106 gtk_widget_set_parent(widget, GTK_WIDGET(container));
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DEnvironmentCheck.java403 * @param container Node to append our report to
409 public void appendEnvironmentReport(Node container, Document factory, Hashtable h) argument
411 if ((null == container) || (null == factory))
420 container.appendChild(envCheckNode);
496 * @param container Node to append our report to
505 protected boolean appendFoundJars(Node container, Document factory, argument
535 container.appendChild(node);
542 container.appendChild(node);
/external/chromium/chrome/browser/chromeos/notifications/
H A Dnotification_panel.cc293 View* container = NULL; local
295 container = sticky_container_;
297 container = non_sticky_container_;
299 if (container) {
300 container->RemoveChildView(view);
301 container->AddChildView(view);
388 // deleted when this container is deleted.
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.cc61 ExternalTabPageInfoBubbleView(ExternalTabContainer* container, argument
68 container_(container) {
302 ExternalTabContainer* container = reinterpret_cast<ExternalTabContainer*>( local
304 return container;
406 // Reuse the same tab handle here as the new container instance is a dummy
903 scoped_refptr<ExternalTabContainer> container = (*index).second; local
905 return container;
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp1088 // Create a dummy container object to track the page in DRT.
1090 // showing the main view when deleting the container.
1092 QObject* container = new QObject(m_mainView);
1094 QWebPage* page = static_cast<QWebPage*>(new WebPage(container, this));
1096 windows.append(container);
1114 QObject* container = page->parent(); local
1115 windows.removeAll(container);
1116 container->deleteLater();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... .eclipse.debug.core.sourcelookup.ISourceContainer container org.eclipse.jdt.launching.sourcelookup. ...

Completed in 354 milliseconds

1234567891011>>