Home
last modified time | relevance | path

Searched refs:containerA (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/dom/
DRange.h62 static Node* commonAncestorContainer(Node* containerA, Node* containerB);
72 …static short compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, E…
DRange.cpp174 Node* Range::commonAncestorContainer(Node* containerA, Node* containerB) in commonAncestorContainer() argument
176 for (Node* parentA = containerA; parentA; parentA = parentA->parentNode()) { in commonAncestorContainer()
458 short Range::compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, Ex… in compareBoundaryPoints() argument
460 ASSERT(containerA); in compareBoundaryPoints()
463 if (!containerA) in compareBoundaryPoints()
471 if (containerA == containerB) { in compareBoundaryPoints()
482 while (c && c->parentNode() != containerA) in compareBoundaryPoints()
486 Node* n = containerA->firstChild(); in compareBoundaryPoints()
499 c = containerA; in compareBoundaryPoints()
518 Node* commonAncestor = commonAncestorContainer(containerA, containerB); in compareBoundaryPoints()
[all …]
/external/webkit/Source/WebCore/
DChangeLog16879 …no common ancestors between containerA and containerB. This will force compareNode to also throw a…
DChangeLog-2009-06-1634796 ASSERTION FAILED: containerA && containerB