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

1 2

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
Base64Coder.java 93 * @param iLen
102 public static String encodeLines(byte[] in, int iOff, int iLen, int lineLen,
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) {
143 return encode(in, 0, iLen);
154 * @param iLen
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssvaluelistparser.cpp 12 int32_t iLen,
14 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) {
15 ASSERT(psz && iLen > 0);
cfx_cssvaluelistparser.h 15 CFX_CSSValueListParser(const wchar_t* psz, int32_t iLen, wchar_t separator);
cfx_cssselector.h 22 int32_t iLen,
cfx_cssselector.cpp 31 int32_t iLen,
34 m_dwHash(FX_HashCode_GetW(WideStringView(psz, iLen), bIgnoreCase)) {}
  /external/pdfium/fxbarcode/oned/
BC_OnedUPCAWriter.cpp 116 int32_t iLen = str.GetLength();
117 std::vector<FXTEXT_CHARPOS> charpos(iLen);
122 iLen = tempStr.GetLength();
164 device->DrawNormalText(iLen, &charpos[1], m_pFont.Get(),
169 iLen = tempStr.GetLength();
178 device->DrawNormalText(iLen, &charpos[6], m_pFont.Get(),
183 iLen = tempStr.GetLength();
194 device->DrawNormalText(iLen, charpos.data(), m_pFont.Get(),
199 iLen = tempStr.GetLength();
209 device->DrawNormalText(iLen, &charpos[11], m_pFont.Get()
    [all...]
BC_OnedEAN13Writer.cpp 148 int32_t iLen = str.GetLength();
149 std::vector<FXTEXT_CHARPOS> charpos(iLen);
177 iLen = tempStr.GetLength();
188 device->DrawNormalText(iLen, &charpos[1], m_pFont.Get(),
193 iLen = tempStr.GetLength();
203 device->DrawNormalText(iLen, &charpos[7], m_pFont.Get(),
208 iLen = tempStr.GetLength();
219 device->DrawNormalText(iLen, charpos.data(), m_pFont.Get(),
BC_OnedEAN8Writer.cpp 151 size_t iLen = tempStr.GetLength();
180 device->DrawNormalText(iLen, charpos.data(), m_pFont.Get(),
185 iLen = tempStr.GetLength();
195 device->DrawNormalText(iLen, &charpos[4], m_pFont.Get(),
BC_OneDimWriter.cpp 214 int32_t iLen = str.GetLength();
215 std::vector<FXTEXT_CHARPOS> charpos(iLen);
  /external/pdfium/core/fxcrt/
cfx_seekablestreamproxy.cpp 238 size_t iLen = ReadData(reinterpret_cast<uint8_t*>(pStr), iBytes);
239 iMaxLength = iLen / 2;
254 size_t iLen = ReadData(buf.data(), iBytes);
260 reinterpret_cast<const char*>(buf.data()), iLen, pStr, iMaxLength);
261 Seek(From::Current, iSrc - iLen);
  /external/pdfium/core/fxcrt/xml/
cfx_saxreader.cpp 298 int32_t iLen = csEntity.GetLength();
299 if (iLen == 0)
306 if (iLen > 1 && csEntity[1] == 'x') {
307 for (int32_t i = 2; i < iLen; i++) {
319 for (int32_t i = 1; i < iLen; i++) {
cxml_parser.cpp 158 int32_t i = 0, iLen = str.GetLength();
166 if (i == iLen)
170 if (i == iLen)
  /external/pdfium/fxjs/
cfxjse_formcalc_context.cpp     [all...]
cfxjse_resolveprocessor.cpp 572 int32_t iLen = wsCondition.GetLength();
576 for (; i < iLen; ++i) {
605 if (iFoundCount == 1 && !iLen)
608 int32_t iIndex = wsCondition.Mid(i, iLen - 1 - i).GetInteger();
670 int32_t iLen = wsCondition.GetLength();
671 if (!iLen) {
698 if (iLen > 1 && (wsCondition[1] == '[' || wsCondition[1] == '('))
  /external/pdfium/xfa/fxfa/parser/
cxfa_nodehelper.cpp 278 int32_t iLen = wsCondition.GetLength();
281 if (iLen == 0) {
289 for (; i < iLen; ++i) {
303 wsIndex = wsCondition.Mid(i, iLen - 1 - i);
xfa_utils.cpp 53 int32_t iLen = str.GetLength();
54 for (int32_t i = 0; i < iLen; i++) {
85 int32_t iLen = str.GetLength();
86 for (int32_t i = 0; i < iLen; i++) {
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 111 GLint iLen, i;
193 iLen = (GLint) line.len;
196 for (i = 0; i < iLen; i++) {
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 70 int32_t ParseTimeZone(const wchar_t* pStr, int32_t iLen, FX_TIMEZONE* tz) {
73 if (iLen < 0)
78 while (iStart < iLen && iStart < iEnd)
81 if (iStart < iLen && pStr[iStart] == ':')
85 while (iStart < iLen && iStart < iEnd)
159 int32_t iLen = wsOutput.GetLength();
161 for (; i < iLen && i < 5; i++) {
    [all...]
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.cpp 44 int32_t iLen = pParams->m_wsText.GetLength();
45 if (iLen <= 0)
56 WideStringView(pParams->m_wsText.c_str(), iLen),
  /external/pdfium/core/fxge/
cfx_fontmapper.cpp 206 ByteString ParseStyle(const char* pStyle, int iLen, int iIndex) {
208 if (!iLen || iLen <= iIndex)
210 while (iIndex < iLen) {
  /external/pdfium/xfa/fxfa/
cxfa_textlayout.cpp 917 int32_t iLen = wsText.GetLength();
918 if (iLen == 0)
921 wchar_t* psz = wsText.GetBuffer(iLen);
924 for (int32_t i = 0; i < iLen; i++) {
934 wsText.ReleaseBuffer(iLen);
    [all...]
cxfa_widgetacc.cpp 78 uint8_t* XFA_RemoveBase64Whitespace(const uint8_t* pStr, int32_t iLen) {
81 if (iLen == 0) {
82 iLen = strlen((char*)pStr);
84 pCP = FX_Alloc(uint8_t, iLen + 1);
85 for (; i < iLen; i++) {
105 int32_t iLen = strlen((char*)pBuffer);
108 for (; i + 3 < iLen; i += 4) {
    [all...]
  /external/golang-protobuf/proto/
encode.go     [all...]
  /external/libxml2/
catalog.c     [all...]
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.24/
truth-0.24.jar 

Completed in 388 milliseconds

1 2