/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/ |
CompositedLayerMapping.h | 89 // Layer to get clipped by ancestor 120 // paints into some ancestor layer. 123 // Updates whether a backing store is needed based on the layer's compositing ancestor's 124 // properties; returns true if the need for a backing store for ancestor reasons changed. 204 // If there is a squashed layer painting into this CLM that is an ancestor of the given RenderObject, return it. Otherwise return 0. 295 // same squashing layer and contains this squashed layer's clipping ancestor. 301 // Return true if |m_owningLayer|'s compositing ancestor is not a descendant (inclusive) of the 321 // We need an ancestor clipping layer if our clipping ancestor is not our ancestor in th [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGForeignObjectElement.cpp | 129 Element* ancestor = parentElement(); local 130 while (ancestor && ancestor->isSVGElement()) { 131 if (ancestor->renderer() && ancestor->renderer()->isSVGHiddenContainer()) 134 ancestor = ancestor->parentElement();
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
NSInfo.java | 61 * ancestor has XMLNS attributes. 99 /** Flag indicating whether one of this node's ancestor has an XMLNS attribute */ 105 /** Constant indicating an ancestor has an XMLNS attribute */
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
TreeScopeTest.cpp | 31 // | : Common ancestor is document. 46 // / \ : Common ancestor is document. 67 // / \ : Common ancestor is document.
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
context_menu_button.js | 14 * Helper function for ContextMenuButton to find the first ancestor of the 28 * ancestor that has a {@code contextMenu} property. 39 * Override to return the contextMenu for the ancestor.
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
PageConsoleAgent.cpp | 96 Node& ancestor = NodeTraversal::highestAncestorOrSelf(*node); local 97 if (!ancestor.isShadowRoot() || toShadowRoot(ancestor).type() == ShadowRoot::AuthorShadowRoot) 100 node = toShadowRoot(ancestor).host();
|
/external/libvpx/libvpx/third_party/nestegg/ |
0002-ne_read_simple-uninitialized_variable.diff | 12 storage = (struct ebml_type *) (ctx->ancestor->data + desc->offset);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/ |
0002-ne_read_simple-uninitialized_variable.diff | 12 storage = (struct ebml_type *) (ctx->ancestor->data + desc->offset);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
view_id_util.h | 49 // Returns the ancestor view with a specific ViewID, or nil if no ancestor
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
nested-plug-ins.html | 21 non-displaying ancestor, and that making an ancestor visible and displaying shows only its descendants the are visible and displaying.
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
fullscreen.css | 6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full-screen-ancestor { 10 :-webkit-full-screen-ancestor:not(iframe) {
|
SelectorFilter.cpp | 95 for (Element* ancestor = &parent; ancestor; ancestor = ancestor->parentOrShadowHostElement()) 96 ancestors.append(ancestor);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 59 #define ANCESTOR(i) (data[(i) + 1 * count]) 69 INFO("ANCESTOR(%i) = %i\n", i, ANCESTOR(i)); 88 SEMI(i) = ANCESTOR(i) = -1; 111 if (ANCESTOR(ANCESTOR(v)) >= 0) { 112 squash(ANCESTOR(v)); 114 if (SEMI(LABEL(ANCESTOR(v))) < SEMI(LABEL(v))) 115 LABEL(v) = LABEL(ANCESTOR(v)); 116 ANCESTOR(v) = ANCESTOR(ANCESTOR(v)) [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 59 #define ANCESTOR(i) (data[(i) + 1 * count]) 69 INFO("ANCESTOR(%i) = %i\n", i, ANCESTOR(i)); 88 SEMI(i) = ANCESTOR(i) = -1; 111 if (ANCESTOR(ANCESTOR(v)) >= 0) { 112 squash(ANCESTOR(v)); 114 if (SEMI(LABEL(ANCESTOR(v))) < SEMI(LABEL(v))) 115 LABEL(v) = LABEL(ANCESTOR(v)); 116 ANCESTOR(v) = ANCESTOR(ANCESTOR(v)) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
AbstractMultimap.java | 376 @Nullable K key, List<V> list, @Nullable WrappedCollection ancestor) { 378 ? new RandomAccessWrappedList(key, list, ancestor) 379 : new WrappedList(key, list, ancestor); 387 * <p>Full collections, identified by a null ancestor field, contain all 394 * given key. Its ancestor field points to the full wrapped collection with 402 final WrappedCollection ancestor; field in class:AbstractMultimap.WrappedCollection 406 @Nullable WrappedCollection ancestor) { 409 this.ancestor = ancestor; 411 = (ancestor == null) ? null : ancestor.getDelegate() [all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_manager_android.cc | 414 BrowserAccessibilityAndroid* ancestor = 416 while (ancestor) { 417 if (ancestor->PlatformIsLeaf() || 418 (ancestor->IsFocusable() && !ancestor->HasFocusableChild())) { 419 node = ancestor; 420 // Don't break - we want the highest ancestor that's focusable or a 423 ancestor = static_cast<BrowserAccessibilityAndroid*>(ancestor->GetParent());
|
/external/chromium_org/chrome/browser/sync_file_system/ |
fake_remote_change_processor.cc | 72 base::FilePath ancestor = storage::VirtualPath::DirName(url.path()); local 75 CreateSyncableFileSystemURL(url.origin(), ancestor); 90 base::FilePath ancestor_parent = storage::VirtualPath::DirName(ancestor); 91 if (ancestor == ancestor_parent) 93 ancestor = ancestor_parent;
|
/external/chromium_org/third_party/WebKit/Source/core/html/imports/ |
HTMLImportsController.cpp | 83 for (HTMLImport* ancestor = parent; ancestor; ancestor = ancestor->parent()) { 84 if (!ancestor->isRoot() && equalIgnoringFragmentIdentifier(toHTMLImportChild(parent)->url(), url))
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
CompositingReasons.cpp | 48 "Scroll parent is not an ancestor" }, 51 "Has clipping ancestor" }, 78 "Cannot be squashed because this layer has a different opacity ancestor than the squashing layer" }, 81 "Cannot be squashed because this layer has a different transform ancestor than the squashing layer" }, 84 "Cannot be squashed because this layer has a different filter ancestor than the squashing layer, or this layer has a filter" },
|
/external/libvpx/libvpx/third_party/nestegg/src/ |
nestegg.c | 283 struct list_node * ancestor; member in struct:saved_state 303 struct list_node * ancestor; member in struct:nestegg 787 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor) 791 for (; ancestor; ancestor = ancestor->previous) 792 for (element = ancestor->node; element->id; ++element) 812 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data) 817 item->previous = ctx->ancestor; 818 item->node = ancestor; [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/ |
nestegg.c | 283 struct list_node * ancestor; member in struct:saved_state 303 struct list_node * ancestor; member in struct:nestegg 787 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor) 791 for (; ancestor; ancestor = ancestor->previous) 792 for (element = ancestor->node; element->id; ++element) 812 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data) 817 item->previous = ctx->ancestor; 818 item->node = ancestor; [all...] |
/external/chromium_org/ui/accessibility/ |
ax_node.h | 55 // Return true if this object is equal to or a descendant of |ancestor|. 56 bool IsDescendantOf(AXNode* ancestor);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
markup.cpp | 413 ContainerNode* ancestor = ancestorsToClose.last(); local 414 ASSERT(ancestor); 415 if (next != pastEnd && next->isDescendantOf(ancestor)) 418 if (shouldEmit && ancestor->isElementNode()) 419 appendEndTag(toElement(*ancestor)); 420 lastClosed = ancestor; 529 ContainerNode* ancestor = parentListNode->parentNode(); local 530 while (ancestor && !isHTMLListElement(ancestor)) 531 ancestor = ancestor->parentNode() [all...] |
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_drag_drop_views.h | 46 // |data| are an ancestor of |drop_parent| and one of the nodes isn't already
|
/external/chromium_org/media/tools/layout_tests/testname/ |
media.csv | 5 compositing/overflow/scroll-ancestor-update.html,
|