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

1 2 3

  /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_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_widetextread.h 27 int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) override;
29 bool SetLength(int32_t iLength) override;
35 int32_t iLength) override;
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_widetextread.cpp 73 int32_t CXFA_WideTextRead::WriteString(const FX_WCHAR* pStr, int32_t iLength) {
77 bool CXFA_WideTextRead::SetLength(int32_t iLength) {
96 int32_t iLength) {
cxfa_node.cpp     [all...]
  /external/pdfium/xfa/fde/css/
cfde_cssvaluelistparser.cpp 18 int32_t& iLength) {
27 iLength = 0;
30 iLength = SkipTo(' ', false, false);
31 if (iLength == 4 || iLength == 7)
38 iLength = m_pCur - pStart;
43 iLength = SkipTo(wch, false, false);
48 iLength = SkipTo(')', false, false) + 1;
53 iLength = SkipTo(m_Separator, true, true);
56 return m_pCur <= m_pEnd && iLength > 0
    [all...]
cfde_csstextbuf.cpp 80 void CFDE_CSSTextBuf::Subtract(int32_t iStart, int32_t iLength) {
81 ASSERT(iStart >= 0 && iLength >= 0);
83 iLength = std::max(std::min(iLength, m_iDatLen - iStart), 0);
84 FXSYS_memmove(m_pBuffer, m_pBuffer + iStart, iLength * sizeof(FX_WCHAR));
85 m_iDatLen = iLength;
cfde_cssvaluelistparser.h 21 int32_t& iLength);
cfde_csstextbuf.h 43 void Subtract(int32_t iStart, int32_t iLength);
cfde_csssyntaxparser.cpp 222 int32_t iLength = m_TextData.GetLength();
225 return iLength;
  /external/pdfium/xfa/fgas/crt/
fgas_stream.h 46 int32_t iLength) = 0;
58 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) = 0;
60 virtual bool SetLength(int32_t iLength) = 0;
fgas_codepage.cpp 264 uint16_t GetCodePageFromStringA(const FX_CHAR* pStr, int32_t iLength) {
266 if (iLength < 0) {
267 iLength = FXSYS_strlen(pStr);
269 if (iLength == 0) {
272 uint32_t uHash = FX_HashCode_GetA(CFX_ByteStringC(pStr, iLength), true);
328 uint16_t FX_GetCodePageFromStringW(const FX_WCHAR* pStr, int32_t iLength) {
329 if (iLength < 0) {
330 iLength = FXSYS_wcslen(pStr);
332 if (iLength == 0) {
336 FX_CHAR* pBuf = csStr.GetBuffer(iLength + 1)
    [all...]
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...]
fgas_codepage.h 137 uint16_t FX_GetCodePageFromStringW(const FX_WCHAR* pStr, int32_t iLength);
139 void FX_SwapByteOrder(FX_WCHAR* pStr, int32_t iLength);
141 void FX_UTF16ToWChar(void* pBuffer, int32_t iLength);
  /external/pdfium/xfa/fde/tto/
fde_textout.h 101 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, int32_t x, int32_t y);
103 int32_t iLength,
106 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, const CFX_Rect& rect);
107 void DrawText(const FX_WCHAR* pwsStr, int32_t iLength, const CFX_RectF& rect);
110 void CalcLogicSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_SizeF& size);
111 void CalcLogicSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_RectF& rect);
113 int32_t iLength,
117 int32_t iLength,
122 void CalcTextSize(const FX_WCHAR* pwsStr, int32_t iLength, CFX_RectF& rect);
129 int32_t iLength,
    [all...]
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/core/fxcrt/
fx_ext.h 21 int32_t iLength = -1,
24 int32_t iLength = -1,
fx_extension.cpp 433 int32_t iLength,
436 if (iLength < 0) {
437 iLength = (int32_t)FXSYS_strlen(pcsStr);
440 CFX_WideString::FromLocal(CFX_ByteStringC(pcsStr, iLength));
441 return FXSYS_wcstof(ws.c_str(), iLength, pUsedLen);
444 int32_t iLength,
447 if (iLength < 0) {
448 iLength = (int32_t)FXSYS_wcslen(pwsStr);
450 if (iLength == 0) {
463 while (iUsedLen < iLength) {
    [all...]
  /external/pdfium/xfa/fde/
cfde_txtedttextset.cpp 64 tr.iLength = nLength;
87 tr.iLength = pPiece->nCount;
  /external/pdfium/xfa/fgas/layout/
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...]
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...]
  /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));
  /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/fde/xml/
fde_xml_imp.cpp 141 int32_t iLength,
144 if (iLength < 0) {
145 iLength = FXSYS_wcslen(pPath);
147 if (iLength == 0) {
152 const FX_WCHAR* pEnd = pPath + iLength;
162 iLength -= pStart - pPath;
181 if (iLength < 1) {
184 pFind = pNode->GetPath(pStart, iLength, bQualifiedName);
193 if (!pFind || iLength < 1)
195 return pFind->GetPath(pStart, iLength, bQualifiedName)
    [all...]

Completed in 193 milliseconds

1 2 3