Searched defs:iEnd (Results 1 - 25 of 29) sorted by relevance

12

/external/pdfium/xfa/fgas/font/
H A Dfgas_fontutils.cpp138 int32_t iEnd = sizeof(g_FXGdiFontUSBTable) / sizeof(FGAS_FONTUSB) - 1; local
139 ASSERT(iEnd >= 0);
142 iMid = (iStart + iEnd) / 2;
145 iEnd = iMid - 1;
151 } while (iStart <= iEnd);
/external/pdfium/xfa/fde/css/
H A Dfde_cssdatatable.cpp203 int32_t iEnd = g_iCSSPropertyCount; local
207 iMid = (iStart + iEnd) / 2;
214 iEnd = iMid - 1;
216 } while (iStart <= iEnd);
228 int32_t iEnd = g_iCSSPropertyValueCount; local
232 iMid = (iStart + iEnd) / 2;
239 iEnd = iMid - 1;
241 } while (iStart <= iEnd);
249 int32_t iEnd = local
254 iMid = (iStart + iEnd) /
270 int32_t iEnd = sizeof(g_FDE_CSSColors) / sizeof(FDE_CSSCOLORTABLE) - 1; local
[all...]
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffbarcode.cpp102 int32_t iEnd = g_iXFABarcodeTypeCount - 1; local
104 int32_t iMid = (iStart + iEnd) / 2;
109 iEnd = iMid - 1;
113 } while (iStart <= iEnd);
/external/pdfium/xfa/fgas/crt/
H A Dfgas_codepage.cpp274 int32_t iEnd = sizeof(g_FXCPHashTable) / sizeof(FX_STR2CPHASH) - 1; local
275 ASSERT(iEnd >= 0);
277 int32_t iMid = (iStart + iEnd) / 2;
282 iEnd = iMid - 1;
286 } while (iStart <= iEnd);
293 int32_t iEnd = sizeof(g_FXCharset2CodePageTable) / sizeof(FX_CHARSET_MAP) - 1; local
294 ASSERT(iEnd >= 0);
297 iMid = (iStart + iEnd) / 2;
302 iEnd = iMid - 1;
306 } while (iStart <= iEnd);
311 int32_t iEnd = sizeof(g_FXLang2CodepageTable) / sizeof(FX_LANG2CPMAP) - 1; local
[all...]
H A Dfgas_stream.cpp1253 int32_t iEnd = m_iStart + m_iLength; local
1260 m_iPosition = iEnd + iOffset;
1262 if (m_iPosition > iEnd) {
1263 m_iPosition = iEnd;
1313 int32_t iEnd = m_iStart + m_iLength; local
1314 int32_t iLen = iEnd - m_iPosition;
1315 iLen = std::min(iEnd / 2, iMaxLength);
1324 if (iLen > 0 && m_iPosition >= iEnd) {
1345 int32_t iEnd = m_iStart + m_iLength; local
1351 if (m_iPosition > iEnd) {
1371 int32_t iEnd = m_iStart + m_iLength; local
[all...]
/external/pdfium/xfa/fxfa/fm2js/
H A Dxfa_lexer.cpp519 int32_t iEnd = KEYWORD_END; local
521 int32_t iMid = (iStart + iEnd) / 2;
526 iEnd = iMid - 1;
529 } while (iStart <= iEnd);
H A Dxfa_simpleexpression.cpp520 iEnd = (sizeof(gs_FMSomMethods) / sizeof(gs_FMSomMethods[0])) - 1; local
521 int32_t iMid = (iStart + iEnd) / 2;
523 iMid = (iStart + iEnd) / 2;
529 iEnd = iMid - 1;
533 } while (iStart <= iEnd);
H A Dxfa_fm2jscontext.cpp2503 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); local
2515 for (; i < iEnd; ++i) {
2638 int32_t iEnd = std::min((int32_t)(nFirstMonth + nNumberOfMonths - 1), iNums); local
2650 for (; i < iEnd; ++i) {
3884 int32_t iEnd = FX_ArraySize(reservesForDecode) - 1; local
3886 int32_t iMid = (iStart + iEnd) / 2;
3894 iEnd = iMid - 1;
3897 } while (iStart <= iEnd);
3905 int32_t iEnd = FX_ArraySize(reservesForEncode) - 1; local
3907 int32_t iMid = (iStart + iEnd) /
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dxfa_utils.cpp250 int32_t iStart = scriptIndex->wAttributeStart, iEnd = iStart + icount - 1; local
252 int32_t iMid = (iStart + iEnd) / 2;
257 iEnd = iMid - 1;
260 } while (iStart <= iEnd);
269 int32_t iStart = 0, iEnd = g_iXFANotsureCount - 1;
271 int32_t iMid = (iStart + iEnd) / 2;
316 iEnd = iMid - 1;
319 } while (iStart <= iEnd);
429 int32_t iEnd = g_iXFAAttributeCount - 1;
431 int32_t iMid = (iStart + iEnd) /
[all...]
H A Dcxfa_dataexporter.cpp225 int32_t iEnd = wsRawValue.Find(L'\n', iStart); local
226 iEnd = (iEnd == -1) ? wsRawValue.GetLength() : iEnd;
227 while (iEnd >= iStart) {
228 wsSelTextArray.push_back(wsRawValue.Mid(iStart, iEnd - iStart));
229 iStart = iEnd + 1;
233 iEnd = wsRawValue.Find(L'\n', iStart);
H A Dcxfa_scriptcontext.cpp93 int32_t iEnd = iStart + icount - 1; local
95 int32_t iMid = (iStart + iEnd) / 2;
100 iEnd = iMid - 1;
103 } while (iStart <= iEnd);
H A Dcxfa_simple_parser.cpp240 int32_t iEnd = g_iXFAPacketCount - 1; local
242 int32_t iMid = (iStart + iEnd) / 2;
247 iEnd = iMid - 1;
250 } while (iStart <= iEnd);
H A Dcxfa_widgetdata.cpp901 int32_t iEnd = wsValue.Find(L'\n', iStart); local
902 iEnd = (iEnd == -1) ? iLength : iEnd;
903 while (iEnd >= iStart) {
904 wsSelTextArray.push_back(wsValue.Mid(iStart, iEnd - iStart));
905 iStart = iEnd + 1;
909 iEnd = wsValue.Find(L'\n', iStart);
910 if (iEnd < 0)
H A Dcxfa_node.cpp387 int32_t iEnd = (sizeof(gs_eventParaInfos) / sizeof(gs_eventParaInfos[0])) - 1; local
389 int32_t iMid = (iStart + iEnd) / 2;
394 iEnd = iMid - 1;
397 } while (iStart <= iEnd);
4087 int32_t iEnd = wsContent.Find(L'\n', iStart); local
4088 iEnd = (iEnd == -1) ? iLength : iEnd;
4089 while (iEnd >= iStart) {
4090 wsSaveTextArray.push_back(wsContent.Mid(iStart, iEnd
[all...]
/external/pdfium/fpdfsdk/javascript/
H A Dutil.cpp241 int iEnd; local
242 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) !=
244 cFormat.replace(iEnd, FXSYS_wcslen(TbConvertTable[i].lpszJSMark),
246 iStart = iEnd;
271 int iEnd; local
272 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) {
273 if (iEnd > 0) {
274 if (cFormat[iEnd - 1] == L'%') {
275 iStart = iEnd + 1;
279 cFormat.replace(iEnd, FXSYS_wcsle
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java957 private static int copyGapBytes(byte[] newcode, int j, byte[] code, int i, int iEnd) { argument
958 switch (iEnd - i) {
/external/pdfium/core/fxcrt/
H A Dfx_basic.h434 int32_t iEnd = m_DataLists.GetUpperBound(); local
436 while (iStart <= iEnd) {
437 iMid = (iStart + iEnd) / 2;
440 iEnd = iMid - 1;
457 int32_t iEnd = m_DataLists.GetUpperBound(); local
459 while (iStart <= iEnd) {
460 int32_t iMid = (iStart + iEnd) / 2;
463 iEnd = iMid - 1;
465 if (iMid == iEnd) {
/external/pdfium/xfa/fde/tto/
H A Dfde_textout.cpp657 int32_t iEnd = pPiece->iChars + iStar; local
658 while (iStar < iEnd) {
/external/pdfium/xfa/fwl/
H A Dcfwl_listbox.cpp213 int32_t iEnd = GetItemIndex(this, hEnd); local
214 if (iStart > iEnd) {
216 iStart = iEnd;
217 iEnd = iTemp;
226 for (; iStart <= iEnd; iStart++) {
H A Dcfwl_edit.cpp1322 int32_t iEnd = std::max(m_nSelStart, nIndex); local
1323 m_EdtEngine.AddSelRange(iStart, iEnd - iStart);
/external/pdfium/xfa/fde/xml/
H A Dfde_xml_imp.cpp49 int32_t iEnd = FX_ArraySize(g_XMLNameChars) - 1; local
50 while (iStart <= iEnd) {
51 int32_t iMid = (iStart + iEnd) / 2;
53 iEnd = iMid - 1;
67 int32_t iEnd = FX_ArraySize(g_XMLValidCharRange) - 1; local
68 while (iStart <= iEnd) {
69 int32_t iMid = (iStart + iEnd) / 2;
71 iEnd = iMid - 1;
/external/skia/src/pathops/
H A DSkOpAngle.cpp545 SkIntersections iEnd; local
548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd);
550 int closestEnd = iEnd.closestTo(rh->fStart->t(), rh->fEnd->t(), rayEnd[0], &endDist);
577 SkDPoint oppPt = iEnd.pt(closestEnd);
/external/pdfium/xfa/fgas/localization/
H A Dfgas_locale.cpp75 int32_t iEnd = iStart + 2; local
76 while (iStart < iLen && iStart < iEnd) {
82 iEnd = iStart + 2;
83 while (iStart < iLen && iStart < iEnd) {
/external/sqlite/dist/orig/
H A Dshell.c226 sqlite3_int64 iEnd = timeOfDay(); local
230 (iEnd - iBegin)*0.001,
/external/sqlite/dist/
H A Dshell.c232 sqlite3_int64 iEnd = timeOfDay(); local
236 (iEnd - iBegin)*0.001,

Completed in 498 milliseconds

12