/external/pdfium/xfa/fde/css/ |
D | fde_cssdatatable.cpp | 203 int32_t iEnd = g_iCSSPropertyCount; in FDE_GetCSSPropertyByName() local 207 iMid = (iStart + iEnd) / 2; in FDE_GetCSSPropertyByName() 214 iEnd = iMid - 1; in FDE_GetCSSPropertyByName() 216 } while (iStart <= iEnd); in FDE_GetCSSPropertyByName() 228 int32_t iEnd = g_iCSSPropertyValueCount; in FDE_GetCSSPropertyValueByName() local 232 iMid = (iStart + iEnd) / 2; in FDE_GetCSSPropertyValueByName() 239 iEnd = iMid - 1; in FDE_GetCSSPropertyValueByName() 241 } while (iStart <= iEnd); in FDE_GetCSSPropertyValueByName() 249 int32_t iEnd = in FDE_GetCSSLengthUnitByName() local 254 iMid = (iStart + iEnd) / 2; in FDE_GetCSSLengthUnitByName() [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | xfa_utils.cpp | 250 int32_t iStart = scriptIndex->wAttributeStart, iEnd = iStart + icount - 1; in XFA_GetScriptAttributeByName() local 252 int32_t iMid = (iStart + iEnd) / 2; in XFA_GetScriptAttributeByName() 257 iEnd = iMid - 1; in XFA_GetScriptAttributeByName() 260 } while (iStart <= iEnd); in XFA_GetScriptAttributeByName() 269 int32_t iStart = 0, iEnd = g_iXFANotsureCount - 1; in XFA_GetNotsureAttribute() local 271 int32_t iMid = (iStart + iEnd) / 2; in XFA_GetNotsureAttribute() 316 iEnd = iMid - 1; in XFA_GetNotsureAttribute() 319 } while (iStart <= iEnd); in XFA_GetNotsureAttribute() 429 int32_t iEnd = g_iXFAAttributeCount - 1; in XFA_GetAttributeByName() local 431 int32_t iMid = (iStart + iEnd) / 2; in XFA_GetAttributeByName() [all …]
|
D | cxfa_dataexporter.cpp | 225 int32_t iEnd = wsRawValue.Find(L'\n', iStart); in RegenerateFormFile_Changed() local 226 iEnd = (iEnd == -1) ? wsRawValue.GetLength() : iEnd; in RegenerateFormFile_Changed() 227 while (iEnd >= iStart) { in RegenerateFormFile_Changed() 228 wsSelTextArray.push_back(wsRawValue.Mid(iStart, iEnd - iStart)); in RegenerateFormFile_Changed() 229 iStart = iEnd + 1; in RegenerateFormFile_Changed() 233 iEnd = wsRawValue.Find(L'\n', iStart); in RegenerateFormFile_Changed()
|
D | cxfa_widgetdata.cpp | 901 int32_t iEnd = wsValue.Find(L'\n', iStart); in GetSelectedItemsValue() local 902 iEnd = (iEnd == -1) ? iLength : iEnd; in GetSelectedItemsValue() 903 while (iEnd >= iStart) { in GetSelectedItemsValue() 904 wsSelTextArray.push_back(wsValue.Mid(iStart, iEnd - iStart)); in GetSelectedItemsValue() 905 iStart = iEnd + 1; in GetSelectedItemsValue() 909 iEnd = wsValue.Find(L'\n', iStart); in GetSelectedItemsValue() 910 if (iEnd < 0) in GetSelectedItemsValue()
|
D | cxfa_scriptcontext.cpp | 93 int32_t iEnd = iStart + icount - 1; in GetMethodByName() local 95 int32_t iMid = (iStart + iEnd) / 2; in GetMethodByName() 100 iEnd = iMid - 1; in GetMethodByName() 103 } while (iStart <= iEnd); in GetMethodByName()
|
D | cxfa_simple_parser.cpp | 240 int32_t iEnd = g_iXFAPacketCount - 1; in GetPacketByName() local 242 int32_t iMid = (iStart + iEnd) / 2; in GetPacketByName() 247 iEnd = iMid - 1; in GetPacketByName() 250 } while (iStart <= iEnd); in GetPacketByName()
|
D | cxfa_node.cpp | 387 int32_t iEnd = (sizeof(gs_eventParaInfos) / sizeof(gs_eventParaInfos[0])) - 1; in GetEventParaInfoByName() local 389 int32_t iMid = (iStart + iEnd) / 2; in GetEventParaInfoByName() 394 iEnd = iMid - 1; in GetEventParaInfoByName() 397 } while (iStart <= iEnd); in GetEventParaInfoByName() 4087 int32_t iEnd = wsContent.Find(L'\n', iStart); in SetScriptContent() local 4088 iEnd = (iEnd == -1) ? iLength : iEnd; in SetScriptContent() 4089 while (iEnd >= iStart) { in SetScriptContent() 4090 wsSaveTextArray.push_back(wsContent.Mid(iStart, iEnd - iStart)); in SetScriptContent() 4091 iStart = iEnd + 1; in SetScriptContent() 4095 iEnd = wsContent.Find(L'\n', iStart); in SetScriptContent() [all …]
|
/external/pdfium/xfa/fgas/crt/ |
D | fgas_codepage.cpp | 274 int32_t iEnd = sizeof(g_FXCPHashTable) / sizeof(FX_STR2CPHASH) - 1; in GetCodePageFromStringA() local 275 ASSERT(iEnd >= 0); in GetCodePageFromStringA() 277 int32_t iMid = (iStart + iEnd) / 2; in GetCodePageFromStringA() 282 iEnd = iMid - 1; in GetCodePageFromStringA() 286 } while (iStart <= iEnd); in GetCodePageFromStringA() 293 int32_t iEnd = sizeof(g_FXCharset2CodePageTable) / sizeof(FX_CHARSET_MAP) - 1; in FX_GetCodePageFromCharset() local 294 ASSERT(iEnd >= 0); in FX_GetCodePageFromCharset() 297 iMid = (iStart + iEnd) / 2; in FX_GetCodePageFromCharset() 302 iEnd = iMid - 1; in FX_GetCodePageFromCharset() 306 } while (iStart <= iEnd); in FX_GetCodePageFromCharset() [all …]
|
D | fgas_stream.cpp | 1253 int32_t iEnd = m_iStart + m_iLength; in Seek() local 1260 m_iPosition = iEnd + iOffset; in Seek() 1262 if (m_iPosition > iEnd) { in Seek() 1263 m_iPosition = iEnd; in Seek() 1313 int32_t iEnd = m_iStart + m_iLength; in ReadString() local 1314 int32_t iLen = iEnd - m_iPosition; in ReadString() 1315 iLen = std::min(iEnd / 2, iMaxLength); in ReadString() 1324 if (iLen > 0 && m_iPosition >= iEnd) { in ReadString() 1345 int32_t iEnd = m_iStart + m_iLength; in WriteData() local 1351 if (m_iPosition > iEnd) { in WriteData() [all …]
|
/external/pdfium/xfa/fgas/font/ |
D | fgas_fontutils.cpp | 138 int32_t iEnd = sizeof(g_FXGdiFontUSBTable) / sizeof(FGAS_FONTUSB) - 1; in FGAS_GetUnicodeBitField() local 139 ASSERT(iEnd >= 0); in FGAS_GetUnicodeBitField() 142 iMid = (iStart + iEnd) / 2; in FGAS_GetUnicodeBitField() 145 iEnd = iMid - 1; in FGAS_GetUnicodeBitField() 151 } while (iStart <= iEnd); in FGAS_GetUnicodeBitField()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/ |
D | Base64Coder.java | 164 int iEnd = iOff + iLen; in encode() local 166 while (ip < iEnd) { in encode() 168 int i1 = ip < iEnd ? in[ip++] & 0xff : 0; in encode() 169 int i2 = ip < iEnd ? in[ip++] & 0xff : 0; in encode() 274 int iEnd = iOff + iLen; 276 while (ip < iEnd) { 279 int i2 = ip < iEnd ? in[ip++] : 'A'; 280 int i3 = ip < iEnd ? in[ip++] : 'A';
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetSegGraph.py | 58 self.iEnd = 0 73 self.iEnd = step * iEndM 76 self.iEnd = self.iEnd + ((step / 4.0) * (self.EndMbt[1]-1)) 81 self.iEnd = self.iEnd + ((pctTickOfBeat * (step / 4.0))) 83 self.iWidth = self.iEnd - self.iStart 179 …if pt[0] >= Marker.iStart and pt[0] <= Marker.iEnd and pt[1] >= Marker.iTop and pt[1] <= Marker.iT… 244 …if Marker.iStart <= Marker1.iStart and Marker.iEnd <= Marker1.iEnd and Marker.iEnd >= Marker1.iSta… 248 …e and Marker.iStart >= Marker1.iStart and Marker.iEnd >= Marker1.iEnd and Marker.iStart <= Marker1… 269 k = ((Marker.iStart + Marker.iEnd) / 2) - (width/2) + self.iEdges
|
/external/pdfium/fpdfsdk/javascript/ |
D | util.cpp | 241 int iEnd; in printd() local 242 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) != in printd() 244 cFormat.replace(iEnd, FXSYS_wcslen(TbConvertTable[i].lpszJSMark), in printd() 246 iStart = iEnd; in printd() 271 int iEnd; in printd() local 272 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) { in printd() 273 if (iEnd > 0) { in printd() 274 if (cFormat[iEnd - 1] == L'%') { in printd() 275 iStart = iEnd + 1; in printd() 279 cFormat.replace(iEnd, FXSYS_wcslen(cTableAd[i].lpszJSMark), tszValue); in printd() [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_basic.h | 434 int32_t iEnd = m_DataLists.GetUpperBound(); in GetAt() local 436 while (iStart <= iEnd) { in GetAt() 437 iMid = (iStart + iEnd) / 2; in GetAt() 440 iEnd = iMid - 1; in GetAt() 457 int32_t iEnd = m_DataLists.GetUpperBound(); in Append() local 459 while (iStart <= iEnd) { in Append() 460 int32_t iMid = (iStart + iEnd) / 2; in Append() 463 iEnd = iMid - 1; in Append() 465 if (iMid == iEnd) { in Append()
|
/external/pdfium/xfa/fxfa/app/ |
D | xfa_ffbarcode.cpp | 102 int32_t iEnd = g_iXFABarcodeTypeCount - 1; in XFA_GetBarcodeTypeByName() local 104 int32_t iMid = (iStart + iEnd) / 2; in XFA_GetBarcodeTypeByName() 109 iEnd = iMid - 1; in XFA_GetBarcodeTypeByName() 113 } while (iStart <= iEnd); in XFA_GetBarcodeTypeByName()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
D | BitsStreamGenerator.java | 67 final int iEnd = bytes.length - 3; in nextBytes() local 68 while (i < iEnd) { in nextBytes()
|
/external/pdfium/xfa/fxfa/fm2js/ |
D | xfa_lexer.cpp | 519 int32_t iEnd = KEYWORD_END; in IsKeyword() local 521 int32_t iMid = (iStart + iEnd) / 2; in IsKeyword() 526 iEnd = iMid - 1; in IsKeyword() 529 } while (iStart <= iEnd); in IsKeyword()
|
D | xfa_simpleexpression.cpp | 520 iEnd = (sizeof(gs_FMSomMethods) / sizeof(gs_FMSomMethods[0])) - 1; in IsMethodWithObjParam() local 521 int32_t iMid = (iStart + iEnd) / 2; in IsMethodWithObjParam() 523 iMid = (iStart + iEnd) / 2; in IsMethodWithObjParam() 529 iEnd = iMid - 1; in IsMethodWithObjParam() 533 } while (iStart <= iEnd); in IsMethodWithObjParam()
|
D | xfa_fm2jscontext.cpp | 2503 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); in IPmt() local 2515 for (; i < iEnd; ++i) { in IPmt() 2638 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); in PPmt() local 2650 for (; i < iEnd; ++i) { in PPmt() 3884 int32_t iEnd = FX_ArraySize(reservesForDecode) - 1; in HTMLSTR2Code() local 3886 int32_t iMid = (iStart + iEnd) / 2; in HTMLSTR2Code() 3894 iEnd = iMid - 1; in HTMLSTR2Code() 3897 } while (iStart <= iEnd); in HTMLSTR2Code() 3905 int32_t iEnd = FX_ArraySize(reservesForEncode) - 1; in HTMLCode2STR() local 3907 int32_t iMid = (iStart + iEnd) / 2; in HTMLCode2STR() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | Splitter.cpp | 213 iEnd = loopInstrs.end(); in copyRanges() local 214 iItr != iEnd; ++iItr) { in copyRanges() 246 iEnd = loopInstrs.end(); in renameInside() local 247 iItr != iEnd; ++iItr) { in renameInside() 352 for (MachineBasicBlock::iterator iItr = mbb->begin(), iEnd = mbb->end(); in dumpOddTerminators() local 353 iItr != iEnd; ++iItr) { in dumpOddTerminators()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_listbox.cpp | 213 int32_t iEnd = GetItemIndex(this, hEnd); in SetSelection() local 214 if (iStart > iEnd) { in SetSelection() 216 iStart = iEnd; in SetSelection() 217 iEnd = iTemp; in SetSelection() 226 for (; iStart <= iEnd; iStart++) { in SetSelection()
|
/external/pdfium/xfa/fde/xml/ |
D | fde_xml_imp.cpp | 49 int32_t iEnd = FX_ArraySize(g_XMLNameChars) - 1; in FDE_IsXMLNameChar() local 50 while (iStart <= iEnd) { in FDE_IsXMLNameChar() 51 int32_t iMid = (iStart + iEnd) / 2; in FDE_IsXMLNameChar() 53 iEnd = iMid - 1; in FDE_IsXMLNameChar() 67 int32_t iEnd = FX_ArraySize(g_XMLValidCharRange) - 1; in FDE_IsXMLValidChar() local 68 while (iStart <= iEnd) { in FDE_IsXMLValidChar() 69 int32_t iMid = (iStart + iEnd) / 2; in FDE_IsXMLValidChar() 71 iEnd = iMid - 1; in FDE_IsXMLValidChar()
|
/external/skia/src/pathops/ |
D | SkOpAngle.cpp | 545 SkIntersections iEnd; in endToSide() local 548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd); in endToSide() 550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist); in endToSide() 577 SkDPoint oppPt = iEnd.pt(closestEnd); in endToSide()
|
/external/pdfium/xfa/fde/tto/ |
D | fde_textout.cpp | 657 int32_t iEnd = pPiece->iChars + iStar; in ReloadLinePiece() local 658 while (iStar < iEnd) { in ReloadLinePiece()
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 957 private static int copyGapBytes(byte[] newcode, int j, byte[] code, int i, int iEnd) { in copyGapBytes() argument 958 switch (iEnd - i) { in copyGapBytes()
|