Searched defs:iLen (Results 1 - 25 of 32) sorted by relevance

12

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
H A DBase64Coder.java93 * @param iLen
102 public static String encodeLines(byte[] in, int iOff, int iLen, int lineLen, argument
107 int lines = (iLen + blockLen - 1) / blockLen;
108 int bufLen = ((iLen + 2) / 3) * 4 + lines * lineSeparator.length();
111 while (ip < iLen) {
112 int l = Math.min(iLen - ip, blockLen);
138 * @param iLen
142 public static char[] encode(byte[] in, int iLen) { argument
143 return encode(in, 0, iLen);
154 * @param iLen
159 encode(byte[] in, int iOff, int iLen) argument
265 decode(char[] in, int iOff, int iLen) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aalinetemp.h111 GLint iLen, i; local
192 iLen = (GLint) line.len;
195 for (i = 0; i < iLen; i++) {
/external/pdfium/xfa/src/fdp/src/css/
H A Dfde_cssstylesheet.cpp193 int32_t iLen; local
194 const FX_WCHAR* psz = pSyntax->GetCurrentString(iLen);
196 FDE_GetCSSMediaTypeByName(psz, iLen);
413 int32_t iLen) {
414 FXSYS_assert(pStaticStore != NULL && psz != NULL && iLen > 0);
416 const FX_WCHAR* pEnd = psz + iLen;
411 FromString(IFX_MEMAllocator* pStaticStore, const FX_WCHAR* psz, int32_t iLen) argument
H A Dfde_cssstylesheet.h14 int32_t iLen,
17 m_dwHash(FX_HashCode_String_GetW(psz, iLen, bIgnoreCase)),
26 int32_t iLen);
33 int32_t iLen,
12 CFDE_CSSSelector(FDE_CSSSELECTORTYPE eType, const FX_WCHAR* psz, int32_t iLen, FX_BOOL bIgnoreCase) argument
H A Dfde_csssyntax.cpp84 int32_t iLen = m_TextPlane.LoadFromStream(m_pStream, m_iStreamPos, local
87 if (iLen < 1) {
300 int32_t iLen = m_TextData.GetLength(); local
302 if (FXSYS_wcsncmp(L"charset", psz, iLen) == 0) {
304 } else if (FXSYS_wcsncmp(L"import", psz, iLen) == 0) {
312 } else if (FXSYS_wcsncmp(L"media", psz, iLen) == 0) {
316 } else if (FXSYS_wcsncmp(L"font-face", psz, iLen) == 0) {
319 } else if (FXSYS_wcsncmp(L"page", psz, iLen) == 0) {
H A Dfde_cssdatatable.h102 CFDE_CSSValueListParser(const FX_WCHAR* psz, int32_t iLen, FX_WCHAR separator) argument
103 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) {
104 FXSYS_assert(psz != NULL && iLen > 0);
H A Dfde_cssstyleselector.cpp34 int32_t iLen; local
36 ((IFDE_CSSPrimitiveValue*)(pCounter->GetValue(0)))->GetString(iLen);
552 int32_t iLen) {
553 FXSYS_assert(pDecl != NULL && psz != NULL && iLen > 0);
558 if (pSyntax->Init(psz, iLen, 32, TRUE)) {
559 int32_t iLen; local
569 psz = pSyntax->GetCurrentString(iLen);
570 args.pProperty = FDE_GetCSSPropertyByName(psz, iLen);
572 wsName = CFX_WideStringC(psz, iLen);
576 psz = pSyntax->GetCurrentString(iLen);
550 AppendInlineStyle(CFDE_CSSDeclaration* pDecl, const FX_WCHAR* psz, int32_t iLen) argument
1122 int32_t iLen; local
[all...]
/external/pdfium/xfa/src/fgas/src/xml/
H A Dfx_sax_imp.cpp245 int32_t iLen = csEntity.GetLength(); local
246 if (iLen > 0) {
251 if (iLen > 1 && csEntity[1] == 'x') {
252 for (int32_t i = 2; i < iLen; i++) {
265 for (int32_t i = 1; i < iLen; i++) {
556 int32_t iLen = m_SkipStack.GetSize(); local
561 iLen--;
562 FXSYS_assert(iLen > -1);
563 m_SkipStack.RemoveAt(iLen, 1);
564 m_SkipChar = iLen
[all...]
/external/pdfium/xfa/src/fwl/src/basewidget/
H A Dfwl_pushbuttonimp.cpp68 int32_t iLen = wsCaption.GetLength(); local
69 if (iLen > 0) {
H A Dfwl_tooltipctrlimp.cpp88 int32_t iLen = wsCaption.GetLength(); local
89 if (iLen > 0) {
H A Dfwl_checkboximp.cpp144 int32_t iLen = wsCaption.GetLength(); local
145 if (iLen <= 0)
/external/pdfium/xfa/src/fxbarcode/oned/
H A DBC_OnedEAN13Writer.cpp170 int32_t iLen = str.GetLength(); local
171 FXTEXT_CHARPOS* pCharPos = FX_Alloc(FXTEXT_CHARPOS, iLen);
172 FXSYS_memset(pCharPos, 0, sizeof(FXTEXT_CHARPOS) * iLen);
211 iLen = tempStr.GetLength();
223 ge.DrawNormalText(iLen, pCharPos + 1, m_pFont,
235 device->DrawNormalText(iLen, pCharPos + 1, m_pFont,
241 iLen = tempStr.GetLength();
248 ge.DrawNormalText(iLen, pCharPos + 7, m_pFont,
262 device->DrawNormalText(iLen, pCharPos + 7, m_pFont,
268 iLen
[all...]
H A DBC_OnedEAN8Writer.cpp178 int32_t iLen = tempStr.GetLength(); local
219 ge.DrawNormalText(iLen, pCharPos, m_pFont,
229 device->DrawNormalText(iLen, pCharPos, m_pFont,
235 iLen = tempStr.GetLength();
243 ge.DrawNormalText(iLen, pCharPos + 4, m_pFont,
257 device->DrawNormalText(iLen, pCharPos + 4, m_pFont,
H A DBC_OnedUPCAWriter.cpp126 int32_t iLen = str.GetLength(); local
127 FXTEXT_CHARPOS* pCharPos = FX_Alloc(FXTEXT_CHARPOS, iLen);
128 FXSYS_memset(pCharPos, 0, sizeof(FXTEXT_CHARPOS) * iLen);
137 iLen = tempStr.GetLength();
187 ge.DrawNormalText(iLen, pCharPos + 1, m_pFont,
199 device->DrawNormalText(iLen, pCharPos + 1, m_pFont,
205 iLen = tempStr.GetLength();
211 ge.DrawNormalText(iLen, pCharPos + 6, m_pFont,
225 device->DrawNormalText(iLen, pCharPos + 6, m_pFont,
231 iLen
[all...]
H A DBC_OneDimWriter.cpp246 int32_t iLen = str.GetLength(); local
247 FXTEXT_CHARPOS* pCharPos = FX_Alloc(FXTEXT_CHARPOS, iLen);
248 FXSYS_memset(pCharPos, 0, sizeof(FXTEXT_CHARPOS) * iLen);
/external/pdfium/xfa/src/fxfa/src/parser/
H A Dxfa_localemgr.cpp1227 int32_t iLen = wsLocaleName.GetLength(); local
1228 if (iLen < 2) {
H A Dxfa_script_nodehelper.cpp307 int32_t iLen = wsCondition.GetLength(); local
311 if (iLen == 0) {
317 for (; i < iLen; ++i) {
336 wsIndex = wsCondition.Mid(i, iLen - 1 - i);
H A Dxfa_document_serialize.cpp74 int32_t iLen = str.GetLength(); local
75 for (int32_t i = 0; i < iLen; i++) {
100 int32_t iLen = str.GetLength(); local
101 for (int32_t i = 0; i < iLen; i++) {
/external/pdfium/core/src/fxcrt/
H A Dfx_xml_parser.cpp153 int32_t i = 0, iLen = str.GetLength(); local
160 if (i == iLen) {
166 if (i == iLen) {
/external/pdfium/xfa/src/fgas/src/crt/
H A Dfx_stream.cpp209 int32_t iLen = std::min((m_iLength - iPosition) / 2, iMaxLength); local
210 if (iLen <= 0) {
213 iLen = FXSYS_fread(pStr, 2, iLen, m_hFile);
215 while (*pStr != L'\0' && iCount < iLen) {
567 int32_t iLen = std::min(m_iLength - m_iPosition, iBufferSize); local
568 if (iLen <= 0) {
571 FXSYS_memcpy(pBuffer, m_pData + m_iPosition, iLen);
572 m_iPosition += iLen;
573 return iLen;
580 int32_t iLen = std::min((m_iLength - m_iPosition) / 2, iMaxLength); local
597 int32_t iLen = std::min(m_iTotalSize - m_iPosition, iBufferSize); local
612 int32_t iLen = std::min((m_iTotalSize - m_iPosition) / 2, iLength); local
770 int32_t iLen; local
1029 int32_t iLen = std::min(m_iStart + m_iLength - m_iPosition, iBufferSize); local
1051 int32_t iLen = iEnd - m_iPosition; local
1079 int32_t iLen = iBufferSize; local
1107 int32_t iLen = iLength; local
1224 int32_t iLen = m_pStream->ReadData((uint8_t*)buffer, (int32_t)size); local
1354 int32_t iLen = m_pStream->WriteData((uint8_t*)pData, (int32_t)size); local
[all...]
/external/pdfium/xfa/src/fwl/src/theme/
H A Dwidgettp.cpp59 int32_t iLen = pParams->m_wsText.GetLength(); local
60 if (iLen <= 0)
69 m_pTextOut->DrawLogicText(pParams->m_wsText, iLen, pParams->m_rtPart);
/external/libxml2/
H A Dcatalog.c3239 int i, iLen; local
3254 iLen = strlen((const char*)path);
3255 for(i = 0; i < iLen; i++) {
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp322 CFX_ByteString ParseStyle(const FX_CHAR* pStyle, int iLen, int iIndex) { argument
324 if (!iLen || iLen <= iIndex) {
327 while (iIndex < iLen) {
338 int32_t iLen = bsStyle.GetLength(); local
339 if (!iLen) {
346 if (!pStyle || pStyle->len > iLen) {
/external/pdfium/xfa/src/fdp/src/xml/
H A Dfde_xml.cpp2501 int32_t iLen = csEntity.GetLength(); local
2502 if (iLen > 0) {
2506 if (iLen > 1 && csEntity[1] == L'x') {
2507 for (int32_t i = 2; i < iLen; i++) {
2520 for (int32_t i = 1; i < iLen; i++) {
2570 int32_t iLen = csEntity.GetLength(); local
2571 if (iLen > 0) {
2575 if (iLen > 1 && csEntity[1] == L'x') {
2576 for (int32_t i = 2; i < iLen; i++) {
2589 for (int32_t i = 1; i < iLen;
[all...]
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_textlayout.cpp1631 int32_t iLen = wsText.GetLength(); local
1632 if (iLen == 0) {
1635 FX_WCHAR* psz = wsText.GetBuffer(iLen);
1638 for (int32_t i = 0; i < iLen; i++) {
1649 wsText.ReleaseBuffer(iLen);

Completed in 315 milliseconds

12