Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fxbarcode/
DBC_TwoDimWriter.cpp33 int32_t leftPos = 0; in RenderDeviceResult() local
36 leftPos = (m_Width - m_output->GetWidth()) / 2; in RenderDeviceResult()
50 rect.AppendRect((FX_FLOAT)leftPos + x, (FX_FLOAT)topPos + y, in RenderDeviceResult()
51 (FX_FLOAT)(leftPos + x + 1), (FX_FLOAT)(topPos + y + 1)); in RenderDeviceResult()
72 int32_t leftPos = 0; in RenderBitmapResult() local
75 leftPos = (m_Width - m_output->GetWidth()) / 2; in RenderBitmapResult()
81 pOutBitmap->SetPixel(leftPos + x, topPos + y, m_barColor); in RenderBitmapResult()
/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()