HomeSort by relevance Sort by last modified time
    Searched defs:iStart (Results 1 - 25 of 35) sorted by null

1 2

  /external/pdfium/xfa/fgas/font/
fgas_fontutils.cpp 140 int32_t iStart = 0, iMid;
142 iMid = (iStart + iEnd) / 2;
147 iStart = iMid + 1;
151 } while (iStart <= iEnd);
  /external/pdfium/xfa/fde/css/
fde_cssdatatable.cpp 204 int32_t iMid, iStart = 0;
207 iMid = (iStart + iEnd) / 2;
212 iStart = iMid + 1;
216 } while (iStart <= iEnd);
229 int32_t iMid, iStart = 0;
232 iMid = (iStart + iEnd) / 2;
237 iStart = iMid + 1;
241 } while (iStart <= iEnd);
251 int32_t iMid, iStart = 0;
254 iMid = (iStart + iEnd) / 2
    [all...]
  /external/pdfium/xfa/fxfa/app/
xfa_ffbarcode.cpp 101 int32_t iStart = 0;
104 int32_t iMid = (iStart + iEnd) / 2;
111 iStart = iMid + 1;
113 } while (iStart <= iEnd);
  /external/pdfium/xfa/fgas/crt/
fgas_codepage.cpp 273 int32_t iStart = 0;
277 int32_t iMid = (iStart + iEnd) / 2;
284 iStart = iMid + 1;
286 } while (iStart <= iEnd);
295 int32_t iStart = 0, iMid;
297 iMid = (iStart + iEnd) / 2;
304 iStart = iMid + 1;
306 } while (iStart <= iEnd);
313 int32_t iStart = 0, iMid;
315 iMid = (iStart + iEnd) / 2
    [all...]
fgas_stream.cpp     [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_utils.cpp 250 int32_t iStart = scriptIndex->wAttributeStart, iEnd = iStart + icount - 1;
252 int32_t iMid = (iStart + iEnd) / 2;
259 iStart = iMid + 1;
260 } while (iStart <= iEnd);
269 int32_t iStart = 0, iEnd = g_iXFANotsureCount - 1;
271 int32_t iMid = (iStart + iEnd) / 2;
318 iStart = iMid + 1;
319 } while (iStart <= iEnd);
428 int32_t iStart = 0
    [all...]
cxfa_dataexporter.cpp 224 int32_t iStart = 0;
225 int32_t iEnd = wsRawValue.Find(L'\n', iStart);
227 while (iEnd >= iStart) {
228 wsSelTextArray.push_back(wsRawValue.Mid(iStart, iEnd - iStart));
229 iStart = iEnd + 1;
230 if (iStart >= wsRawValue.GetLength())
233 iEnd = wsRawValue.Find(L'\n', iStart);
cscript_hostpseudomodel.cpp 360 int32_t iStart = 0;
364 while (iStart < iExpLength) {
365 iStart = XFA_FilterName(wsExpression.AsStringC(), iStart, wsName);
cxfa_scriptcontext.cpp 91 int32_t iStart = scriptIndex->wMethodStart;
93 int32_t iEnd = iStart + icount - 1;
95 int32_t iMid = (iStart + iEnd) / 2;
102 iStart = iMid + 1;
103 } while (iStart <= iEnd);
cxfa_simple_parser.cpp 239 int32_t iStart = 0;
242 int32_t iMid = (iStart + iEnd) / 2;
249 iStart = iMid + 1;
250 } while (iStart <= iEnd);
    [all...]
