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

1 2

  /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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
TokenIterator.java 112 int startpos = position; local
155 startpos);
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 103 void _FaxFillBits(FX_LPBYTE dest_buf, int columns, int startpos, int endpos)
105 if (startpos < 0) {
106 startpos = 0;
114 if (startpos >= endpos) {
117 int first_byte = startpos / 8;
120 for (int i = startpos % 8; i <= (endpos - 1) % 8; i ++) {
126 for (i = startpos % 8; i < 8; i ++) {
542 int startpos = 0; local
565 _FaxFillBits(dest_buf, columns, startpos, startpos + run_len)
    [all...]
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
NeuQuant.java 184 int previouscol, startpos; local
187 startpos = 0;
218 netindex[previouscol] = (startpos + i) >> 1;
222 startpos = i;
225 netindex[previouscol] = (startpos + maxnetpos) >> 1;
  /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/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/valgrind/coregrind/
m_main.c 627 const HChar *startpos = tmp_str; local
637 nextpos = VG_(strchr)(startpos, ',');
639 nextpos = startpos + VG_(strlen)(startpos);
640 if (startpos != nextpos) {
642 = VG_(malloc)("main.mpclo.2", nextpos - startpos + 1);
643 VG_(memcpy)(VG_(clo_error_markers)[m], startpos,
644 nextpos - startpos);
645 VG_(clo_error_markers)[m][nextpos - startpos] = '\0';
647 startpos = *nextpos ? nextpos + 1 : nextpos
    [all...]
  /external/pcre/dist/
pcrecpp.h 675 int startpos,
pcrecpp.cc 503 int startpos,
537 startpos,
  /external/lz4/lib/
lz4hc.c 213 const BYTE** startpos,
251 *startpos = startt;
269 if ((int)mlt > longest) { longest = (int)mlt; *matchpos = base + matchIndex + back; *startpos = ip+back; }
  /external/regex-re2/util/
pcre.h 478 int startpos,
pcre.cc 458 int startpos,
499 startpos,
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp 2594 FX_FILESIZE startpos = bForward ? pos - taglen + 1 : pos; local
2685 FX_FILESIZE startpos = m_Pos; local
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
yacc.py 136 startpos = getattr(self.slice[n],"lexpos",0)
137 endpos = getattr(self.slice[n],"endlexpos",startpos)
138 return startpos,endpos
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
yacc.py 136 startpos = getattr(self.slice[n],"lexpos",0)
137 endpos = getattr(self.slice[n],"endlexpos",startpos)
138 return startpos,endpos
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
yacc.py 136 startpos = getattr(self.slice[n],"lexpos",0)
137 endpos = getattr(self.slice[n],"endlexpos",startpos)
138 return startpos,endpos
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_parser.h 309 FX_BOOL IsWholeWord(FX_FILESIZE startpos, FX_FILESIZE limit, FX_LPCBYTE tag, FX_DWORD taglen);
  /external/zxing/core/
core.jar 
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
cpplint.py     [all...]

Completed in 2224 milliseconds

1 2