Searched refs:container (Results 201 - 225 of 280) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_view.cc312 const InfoBarContainer* infobar_container = container();
332 // Ensure that notifying our container of our size change will result in a
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jar ... .util.Iterator iterator java.util.Properties container protected java.lang.String[] getCommand (java.io ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jar ... final org.eclipse.ecf.core.IContainer container private final org.eclipse.ecf.core. ...
H A Dorg.eclipse.equinox.p2.ui.sdk_1.0.100.v20100513.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp1088 PassRefPtr<InspectorArray> InspectorDOMAgent::buildArrayForContainerChildren(Node* container, int depth, NodeToIdMap* nodesMap) argument
1091 Node* child = innerFirstChild(container);
1094 // Special-case the only text child - pretend that container's children have been requested.
1096 return buildArrayForContainerChildren(container, 1, nodesMap);
1101 m_childrenRequested.add(bind(container, nodesMap));
/external/webkit/Source/WebKit/chromium/src/
H A DFrameLoaderClientImpl.cpp1455 // The container takes ownership of the WebPlugin.
1456 RefPtr<WebPluginContainerImpl> container =
1459 if (!webPlugin->initialize(container.get()))
1466 return container;
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js4224 var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
4228 for ( prop in rules ) container.style[prop] = rules[prop];
4230 container.innerHTML = html;
4231 body.insertBefore(container, body.firstChild);
4232 innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;
4244 body.removeChild(container);
7422 container: null,
7444 var container = $(options.container);
7477 this.object = ((container)
[all...]
H A Dprototype-1.6.0.3.js1438 initialize: function($super, container, url, options) {
1439 this.container = {
1440 success: (container.success || container),
1441 failure: (container.failure || (container.success ? null : container))
1455 var receiver = this.container[this.success() ? 'success' : 'failure'],
1474 initialize: function($super, container, url, options) {
1482 this.container
[all...]
/external/dbus/dbus/
H A Ddbus-object-tree.c35 * @defgroup DBusObjectTree A hierarchy of objects with container-contained relationship
1218 /* Returns TRUE if container is a parent of child
1221 path_contains (const char **container, argument
1231 if (container[i] == NULL)
1232 return STR_PREFIX; /* container ran out, child continues;
1233 * thus the container is a parent of the
1237 _dbus_assert (container[i] != NULL);
1240 v = strcmp (container[i], child[i]);
1250 /* Child ran out; if container also did, they are equal;
1251 * otherwise, the child is a parent of the container
[all...]
/external/stlport/stlport/stl/
H A D_rope.c1361 _STLP_ASSERT(__first.container() == __middle.container() &&
1362 __middle.container() == __last.container())
1363 rope<_CharT,_Alloc>& __r(__first.container());
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2597 ObjCContainerDecl *container
2600 // Prevent the search from reaching this container again. This is
2603 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(container)) {
2604 searchFromContainer(container);
2608 searchFromContainer(container);
2617 void searchFromContainer(ObjCContainerDecl *container) { argument
2618 if (container->isInvalidDecl()) return;
2620 switch (container->getDeclKind()) {
2623 searchFrom(cast<type##Decl>(container)); \
2629 llvm_unreachable("not an ObjC container!");
2696 search(ObjCContainerDecl *container) argument
[all...]
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp1771 for (RenderObject* r = descendant; r; r = r->container()) {
1793 ASSERT(!m_layoutRoot->container() || !m_layoutRoot->container()->needsLayout());
1798 ASSERT(!m_layoutRoot->container() || !m_layoutRoot->container()->needsLayout());
1810 ASSERT(!m_layoutRoot->container() || !m_layoutRoot->container()->needsLayout());
/external/webkit/Source/WebCore/inspector/front-end/
H A Dinspector.css1315 .watch-expressions-buttons-container {
2076 .data-grid .data-container {
2087 .data-grid.inline .data-container {
2757 #resources-container {
2768 #resources-container.viewing-resource {
2774 #resources-container.viewing-resource #resources-sidebar {
2785 #resources-container-content {
2793 #resources-container.viewing-resource #resources-container-content {
3408 #resources-container
[all...]
H A DElementsTreeOutline.js193 // items extend at least to the right edge of the outer <ol> container.
194 // In the no-word-wrap mode the outer <ol> may be wider than the tree container
830 // a parent node. Use a temporary span container for the HTML.
831 var container = document.createElement("span");
832 container.innerHTML = this._attributeHTML(" ", "");
833 var attr = container.firstChild;
H A Dutilities.js153 return { container: this, offset: 0 };
154 return { container: node, offset: offset };
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1199 ContainerNode* container = shadowAncestorNode->parentNode(); local
1200 return Range::create(this, container, offset, container, offset);
3386 void Document::nodeChildrenChanged(ContainerNode* container) argument
3391 (*it)->nodeChildrenChanged(container);
3395 void Document::nodeChildrenWillBeRemoved(ContainerNode* container) argument
3400 (*it)->nodeChildrenWillBeRemoved(container);
3405 for (Node* n = container->firstChild(); n; n = n->nextSibling())
3410 for (Node* n = container->firstChild(); n; n = n->nextSibling()) {
H A DPosition.cpp486 // There is a VisiblePosition inside an empty inline-block container.
1011 RenderBlock* container = renderer->containingBlock(); local
1013 while ((next = next->nextInPreOrder(container))) {
/external/clang/tools/libclang/
H A DCIndexUSRs.cpp299 DeclContext *container = D->getDeclContext(); local
300 if (ObjCProtocolDecl *pd = dyn_cast<ObjCProtocolDecl>(container)) {
324 llvm_unreachable("Invalid ObjC container.");
/external/icu4c/tools/genrb/
H A Dwrtxml.cpp534 static char *printContainer(struct SResource *res, const char *container, const char *restype, const char *mimetype, const char *id, UErrorCode *status) argument
550 write_utf8_file(out, UnicodeString(container));
/external/libvorbis/doc/
H A Da1-encapsulation-ogg.tex43 time this document was written, Ogg was becoming a popular container
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp2592 RenderBlock* container = renderer->containingBlock();
2593 if (!(container->style()->overflowX() == OHIDDEN || container->style()->overflowY() == OHIDDEN))
2596 IntRect rectInPageCoords = container->overflowClipRect(0, 0);
2621 RenderBlock* container = renderer->containingBlock();
2622 if (!(container->style()->overflowX() == OHIDDEN || container->style()->overflowY() == OHIDDEN))
2625 IntRect rectInPageCoords = container->overflowClipRect(0, 0);
/external/clang/tools/c-index-test/
H A Dc-index-test.c1810 /* We have found a container */
2173 CXIdxClientContainer container; local
2174 container = clang_index_getClientContainer(info);
2175 if (!container)
2178 printf("[%s]", (const char *)container);
2378 printf(" | semantic-container: ");
2380 printf(" | lexical-container: ");
2461 printf(" | container: ");
2462 printCXIndexContainer(info->container);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp1086 static void webkit_web_view_container_add(GtkContainer* container, GtkWidget* widget) argument
1088 WebKitWebView* webView = WEBKIT_WEB_VIEW(container);
1092 gtk_widget_set_parent(widget, GTK_WIDGET(container));
1095 static void webkit_web_view_container_remove(GtkContainer* container, GtkWidget* widget) argument
1097 WebKitWebView* webView = WEBKIT_WEB_VIEW(container);
1106 static void webkit_web_view_container_forall(GtkContainer* container, gboolean, GtkCallback callback, gpointer callbackData) argument
1108 WebKitWebView* webView = WEBKIT_WEB_VIEW(container);
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp6439 static Container container; member in namespace:test140
6461 container.swap(tmp);
6462 // we are unpublishing the old container.
6463 ANNOTATE_UNPUBLISH_MEMORY_RANGE(&container, sizeof(container));
6464 // we are publishing the new container.
6465 ANNOTATE_PUBLISH_MEMORY_RANGE(&container, sizeof(container));
6469 // tmp (which is the old version of container) is destroyed here.
6474 container[
[all...]

Completed in 762 milliseconds

1234567891011>>