HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 51 - 75 of 126) sorted by null

1 23 4 5 6

  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodereplacechildnodeancestor.js 83 one of its children with an ancestor node(root node).
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodeappendchildnodeancestor.js 83 an ancestor node(root node) to it.
hc_nodereplacechildnodeancestor.js 83 one of its children with an ancestor node(root node).
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild26.js 79 node that is an ancestor of this Element node and verify if a HIERARCHY_REQUEST_ERR gets thrown.
typeinfoisderivedfrom63.js 79 The isDerivedFrom method checks if this TypeInfo derives from the specified ancestor type.
typeinfoisderivedfrom65.js 79 The isDerivedFrom method checks if this TypeInfo derives from the specified ancestor type.
typeinfoisderivedfrom66.js 81 The isDerivedFrom method checks if this TypeInfo derives from the specified ancestor type.
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 93 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const
96 if (curr == ancestor)
  /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/webkit/Source/WebCore/dom/
Range.cpp 480 // case 2: node C (container B or an ancestor) is a child node of A
498 // case 3: node C (container A or an ancestor) is a child node of B
869 RefPtr<Node> ancestor = *it; local
871 if (RefPtr<Node> clonedAncestor = ancestor->cloneNode(false)) { // Might have been removed already during mutation event.
877 // Copy siblings of an ancestor of start/end containers
880 ASSERT(!firstChildInAncestorToProcess || firstChildInAncestorToProcess->parentNode() == ancestor);
891 ancestor->removeChild(child, ec);
893 case EXTRACT_CONTENTS: // will remove child from ancestor
907 firstChildInAncestorToProcess = direction == ProcessContentsForward ? ancestor->nextSibling() : ancestor->previousSibling()
    [all...]
  /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/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 323 // ancestor exists in the tree.
770 TreeElement.prototype.hasAncestor = function(ancestor) {
771 if (!ancestor)
776 if (ancestor === currentNode)
utilities.js 545 function isAncestorNode(ancestor, node)
547 if (!node || !ancestor)
552 if (ancestor === currentNode)
  /external/webkit/Source/WebCore/rendering/
InlineFlowBox.cpp 255 static inline bool isLastChildForRenderer(RenderObject* ancestor, RenderObject* child)
260 if (child == ancestor)
268 if (parent == ancestor)
278 static bool isAnsectorAndWithinBlock(RenderObject* ancestor, RenderObject* child)
282 if (object == ancestor)
    [all...]
  /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/webkit/Source/WebKit/win/
WebFrame.h 226 /* [in] */ IWebFrame *ancestor,
  /external/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...]
  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.cpp 86 Node* ancestor = ancestors[i].node(); local
87 if (ancestor->hasEventListeners(eventType))
    [all...]
  /system/media/camera/docs/
metadata_model.py 101 Find the first ancestor that matches the predicate.
107 The first ancestor closest to the node for which pred(node) is true.
313 for ancestor in p.find_parents(lambda x: not isinstance(x, MetadataSet)):
314 ancestor._leafs.remove(p)
700 A node corresponding to a <namespace> which is an ancestor of a Kind.
806 ancestor Kind#name
1068 kind: a string of the Kind ancestor, one of 'static', 'controls', 'dynamic'
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 134 """Walk upwards looking for ancestor with this token type."""
139 """Walk upwards and get first ancestor with this token type."""
890 """Walk upwards looking for ancestor with this token type."""
894 """Walk upwards and get first ancestor with this token type."""
    [all...]
  /external/libusb_aah/libusb/os/
windows_usb.c 515 * Returns the session ID of a device's nth level ancestor
1181 unsigned int nb_guids, pass, i, j, ancestor; local
    [all...]

Completed in 1930 milliseconds

1 23 4 5 6