cxfa_widgetdata.cpp 899 int32_t iStart = 0;
901 int32_t iEnd = wsValue.Find(L'\n', iStart);
903 while (iEnd >= iStart) {
904 wsSelTextArray.push_back(wsValue.Mid(iStart, iEnd - iStart));
905 iStart = iEnd + 1;
906 if (iStart >= iLength)
909 iEnd = wsValue.Find(L'\n', iStart);
911 wsSelTextArray.push_back(wsValue.Mid(iStart, iLength - iStart));
    [all...]
  /external/pdfium/fpdfsdk/javascript/
util.cpp 240 int iStart = 0;
242 while ((iEnd = cFormat.find(TbConvertTable[i].lpszJSMark, iStart)) !=
246 iStart = iEnd;
270 int iStart = 0;
272 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) {
275 iStart = iEnd + 1;
280 iStart = iEnd;
Field.cpp 190 int iStart = strFieldNameParsed.find_last_of(L'.');
191 if (iStart == -1) {
196 std::wstring suffixal = strFieldNameParsed.substr(iStart + 1);
210 strFieldName = strFieldNameParsed.substr(0, iStart);
    [all...]
  /external/pdfium/xfa/fxfa/fm2js/
xfa_lexer.cpp 518 int32_t iStart = KEYWORD_START;
521 int32_t iMid = (iStart + iEnd) / 2;
528 iStart = iMid + 1;
529 } while (iStart <= iEnd);
xfa_simpleexpression.cpp 519 int32_t iStart = 0,
521 int32_t iMid = (iStart + iEnd) / 2;
523 iMid = (iStart + iEnd) / 2;
531 iStart = iMid + 1;
533 } while (iStart <= iEnd);
  /external/pdfium/core/fxcrt/
fx_basic.h 308 int Find(TYPE data, int iStart = 0) const {
309 if (iStart < 0) {
312 for (; iStart < (int)m_nSize; iStart++)
313 if (((TYPE*)m_pData)[iStart] == data) {
314 return iStart;
433 int32_t iStart = 0;
436 while (iStart <= iEnd) {
437 iMid = (iStart + iEnd) / 2;
442 iStart = iMid + 1
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_listbox.cpp 212 int32_t iStart = GetItemIndex(this, hStart);
214 if (iStart > iEnd) {
215 int32_t iTemp = iStart;
216 iStart = iEnd;
226 for (; iStart <= iEnd; iStart++) {
227 CFWL_ListItem* pItem = GetItem(this, iStart);
cfwl_edit.cpp     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BlockFieldMatrix.java     [all...]
BlockRealMatrix.java     [all...]
  /external/pdfium/xfa/fde/xml/
fde_xml_imp.cpp 48 int32_t iStart = 0;
50 while (iStart <= iEnd) {
51 int32_t iMid = (iStart + iEnd) / 2;
55 iStart = iMid + 1;
66 int32_t iStart = 0;
68 while (iStart <= iEnd) {
69 int32_t iMid = (iStart + iEnd) / 2;
73 iStart = iMid + 1;
    [all...]
  /external/pdfium/xfa/fgas/layout/
fgas_rtfbreak.cpp 184 int32_t iStart = iCount - 1;
185 while (iStart > -1) {
186 CFX_RTFChar* pTC = &tca[iStart--];
664 int32_t iStart = -1;
668 if (iStart < 0)
669 iStart = ttp.m_iStartPos;
671 ttp.m_iStartPos = iStart;
686 iStart += ttp.m_iWidth;
fgas_textbreak.cpp 251 int32_t iStart = iCount - 1;
252 while (iStart > -1) {
253 CFX_TxtChar* pTC = &ca[iStart--];
859 int32_t iStart = -1;
863 if (iStart < -1)
864 iStart = ttp.m_iStartPos;
866 ttp.m_iStartPos = iStart;
881 iStart += ttp.m_iWidth;
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_gdipext.cpp     [all...]
  /external/pdfium/xfa/fgas/localization/
fgas_locale.cpp 74 int32_t iStart = 1;
75 int32_t iEnd = iStart + 2;
76 while (iStart < iLen && iStart < iEnd) {
77 tz.tzHour = tz.tzHour * 10 + pStr[iStart++] - '0';
79 if (iStart < iLen && pStr[iStart] == ':') {
80 iStart++;
82 iEnd = iStart + 2;
83 while (iStart < iLen && iStart < iEnd)
    [all...]

Completed in 1173 milliseconds

1 2