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

/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_HighLevelEncoder.cpp138 int32_t startpos,
140 if (startpos >= msg.GetLength()) {
162 if ((startpos + charsProcessed) == msg.GetLength()) {
187 FX_WCHAR c = msg.GetAt(startpos + charsProcessed);
272 int32_t p = startpos + charsProcessed + 1;
296 int32_t startpos) {
299 int32_t idx = startpos;
137 lookAheadTest(CFX_WideString msg, int32_t startpos, int32_t currentMode) argument
295 determineConsecutiveDigitCount(CFX_WideString msg, int32_t startpos) argument
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417HighLevelEncoder.cpp152 int32_t startpos,
160 FX_WCHAR ch = msg.GetAt(startpos + idx);
221 if (startpos + idx + 1 < count) {
222 FX_WCHAR next = msg.GetAt(startpos + idx + 1);
265 int32_t startpos,
272 int32_t idx = startpos;
277 while ((startpos + count - idx) >= 6) {
293 if (idx < startpos + count) {
296 for (i = idx; i < startpos + count; i++) {
302 int32_t startpos,
151 encodeText(CFX_WideString msg, int32_t startpos, int32_t count, CFX_WideString& sb, int32_t initialSubmode) argument
264 encodeBinary(CFX_ArrayTemplate<uint8_t>* bytes, int32_t startpos, int32_t count, int32_t startmode, CFX_WideString& sb) argument
301 encodeNumeric(CFX_WideString msg, int32_t startpos, int32_t count, CFX_WideString& sb) argument
342 determineConsecutiveDigitCount( CFX_WideString msg, int32_t startpos) argument
360 determineConsecutiveTextCount( CFX_WideString msg, int32_t startpos) argument
389 determineConsecutiveBinaryCount( CFX_WideString msg, CFX_ArrayTemplate<uint8_t>* bytes, int32_t startpos, int32_t& e) argument
[all...]
/external/python/cpython2/Modules/
H A D_heapqmodule.c36 _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) argument
52 while (pos > startpos) {
77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
83 startpos = pos;
117 return _siftdown(heap, startpos, pos);
379 _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) argument
395 while (pos > startpos){
418 Py_ssize_t startpos, endpos, childpos, rightpos, limit; local
424 startpos = pos;
461 return _siftdownmax(heap, startpos, po
[all...]
/external/swiftshader/third_party/LLVM/lib/Archive/
H A DArchiveWriter.cpp318 unsigned startpos = ARFile.tellp(); local
340 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
/external/pcre/pcrecpp/
H A Dpcrecpp.cc304 int startpos,
348 text.size(), startpos, options, match_data.get(), match_context.get());
303 TryMatch(const StringPiece& text, int startpos, Anchor anchor, bool empty_ok, pcre2_match_data_ptr & match_data) const argument
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_syntax_parser.cpp787 bool CPDF_SyntaxParser::IsWholeWord(FX_FILESIZE startpos, argument
798 if (bCheckRight && startpos + (int32_t)taglen <= limit &&
799 GetCharAt(startpos + (int32_t)taglen, ch)) {
806 if (bCheckLeft && startpos > 0 && GetCharAt(startpos - 1, ch)) {
863 FX_FILESIZE startpos = bForward ? pos - taglen + 1 : pos; local
864 if (!bWholeWord || IsWholeWord(startpos, limit, tag, false)) {
865 m_Pos = startpos;
890 FX_FILESIZE startpos = m_Pos; local
900 return m_Pos - startpos
[all...]
/external/regex-re2/util/
H A Dpcre.cc458 int startpos,
499 startpos,
457 TryMatch(const StringPiece& text, int startpos, Anchor anchor, bool empty_ok, int *vec, int vecsize) const argument
/external/lz4/lib/
H A Dlz4hc.c187 const BYTE** startpos,
225 *startpos = ip+back;
241 if ((int)mlt > longest) { longest = (int)mlt; *matchpos = base + matchIndex + back; *startpos = ip+back; }
180 LZ4HC_InsertAndGetWiderMatch( LZ4HC_CCtx_internal* hc4, const BYTE* const ip, const BYTE* const iLowLimit, const BYTE* const iHighLimit, int longest, const BYTE** matchpos, const BYTE** startpos, const int maxNbAttempts) argument
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_fax.cpp105 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) { argument
106 startpos = std::max(startpos, 0);
108 if (startpos >= endpos)
111 int first_byte = startpos / 8;
114 for (int i = startpos % 8; i <= (endpos - 1) % 8; ++i)
119 for (int i = startpos % 8; i < 8; ++i)
418 int startpos = 0; local
440 FaxFillBits(dest_buf->data(), columns, startpos, startpos
[all...]
/external/regex-re2/re2/
H A Dre2.cc526 int startpos,
537 if (startpos < 0 || startpos > endpos || endpos > text.size()) {
539 LOG(ERROR) << "RE2: invalid startpos, endpos pair.";
544 subtext.remove_prefix(startpos);
561 if (prog_->anchor_start() && startpos != 0)
574 if (startpos != 0)
525 Match(const StringPiece& text, int startpos, int endpos, Anchor re_anchor, StringPiece* submatch, int nsubmatch) const argument
/external/valgrind/coregrind/
H A Dm_main.c601 const HChar *startpos = tmp_str; local
611 nextpos = VG_(strchr)(startpos, ',');
613 nextpos = startpos + VG_(strlen)(startpos);
614 if (startpos != nextpos) {
616 = VG_(malloc)("main.mpclo.2", nextpos - startpos + 1);
617 VG_(memcpy)(VG_(clo_error_markers)[m], startpos,
618 nextpos - startpos);
619 VG_(clo_error_markers)[m][nextpos - startpos] = '\0';
621 startpos
[all...]
/external/python/cpython2/Objects/
H A Dunicodeobject.c3529 Py_ssize_t startpos, Py_ssize_t endpos,
3534 encoding, unicode, size, startpos, endpos, reason);
3537 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos))
3553 Py_ssize_t startpos, Py_ssize_t endpos,
3557 encoding, unicode, size, startpos, endpos, reason);
3570 Py_ssize_t startpos, Py_ssize_t endpos,
3585 encoding, unicode, size, startpos, endpos, reason);
3667 /* startpos for collecting unencodable chars */
4656 /* startpos for collecting unencodable chars */
4850 Py_ssize_t startpos, Py_ssize_
3526 make_encode_exception(PyObject **exceptionObject, const char *encoding, const Py_UNICODE *unicode, Py_ssize_t size, Py_ssize_t startpos, Py_ssize_t endpos, const char *reason) argument
3550 raise_encode_exception(PyObject **exceptionObject, const char *encoding, const Py_UNICODE *unicode, Py_ssize_t size, Py_ssize_t startpos, Py_ssize_t endpos, const char *reason) argument
3566 unicode_encode_call_errorhandler(const char *errors, PyObject **errorHandler, const char *encoding, const char *reason, const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos) argument
4848 make_translate_exception(PyObject **exceptionObject, const Py_UNICODE *unicode, Py_ssize_t size, Py_ssize_t startpos, Py_ssize_t endpos, const char *reason) argument
4871 raise_translate_exception(PyObject **exceptionObject, const Py_UNICODE *unicode, Py_ssize_t size, Py_ssize_t startpos, Py_ssize_t endpos, const char *reason) argument
4886 unicode_translate_call_errorhandler(const char *errors, PyObject **errorHandler, const char *reason, const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos) argument
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/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 509 milliseconds