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

1 2

  /external/pdfium/xfa/fxfa/parser/
cscript_signaturepseudomodel.cpp 27 int32_t iLength = pArguments->GetLength();
28 if (iLength < 1 || iLength > 4) {
39 int32_t iLength = pArguments->GetLength();
40 if (iLength < 3 || iLength > 7) {
59 int32_t iLength = pArguments->GetLength();
60 if (iLength < 1 || iLength > 2) {
cscript_layoutpseudomodel.cpp 51 int32_t iLength = pArguments->GetLength();
52 if (iLength < 1 || iLength > 3) {
74 if (iLength >= 1) {
77 if (iLength >= 2) {
83 if (iLength >= 3) {
179 int32_t iLength = pArguments->GetLength();
180 if (iLength != 1) {
185 if (iLength >= 1) {
345 int32_t iLength = pArguments->GetLength()
    [all...]
cxfa_resolveprocessor.cpp 514 int32_t iLength = wsExpression.GetLength();
515 if (nStart >= iLength) {
520 FX_WCHAR* pNameBuf = wsName.GetBuffer(iLength - nStart);
521 FX_WCHAR* pConditionBuf = wsCondition.GetBuffer(iLength - nStart);
529 while (nStart < iLength) {
540 FX_WCHAR wLookahead = nStart < iLength ? pSrc[nStart] : 0;
549 } else if (wCur == '.' && nStart < iLength &&
cscript_hostpseudomodel.cpp 210 int32_t iLength = pArguments->GetLength();
211 if (iLength != 1) {
221 if (iLength >= 1) {
231 int32_t iLength = pArguments->GetLength();
232 if (iLength != 1) {
241 if (iLength >= 1) {
278 int32_t iLength = pArguments->GetLength();
279 if (iLength < 1 || iLength > 4) {
291 if (iLength >= 1)
    [all...]
cxfa_widgetdata.cpp 900 int32_t iLength = wsValue.GetLength();
902 iEnd = (iEnd == -1) ? iLength : iEnd;
906 if (iStart >= iLength)
911 wsSelTextArray.push_back(wsValue.Mid(iStart, iLength - iStart));
    [all...]
cxfa_node.cpp     [all...]
  /external/pdfium/xfa/fde/css/
cfde_csssyntaxparser.cpp 222 int32_t iLength = m_TextData.GetLength();
225 return iLength;
  /external/pdfium/xfa/fxbarcode/oned/
BC_OnedEAN8Writer.cpp 182 int32_t iLength = str.GetLength();
183 FXTEXT_CHARPOS* pCharPos = FX_Alloc(FXTEXT_CHARPOS, iLength);
184 FXSYS_memset(pCharPos, 0, sizeof(FXTEXT_CHARPOS) * iLength);
  /external/pdfium/xfa/fxfa/app/
xfa_checksum.cpp 193 int32_t iLength = m_SAXContext.m_TextBuf.GetLength();
194 if (iLength < 1) {
201 for (int32_t i = 0; i < iLength; i++) {
209 m_pContext->Update(CFX_ByteStringC(pBuffer, iLength));
xfa_fontmgr.cpp     [all...]
cxfa_textparser.cpp 564 int32_t iLength = wsValue.GetLength();
571 while (iCur < iLength) {
587 while (iCur < iLength && pTabStops[iCur] <= ' ')
599 while (iCur < iLength) {
610 while (iCur < iLength && pTabStops[iCur] <= ' ')
cxfa_textlayout.cpp 796 int32_t iLength = wsText.GetLength();
797 if (iLength > 0 && bContentNode && !bSpaceRun)
898 int32_t iLength = wsText.GetLength();
899 for (int32_t i = iChar; i < iLength; i++) {
    [all...]
xfa_ffwidget.cpp 1062 int32_t iLength = bsData.GetLength();
1063 pImageBuffer = FX_Alloc(uint8_t, iLength);
    [all...]
  /prebuilts/ndk/r11/sources/android/ndk_helper/
JNIHelper.cpp 265 int32_t iLength = strlen( (const char*) str );
267 jbyteArray array = env->NewByteArray( iLength );
268 env->SetByteArrayRegion( array, 0, iLength, (const signed char*) str );
  /prebuilts/ndk/r13/sources/android/ndk_helper/
JNIHelper.cpp 265 int32_t iLength = strlen( (const char*) str );
267 jbyteArray array = env->NewByteArray( iLength );
268 env->SetByteArrayRegion( array, 0, iLength, (const signed char*) str );
  /external/pdfium/core/fxge/android/
cfpf_skiafontmgr.cpp 90 uint32_t FPF_GetHashCode_StringA(const FX_CHAR* pStr, int32_t iLength) {
93 if (iLength < 0)
94 iLength = FXSYS_strlen(pStr);
95 const FX_CHAR* pStrEnd = pStr + iLength;
162 int32_t iLength = bsfamily.GetLength();
164 for (int32_t i = 0; i < iLength; i++) {
  /external/pdfium/xfa/fgas/layout/
fgas_rtfbreak.h 42 int32_t iLength;
fgas_rtfbreak.cpp 705 int32_t iLength = pdfium::CollectionSize<int32_t>(tca) - 1;
706 if (iLength < 1)
707 return iLength;
717 return iLength;
719 iBreak = iLength;
724 CFX_RTFChar* pCur = pCharArray + iLength;
725 --iLength;
735 while (iLength >= 0) {
736 pCur = pCharArray + iLength;
759 iBreak = iLength;
    [all...]
fgas_textbreak.h 103 int32_t iLength;
fgas_textbreak.cpp 962 int32_t iLength = pdfium::CollectionSize<int32_t>(ca) - 1;
963 if (iLength < 1)
964 return iLength;
974 return iLength;
976 iBreak = iLength;
986 CFX_Char* pCur = &ca[iLength--];
996 while (iLength >= 0) {
997 pCur = &ca[iLength];
1019 iBreak = iLength;
1022 return iLength;
    [all...]
  /external/pdfium/xfa/fgas/crt/
fgas_stream.cpp 35 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) = 0;
37 virtual bool SetLength(int32_t iLength) = 0;
64 int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) override;
66 bool SetLength(int32_t iLength) override;
88 int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) override;
90 bool SetLength(int32_t iLength) override { return false; }
117 int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) override {
121 bool SetLength(int32_t iLength) override { return false; }
148 int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) override {
152 bool SetLength(int32_t iLength) override { return false;
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_interform.cpp 826 int iLength = csNewFieldName.GetLength();
829 while (iPos < iLength &&
833 if (iPos < iLength && !csSub.IsEmpty())
835 while (iPos < iLength && csNewFieldName[iPos] != L'.')
865 if (iPos >= iLength)
    [all...]
  /external/pdfium/xfa/fde/tto/
fde_textout.cpp 169 int32_t iLength,
172 CalcLogicSize(pwsStr, iLength, rtText);
177 int32_t iLength,
179 if (!pwsStr || iLength < 1) {
183 CalcTextSize(pwsStr, iLength, rect);
188 int32_t iLength,
203 while (iLength-- > 0) {
300 int32_t iLength,
305 DrawText(pwsStr, iLength, rtText);
309 int32_t iLength,
    [all...]
  /external/pdfium/fpdfsdk/javascript/
Document.cpp 381 int iLength = params.size();
382 bool bUI = iLength > 0 ? params[0].ToBool(pRuntime) : true;
383 CFX_WideString cTo = iLength > 1 ? params[1].ToCFXWideString(pRuntime) : L"";
384 CFX_WideString cCc = iLength > 2 ? params[2].ToCFXWideString(pRuntime) : L"";
385 CFX_WideString cBcc = iLength > 3 ? params[3].ToCFXWideString(pRuntime) : L"";
387 iLength > 4 ? params[4].ToCFXWideString(pRuntime) : L"";
388 CFX_WideString cMsg = iLength > 5 ? params[5].ToCFXWideString(pRuntime) : L"";
    [all...]
  /external/pdfium/xfa/fxfa/fm2js/
xfa_fm2jscontext.cpp 446 int32_t iLength = wsPattern.GetLength();
450 while (iIndex < iLength) {
459 while (iIndex < iLength) {
558 int32_t iLength = lengthValue->ToInteger();
560 if (iLength > 2) {
566 for (int32_t j = 2; j < iLength; j++) {
577 for (int32_t j = 2; j < iLength; j++) {
634 int32_t iLength = lengthValue->ToInteger();
635 if (iLength <= 2) {
646 for (int32_t j = 2; j < iLength; j++)
    [all...]

Completed in 243 milliseconds

1 2