Home
last modified time | relevance | path

Searched refs:containerB (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
177 for (Node* parentB = containerB; parentB; parentB = parentB->parentNode()) { in commonAncestorContainer()
458 short Range::compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, Ex… in compareBoundaryPoints() argument
461 ASSERT(containerB); in compareBoundaryPoints()
465 if (!containerB) in compareBoundaryPoints()
471 if (containerA == containerB) { in compareBoundaryPoints()
481 Node* c = containerB; in compareBoundaryPoints()
500 while (c && c->parentNode() != containerB) in compareBoundaryPoints()
504 Node* n = containerB->firstChild(); 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