HomeSort by relevance Sort by last modified time
    Searched defs:nLength (Results 1 - 6 of 6) sorted by null

  /external/pdfium/fpdfsdk/fpdfxfa/
cpdfxfa_context.cpp 291 int nLength = 2048;
292 std::vector<uint8_t> pBuff(nLength);
293 nLength = m_pFormFillEnv->JS_appResponse(wsQuestion.c_str(), wsTitle.c_str(),
295 bMark, pBuff.data(), nLength);
296 if (nLength <= 0)
299 nLength = std::min(2046, nLength);
300 pBuff[nLength] = 0;
301 pBuff[nLength + 1] = 0;
303 nLength / sizeof(uint16_t))
    [all...]
  /external/pdfium/fpdfsdk/
fpdfppo.cpp 79 size_t nLength = rangstring.GetLength();
81 for (size_t i = 0; i < nLength; ++i) {
89 while (nStringTo < nLength) {
92 nStringTo = nLength;
  /external/pdfium/fxjs/
cjs_globaldata.cpp 223 int32_t nLength = 0;
225 LoadFileBuffer(m_sFilePath.c_str(), pBuffer, nLength);
226 CRYPT_ArcFourCryptBlock(pBuffer, nLength, JS_RC4KEY, sizeof(JS_RC4KEY));
245 if (dwSize == nLength - sizeof(uint16_t) * 2 - sizeof(uint32_t) * 2) {
247 if (p > pBuffer + nLength)
253 if (p + dwNameLen > pBuffer + nLength)
290 if (p + dwLength > pBuffer + nLength)
345 int32_t& nLength) {
351 int32_t nLength) {
cfxjse_formcalc_context.cpp 342 int32_t nLength = wsPattern.GetLength();
346 while (i < nLength) {
354 nLength--;
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_interform.cpp 496 size_t nLength;
497 name_extractor.GetNext(pName, nLength);
500 while (nLength > 0) {
502 WideString name = WideString(pName, nLength);
509 name_extractor.GetNext(pName, nLength);
524 size_t nLength;
525 name_extractor.GetNext(pName, nLength);
528 while (nLength > 0 && pNode) {
530 WideString name = WideString(pName, nLength);
532 name_extractor.GetNext(pName, nLength);
    [all...]
  /external/pdfium/xfa/fgas/font/
cfgas_fontmgr.cpp 815 unsigned long nLength = 0;
816 unsigned int error = FXFT_Load_Sfnt_Table(pFace, dwTag, 0, nullptr, &nLength);
817 if (error == 0 && nLength != 0) {
818 table.resize(nLength);
    [all...]

Completed in 408 milliseconds