Searched defs:iLength (Results 1 - 25 of 50) sorted by relevance

12

/external/pdfium/xfa/src/fgas/src/layout/
H A Dfx_linebreak.cpp270 int32_t iLength) {
271 if (iLength < 2) {
278 iLength--;
279 for (int32_t i = 0; i < iLength; i++) {
290 pBrkType[iLength] = FX_LBT_INDIRECT_BRK;
293 int32_t iLength,
295 if (iLength < 2) {
303 iLength--;
304 for (int32_t i = 0; i < iLength; i++) {
268 FX_GetLineBreakPositions(const FX_WCHAR* pwsText, FX_LINEBREAKTYPE* pBrkType, int32_t iLength) argument
292 FX_GetLineBreakPositions(const FX_WCHAR* pwsText, int32_t iLength, CFX_Int32MassArray& bp) argument
/external/pdfium/xfa/src/fgas/src/crt/
H A Dfx_codepage.cpp301 FX_WORD FX_GetCodePageFromStringA(const FX_CHAR* pStr, int32_t iLength) { argument
303 if (iLength < 0) {
304 iLength = FXSYS_strlen(pStr);
306 if (iLength == 0) {
309 uint32_t uHash = FX_HashCode_String_GetA(pStr, iLength, TRUE);
326 FX_WORD FX_GetCodePageFormStringW(const FX_WCHAR* pStr, int32_t iLength) { argument
327 if (iLength < 0) {
328 iLength = FXSYS_wcslen(pStr);
330 if (iLength == 0) {
334 FX_CHAR* pBuf = csStr.GetBuffer(iLength
[all...]
H A Dfx_encode.cpp8 void FX_SwapByteOrder(FX_WCHAR* pStr, int32_t iLength) { argument
10 if (iLength < 0) {
11 iLength = FXSYS_wcslen(pStr);
15 while (iLength-- > 0) {
22 while (iLength-- > 0) {
31 int32_t iLength) {
33 if (iLength < 0) {
34 iLength = FXSYS_wcslen(pSrc);
38 while (iLength-- > 0) {
45 while (iLength
29 FX_SwapByteOrderCopy(const FX_WCHAR* pSrc, FX_WCHAR* pDst, int32_t iLength) argument
52 FX_UTF16ToWChar(void* pBuffer, int32_t iLength) argument
63 FX_UTF16ToWCharCopy(const FX_WORD* pUTF16, FX_WCHAR* pWChar, int32_t iLength) argument
75 FX_WCharToUTF16(void* pBuffer, int32_t iLength) argument
86 FX_WCharToUTF16Copy(const FX_WCHAR* pWChar, FX_WORD* pUTF16, int32_t iLength) argument
[all...]
H A Dfx_system.cpp84 FX_FLOAT FX_strtof(const FX_CHAR* pcsStr, int32_t iLength, int32_t* pUsedLen) { argument
86 if (iLength < 0) {
87 iLength = FXSYS_strlen(pcsStr);
89 return FX_wcstof(CFX_WideString::FromLocal(pcsStr, iLength), iLength,
92 FX_FLOAT FX_wcstof(const FX_WCHAR* pwsStr, int32_t iLength, int32_t* pUsedLen) { argument
94 if (iLength < 0) {
95 iLength = FXSYS_wcslen(pwsStr);
97 if (iLength == 0) {
110 while (iUsedLen < iLength) {
[all...]
H A Dfx_stream.h33 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) = 0;
35 virtual FX_BOOL SetLength(int32_t iLength) = 0;
54 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength);
56 virtual FX_BOOL SetLength(int32_t iLength);
74 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength);
76 virtual FX_BOOL SetLength(int32_t iLength) { return FALSE; } argument
99 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) { argument
103 virtual FX_BOOL SetLength(int32_t iLength) { return FALSE; } argument
129 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) { argument
133 virtual FX_BOOL SetLength(int32_t iLength) { retur argument
159 SetLength(int32_t iLength) argument
[all...]
/external/pdfium/xfa/src/fxfa/src/parser/
H A Dxfa_script_signaturepseudomodel.cpp26 int32_t iLength = pArguments->GetLength(); local
27 if (iLength < 1 || iLength > 4) {
37 if (iLength >= 1) {
48 int32_t iLength = pArguments->GetLength(); local
49 if (iLength < 3 || iLength > 7) {
61 if (iLength >= 1) {
64 if (iLength >= 2) {
69 if (iLength >
82 int32_t iLength = pArguments->GetLength(); local
98 int32_t iLength = pArguments->GetLength(); local
[all...]
H A Dxfa_basic_imp.h40 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) { argument
44 virtual FX_BOOL SetLength(int32_t iLength) { return FALSE; } argument
55 int32_t iLength) {
53 CreateSharedStream(FX_DWORD dwAccess, int32_t iOffset, int32_t iLength) argument
H A Dxfa_script_layoutpseudomodel.cpp43 int32_t iLength = pArguments->GetLength(); local
44 if (iLength < 1 || iLength > 3) {
66 if (iLength >= 1) {
69 if (iLength >= 2) {
75 if (iLength >= 3) {
172 int32_t iLength = pArguments->GetLength(); local
173 if (iLength != 1) {
178 if (iLength >= 1) {
352 int32_t iLength local
435 int32_t iLength = pArguments->GetLength(); local
469 int32_t iLength = pArguments->GetLength(); local
518 int32_t iLength = pArguments->GetLength(); local
[all...]
H A Dxfa_script_resolveprocessor.cpp525 int32_t iLength = wsExpression.GetLength(); local
526 if (nStart >= iLength) {
531 FX_WCHAR* pNameBuf = wsName.GetBuffer(iLength - nStart);
532 FX_WCHAR* pConditionBuf = wsCondition.GetBuffer(iLength - nStart);
540 while (nStart < iLength) {
551 FX_WCHAR wLookahead = nStart < iLength ? pSrc[nStart] : 0;
560 } else if (wCur == '.' && nStart < iLength &&
H A Dxfa_basic_imp.cpp40 int32_t iLength = wsName.GetLength(); local
41 if (iLength == 0) {
44 uint32_t uHash = FX_HashCode_String_GetW(wsName.GetPtr(), iLength);
76 int32_t iLength = wsName.GetLength(); local
77 if (iLength == 0) {
80 uint32_t uHash = FX_HashCode_String_GetW(wsName.GetPtr(), iLength);
102 int32_t iLength = wsName.GetLength(); local
103 if (iLength == 0) {
106 uint32_t uHash = FX_HashCode_String_GetW(wsName.GetPtr(), iLength);
203 int32_t iLength local
383 int32_t iLength = wsMethodName.GetLength(); local
415 int32_t iLength = wsAttributeName.GetLength(); local
[all...]
/external/pdfium/xfa/src/fdp/src/css/
H A Dfde_csssyntax.cpp390 int32_t iLength = m_TextData.GetLength(); local
393 return iLength;
404 const FX_WCHAR* CFDE_CSSSyntaxParser::GetCurrentString(int32_t& iLength) const {
405 iLength = m_iTextDatLen;
473 void CFDE_CSSTextBuf::Subtract(int32_t iStart, int32_t iLength) { argument
474 FXSYS_assert(iStart >= 0 && iLength > 0);
475 if (iLength > m_iDatLen - iStart) {
476 iLength = m_iDatLen - iStart;
478 if (iLength < 0) {
479 iLength
[all...]
H A Dfde_cssdatatable.cpp557 int32_t iLength) {
558 FXSYS_assert(pszName != NULL && iLength > 0);
559 FX_DWORD dwHash = FX_HashCode_String_GetW(pszName, iLength, TRUE);
581 int32_t iLength) {
582 FXSYS_assert(pszName != NULL && iLength > 0);
583 FX_DWORD dwHash = FX_HashCode_String_GetW(pszName, iLength, TRUE);
606 int32_t iLength) {
607 FXSYS_assert(pszName != NULL && iLength > 0);
608 FX_WORD wHash = (FX_WORD)FX_HashCode_String_GetW(pszName, iLength, TRUE);
627 int32_t iLength) {
556 FDE_GetCSSPropertyByName(const FX_WCHAR* pszName, int32_t iLength) argument
579 FDE_GetCSSPropertyValueByName( const FX_WCHAR* pszName, int32_t iLength) argument
605 FDE_GetCSSMediaTypeByName(const FX_WCHAR* pszName, int32_t iLength) argument
626 FDE_GetCSSLengthUnitByName(const FX_WCHAR* pszName, int32_t iLength) argument
647 FDE_GetCSSColorByName(const FX_WCHAR* pszName, int32_t iLength) argument
691 FDE_ParseCSSString(const FX_WCHAR* pszValue, int32_t iValueLen, int32_t& iOffset, int32_t& iLength) argument
707 FDE_ParseCSSURI(const FX_WCHAR* pszValue, int32_t iValueLen, int32_t& iOffset, int32_t& iLength) argument
785 NextValue(FDE_CSSPRIMITIVETYPE& eType, const FX_WCHAR*& pStart, int32_t& iLength) argument
[all...]
/external/pdfium/xfa/src/fgas/src/font/
H A Dfx_gefont.cpp30 int32_t iLength,
34 return pFontMgr->LoadFont(pBuffer, iLength, 0, NULL);
39 if (!pFont->LoadFont(pBuffer, iLength)) {
29 LoadFont(const uint8_t* pBuffer, int32_t iLength, IFX_FontMgr* pFontMgr) argument
H A Dfx_gdifont.cpp57 int32_t iLength,
60 if (!pFont->LoadFont(pBuffer, iLength)) {
191 FX_BOOL CFX_GdiFont::LoadFont(const uint8_t* pBuffer, int32_t iLength) { argument
192 FXSYS_assert(m_hFont == NULL && pBuffer != NULL && iLength > 0);
194 if (pfc.AddMemoryFont(pBuffer, iLength) != Gdiplus::Ok) {
201 m_hRes = ::AddFontMemResourceEx((void*)pBuffer, iLength, 0, &dwCount);
249 int32_t iLength = pFontStream->GetLength(); local
250 if (iLength < 1) {
253 uint8_t* pBuf = FX_Alloc(uint8_t, iLength);
254 iLength
56 LoadFont(const uint8_t* pBuffer, int32_t iLength, IFX_FontMgr* pFontMgr) argument
[all...]
/external/pdfium/xfa/src/fxbarcode/oned/
H A DBC_OnedEAN8Writer.cpp174 int32_t iLength = str.GetLength(); local
175 FXTEXT_CHARPOS* pCharPos = FX_Alloc(FXTEXT_CHARPOS, iLength);
176 FXSYS_memset(pCharPos, 0, sizeof(FXTEXT_CHARPOS) * iLength);
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_checksum.cpp105 int32_t iLength = m_SAXContext.m_TextBuf.GetLength(); local
106 if (iLength < 1) {
113 for (int32_t i = 0; i < iLength; i++) {
121 m_pContext->Update(CFX_ByteStringC(pBuffer, iLength));
H A Dxfa_ffbarcode.cpp214 int32_t iLength = wsName.GetLength(); local
215 if (iLength == 0) {
218 uint32_t uHash = FX_HashCode_String_GetW(wsName.GetPtr(), iLength, TRUE);
H A Dxfa_fontmgr.cpp1794 int32_t iLength = FXSYS_wcslen(pReplace); local
1795 while (iLength > 0) {
1797 while (*pNameText != L',' && iLength > 0) {
1799 iLength--;
1813 iLength--;
/external/pdfium/xfa/src/fxfa/src/fm2js/
H A Dxfa_lexer.cpp525 int32_t iLength = str.GetLength(); local
526 uint32_t uHash = FX_HashCode_String_GetW(str.GetPtr(), iLength, TRUE);
H A Dxfa_simpleexpression.cpp450 int32_t iLength = funcName.GetLength(); local
451 uint32_t uHash = FX_HashCode_String_GetW(funcName.GetBuffer(), iLength, TRUE);
473 int32_t iLength = methodName.GetLength(); local
474 uint32_t uHash = FX_HashCode_String_GetW(methodName.GetPtr(), iLength);
/external/pdfium/core/src/fxcrt/
H A Dfx_arabic.cpp800 int32_t iLength = wsText.GetLength(); local
801 if (iLength < 2) {
805 classes.SetAtGrow(iLength - 1, 0);
806 levels.SetAtGrow(iLength - 1, 0);
809 iLength, 0);
H A Dfx_extension.cpp130 int32_t iLength,
133 if (iLength < 0) {
134 iLength = (int32_t)FXSYS_strlen(pcsStr);
136 CFX_WideString ws = CFX_WideString::FromLocal(pcsStr, iLength);
137 return FXSYS_wcstof(ws.c_str(), iLength, pUsedLen);
140 int32_t iLength,
143 if (iLength < 0) {
144 iLength = (int32_t)FXSYS_wcslen(pwsStr);
146 if (iLength == 0) {
159 while (iUsedLen < iLength) {
129 FXSYS_strtof(const FX_CHAR* pcsStr, int32_t iLength, int32_t* pUsedLen) argument
139 FXSYS_wcstof(const FX_WCHAR* pwsStr, int32_t iLength, int32_t* pUsedLen) argument
219 FX_HashCode_String_GetA(const FX_CHAR* pStr, int32_t iLength, FX_BOOL bIgnoreCase) argument
239 FX_HashCode_String_GetW(const FX_WCHAR* pStr, int32_t iLength, FX_BOOL bIgnoreCase) argument
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A Dapp.cpp318 int iLength = carray.GetLength(); local
320 for (int i = 0; i < iLength; ++i) {
323 if (i < iLength - 1)
759 int iLength = params.size(); local
760 if (iLength > 0 && params[0].GetType() == CJS_Value::VT_object) {
782 switch (iLength) {
/external/pdfium/xfa/src/fgas/include/
H A Dfx_rbk.h65 iLength = 0;
78 int32_t iLength; member in struct:_FX_RTFTEXTOBJ
H A Dfx_tbk.h82 iLength = 0;
98 int32_t iLength; member in struct:_FX_TXTRUN

Completed in 846 milliseconds

12