Home
last modified time | relevance | path

Searched refs:leftPos (Results 1 – 3 of 3) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/axes/
DWalkerFactory.java455 int leftPos = OpMap.getFirstChildPos(op); in isProximateInnerExpr() local
456 int rightPos = compiler.getNextOpPos(leftPos); in isProximateInnerExpr()
457 isProx = isProximateInnerExpr(compiler, leftPos); in isProximateInnerExpr()
523 int leftPos = OpMap.getFirstChildPos(innerExprOpPos); in mightBeProximate() local
524 int rightPos = compiler.getNextOpPos(leftPos); in mightBeProximate()
525 isProx = isProximateInnerExpr(compiler, leftPos); in mightBeProximate()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java213 int leftPos = getFirstChildPos(opPos); in compileOperation() local
214 int rightPos = getNextOpPos(leftPos); in compileOperation()
216 operation.setLeftRight(compile(leftPos), compile(rightPos)); in compileOperation()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcodemirror.js827 var leftPos = coords(from, "left"), rightPos, left, right;
829 rightPos = leftPos;
830 left = right = leftPos.left;
833 if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }
834 left = leftPos.left;
838 if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part
839 add(left, leftPos.top, null, leftPos.bottom);
841 if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);
844 … if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)
845 start = leftPos;