Searched defs:nLength (Results 1 - 16 of 16) sorted by relevance

/external/pdfium/xfa/fde/
H A Dcfde_txtedtdorecord_insert.cpp16 int32_t nLength)
19 FX_WCHAR* lpBuffer = m_wsInsert.GetBuffer(nLength);
20 FXSYS_memcpy(lpBuffer, lpText, nLength * sizeof(FX_WCHAR));
12 CFDE_TxtEdtDoRecord_Insert( CFDE_TxtEdtEngine* pEngine, int32_t nCaret, const FX_WCHAR* lpText, int32_t nLength) argument
H A Dcfde_txtedttextset.cpp52 int32_t nLength = piece.nCount; local
53 if (nLength < 1)
64 tr.iLength = nLength;
H A Dcfde_txtedtbuf.cpp86 CFX_WideString CFDE_TxtEdtBuf::GetRange(int32_t nBegin, int32_t nLength) const {
87 if (nLength == 0 || GetTextLength() == 0)
90 ASSERT(nBegin >= 0 && nLength > 0 && nBegin < GetTextLength() &&
91 nBegin + nLength <= GetTextLength());
97 int32_t nLeave = nLength;
101 FX_WCHAR* lpDstBuf = wsText.GetBuffer(nLength);
129 int32_t nLength) {
131 ASSERT(nLength > 0);
137 int32_t nLengthTemp = nLength;
180 m_nTotal += nLength;
127 Insert(int32_t nPos, const FX_WCHAR* lpText, int32_t nLength) argument
183 Delete(int32_t nIndex, int32_t nLength) argument
[all...]
H A Dcfde_txtedtengine.cpp143 int32_t nLength = wsText.GetLength(); local
144 if (nLength > 0) {
146 FX_WCHAR* lpBuffer = wsTemp.GetBuffer(nLength);
147 FXSYS_memcpy(lpBuffer, wsText.c_str(), nLength * sizeof(FX_WCHAR));
148 ReplaceParagEnd(lpBuffer, nLength, false);
149 wsTemp.ReleaseBuffer(nLength);
150 if (m_nLimit > 0 && nLength > m_nLimit) {
151 wsTemp.Delete(m_nLimit, nLength - m_nLimit);
152 nLength = m_nLimit;
156 m_pTxtBuf->Insert(nLength,
318 Insert(int32_t nStart, const FX_WCHAR* lpText, int32_t nLength) argument
475 Replace(int32_t nStart, int32_t nLength, const CFX_WideString& wsReplace) argument
664 int32_t nLength = GetTextLength(); local
729 GetPreDeleteText(int32_t nIndex, int32_t nLength) argument
736 GetPreInsertText(int32_t nIndex, const FX_WCHAR* lpText, int32_t nLength) argument
761 GetPreReplaceText(int32_t nIndex, int32_t nOriginLength, const FX_WCHAR* lpText, int32_t nLength) argument
781 Inner_Insert(int32_t nStart, const FX_WCHAR* lpText, int32_t nLength) argument
1062 ReplaceParagEnd(FX_WCHAR*& lpText, int32_t& nLength, bool bPreIsCR) argument
1110 int32_t nLength = wsText.GetLength(); local
1142 int32_t nLength = wsText.GetLength(); local
[all...]
/external/pdfium/fpdfsdk/
H A Dfpdfppo.cpp79 int nLength = rangstring.GetLength(); local
81 for (int i = 0; i < nLength; ++i) {
89 while (nStringTo < nLength) {
92 nStringTo = nLength;
/external/pdfium/fpdfsdk/fpdfxfa/
H A Dcpdfxfa_context.cpp318 int nLength = 2048; local
319 char* pBuff = new char[nLength];
320 nLength = m_pFormFillEnv->JS_appResponse(wsQuestion.c_str(), wsTitle.c_str(),
322 bMark, pBuff, nLength);
323 if (nLength > 0) {
324 nLength = nLength > 2046 ? 2046 : nLength;
325 pBuff[nLength] = 0;
326 pBuff[nLength
[all...]
/external/pdfium/fpdfsdk/javascript/
H A DJS_GlobalData.cpp223 int32_t nLength = 0; local
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) {
343 LoadFileBuffer(const FX_WCHAR* sFilePath, uint8_t*& pBuffer, int32_t& nLength) argument
349 WriteFileBuffer(const FX_WCHAR* sFilePath, const FX_CHAR* pBuffer, int32_t nLength) argument
/external/pdfium/core/fxcrt/
H A Dfx_xml_parser.cpp186 FX_FILESIZE nLength = m_pFileRead->GetSize(); local
188 if (m_nStart >= nLength)
193 std::min(FX_XMLDATASTREAM_BufferSize, nLength - m_nStart));
/external/pdfium/core/fpdfdoc/
H A Dcpdf_interform.cpp527 FX_STRSIZE nLength; local
528 name_extractor.GetNext(pName, nLength);
531 while (nLength > 0) {
533 CFX_WideString name = CFX_WideString(pName, nLength);
538 name_extractor.GetNext(pName, nLength);
550 FX_STRSIZE nLength; local
551 name_extractor.GetNext(pName, nLength);
554 while (nLength > 0 && pNode) {
556 CFX_WideString name = CFX_WideString(pName, nLength);
558 name_extractor.GetNext(pName, nLength);
569 FX_STRSIZE nLength; local
[all...]
/external/pdfium/xfa/fgas/font/
H A Dcfgas_fontmgr.cpp1004 unsigned long nLength = 0; local
1005 unsigned int error = FXFT_Load_Sfnt_Table(pFace, dwTag, 0, nullptr, &nLength);
1006 if (error == 0 && nLength != 0) {
1007 table.resize(nLength);
/external/pdfium/xfa/fwl/
H A Dcfwl_edit.cpp328 int32_t nLength; local
330 nLength = m_EdtEngine.GetSelRange(i, &nStart);
331 wsCopy += m_EdtEngine.GetText(nStart, nLength);
343 int32_t nStart, nLength; local
345 nLength = m_EdtEngine.GetSelRange(i, &nStart);
346 wsTemp = m_EdtEngine.GetText(nStart, nLength);
/external/pdfium/xfa/fxfa/fm2js/
H A Dxfa_fm2jscontext.cpp382 int32_t nLength = wsPattern.GetLength(); local
386 while (i < nLength) {
394 nLength--;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 615 milliseconds