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

1 2

  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 42 # define re_search(bufp, string, size, startpos, range, regs) \
43 __re_search (bufp, string, size, startpos, range, regs)
47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
heapq.py 239 # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos
242 def _siftdown(heap, startpos, pos):
246 while pos > startpos:
297 startpos = pos
313 _siftdown(heap, startpos, pos)
315 def _siftdown_max(heap, startpos, pos):
320 while pos > startpos:
333 startpos = pos
349 _siftdown_max(heap, startpos, pos)
doctest.py 286 startpos, endpos = 0, len(got)
290 startpos = len(w)
302 if startpos > endpos:
313 # Search for an empty string succeeds, and doesn't change startpos.
314 startpos = got.find(w, startpos, endpos)
315 if startpos < 0:
317 startpos += len(w)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
heapq.py 239 # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos
242 def _siftdown(heap, startpos, pos):
246 while pos > startpos:
297 startpos = pos
313 _siftdown(heap, startpos, pos)
315 def _siftdown_max(heap, startpos, pos):
320 while pos > startpos:
333 startpos = pos
349 _siftdown_max(heap, startpos, pos)
doctest.py 286 startpos, endpos = 0, len(got)
290 startpos = len(w)
302 if startpos > endpos:
313 # Search for an empty string succeeds, and doesn't change startpos.
314 startpos = got.find(w, startpos, endpos)
315 if startpos < 0:
317 startpos += len(w)
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 68 void _FaxFillBits(FX_LPBYTE dest_buf, int columns, int startpos, int endpos)
70 if (startpos < 0) {
71 startpos = 0;
79 if (startpos >= endpos) {
82 int first_byte = startpos / 8;
85 for (int i = startpos % 8; i <= (endpos - 1) % 8; i ++) {
91 for (i = startpos % 8; i < 8; i ++) {
507 int startpos = 0; local
530 _FaxFillBits(dest_buf, columns, startpos, startpos + run_len);
    [all...]
  /external/smack/src/org/xbill/DNS/
Message.java 438 int startpos = out.current(); local
457 out.jump(startpos);
474 out.jump(startpos);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 513 startpos = i
517 endpos = str.find('\n', startpos) + 1
549 i = startpos
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 513 startpos = i
517 endpos = str.find('\n', startpos) + 1
549 i = startpos
  /external/chromium_org/third_party/re2/re2/
re2.cc 544 int startpos,
555 if (startpos < 0 || startpos > endpos || endpos > text.size()) {
557 LOG(ERROR) << "RE2: invalid startpos, endpos pair.";
562 subtext.remove_prefix(startpos);
579 if (prog_->anchor_start() && startpos != 0)
592 if (startpos != 0)
    [all...]
re2.h 453 // Match against text starting at offset startpos
473 int startpos,
    [all...]
  /external/regex-re2/re2/
re2.cc 526 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)
    [all...]
re2.h 453 // Match against text starting at offset startpos
473 int startpos,
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp 2581 FX_FILESIZE startpos = bForward ? pos - taglen + 1 : pos; local
2672 FX_FILESIZE startpos = m_Pos; local
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.h 484 int startpos,
pcre.cc 463 int startpos,
504 startpos,
    [all...]
  /external/regex-re2/util/
pcre.h 478 int startpos,
pcre.cc 458 int startpos,
499 startpos,
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
cpplint.py     [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_parser.h 313 FX_BOOL IsWholeWord(FX_FILESIZE startpos, FX_FILESIZE limit, FX_LPCBYTE tag, FX_DWORD taglen);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
cpplint.py     [all...]
  /art/tools/
cpplint.py     [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]
  /external/chromium_org/third_party/ply/
yacc.py 225 startpos = getattr(self.slice[n],"lexpos",0)
226 endpos = getattr(self.slice[n],"endlexpos",startpos)
227 return startpos,endpos
    [all...]

Completed in 797 milliseconds

1 2