HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 76 - 100 of 167) sorted by null

1 2 34 5 6 7

  /external/chromium_org/content/browser/accessibility/
browser_accessibility.h 83 // Return true if this object is equal to or a descendant of |ancestor|.
84 bool IsDescendantOf(BrowserAccessibility* ancestor);
  /external/chromium_org/third_party/libxml/src/include/libxml/
xpath.h 382 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /external/libxml2/include/libxml/
xpath.h 383 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 890 for (ContainerNode* ancestor = node->parentOrShadowHostNode(); ancestor; ancestor = ancestor->parentOrShadowHostNode())
891 ancestors.append(ancestor);
896 Node* ancestor = ancestors[i - 1]; local
897 EventTargetData* d = ancestor->eventTargetData();
904 const EventListenerVector& listeners = ancestor->getEventListeners(type);
912 eventInformation.append(EventListenerInfo(ancestor, type, filteredListeners));
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_common.cc 124 // ancestor and descendant. These transforms must be 2D translations, and this
168 // clip_parent, it may not inherit its immediate ancestor's clip.
174 // If the layer has no clip_parent, or the ancestor is the same as its actual
206 // our common ancestor. This happens to be our parent, so it is sufficent to
207 // translate from our clip parent's space to the space of its ancestor (our
320 // either the clip parent is not an ancestor of the clip child or the surface
671 // specified in some ancestor layer's coordinate.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 476 // case 2: node C (container B or an ancestor) is a child node of A
494 // case 3: node C (container A or an ancestor) is a child node of B
883 RefPtr<Node> ancestor = *it; local
    [all...]
Document.cpp 5050 RenderObject* ancestor = nearestCommonHoverAncestor(oldHoverObj, newHoverObj); local
    [all...]
  /external/chromium_org/content/renderer/accessibility/
accessibility_node_serializer.cc 36 // Returns true if |ancestor| is the first unignored parent of |child|,
38 // |ancestor| is the *first* ancestor that isn't marked as
40 bool IsParentUnignoredOf(const WebAXObject& ancestor,
45 return parent.equals(ancestor);
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 224 if (Node* ancestor = node->parentOrShadowHostNode())
225 return ancestor;
241 // responder or have an ancestor that is a responder.
248 // Check if we already have a result for a common ancestor from another candidate.
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 793 aura::Window* ancestor = NULL;
797 ancestor = parent;
801 if (ancestor)
802 UpdateStacking(ancestor);
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
search.js 367 * Get the ancestor of node that is a result.
369 * @return {Node} Result ancestor.
  /external/chromium_org/ui/aura/
window.h 431 // relative to the nearest ancestor with a layer.
438 // |parent| as well as updating bounds of windows with a layerless ancestor.
448 // Returns true when |ancestor| is a transient ancestor of |this|.
449 bool HasTransientAncestor(const Window* ancestor) const;
534 // Returns the first ancestor (starting at |this|) with a layer. |offset| is
535 // set to the offset from |this| to the first ancestor with a layer. |offset|
545 // of the Layer are relative to the first ancestor with a Layer, where as this
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
treeoutline.js 307 // Walk down to populate each ancestor's children, to fill in the tree and the cache.
765 TreeElement.prototype.hasAncestor = function(ancestor) {
766 if (!ancestor)
771 if (ancestor === currentNode)
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 761 * @param ancestor
762 * the ancestor object to look for.
763 * @return true if the ancestor is found, false otherwise.
765 public boolean hasAncestor(Node ancestor) {
768 } else if (parent.equals(ancestor)) {
771 return parent.hasAncestor(ancestor);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js 125 var ancestor = this.superclass && this.superclass.prototype,
137 if (ancestor && Object.isFunction(value) &&
141 return function() { return ancestor[m].apply(this, arguments); };
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerCompositor.cpp 1963 RenderLayer* ancestor = layer->parent(); local
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/ui/webui/resources/js/
util.js 152 * Return the first ancestor for which the {@code predicate} returns true.
156 * @return {Node} The found ancestor or null if not found.
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 2768 Logger ancestor = new MockParentLogger("ancestorLogger", local
2889 Logger ancestor = new MockLogger("ancestorLogger", local
2961 Logger ancestor = new MockLogger("ancestorLogger", local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 79 var ancestor = this.superclass && this.superclass.prototype;
87 if (ancestor && Object.isFunction(value) &&
91 return function() { return ancestor[m].apply(this, arguments) };
    [all...]

Completed in 1757 milliseconds

1 2 34 5 6 7