HomeSort by relevance Sort by last modified time
    Searched defs:tpos (Results 1 - 7 of 7) sorted by null

  /external/syslinux/com32/modules/
dir.c 78 int pos, tpos, colwidth; local
127 pos = tpos = 0;
130 (tpos - pos), "",
133 tpos += colwidth;
ls.c 78 int pos, tpos, colwidth; local
127 pos = tpos = 0;
130 (tpos - pos), "",
133 tpos += colwidth;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 317 char *tpos = (char*)internal_strchr(templ, '*'); local
319 if ((!tpos) || (tpos1 && tpos1 < tpos))
320 tpos = tpos1;
321 if (tpos)
322 tpos[0] = 0;
326 templ = tpos;
327 if (tpos)
328 tpos[0] = tpos == tpos1 ? '$' : '*'
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 385 int tpos = pos; local
386 int maxpos = tpos + n;
387 while (tpos < maxpos && tbuf[tpos++] != '\n') ;
388 n = tpos - pos;
392 pos = tpos;
393 if (tbuf[tpos-1] == '\n') {
  /external/syslinux/com32/cmenu/libmenu/
menu.c 119 uchar tpos; local
125 tpos = (ms->numcols - strlen(ms->title) - 1) >> 1; // center it on line
128 gotoxy(ms->minrow, ms->mincol + tpos);
    [all...]
  /external/pdfium/xfa/fgas/layout/
fgas_rtfbreak.cpp 437 std::deque<FX_TPO> tpos; local
438 EndBreak_BidiLine(&tpos, dwStatus);
440 EndBreak_Alignment(tpos, bAllChars, dwStatus);
522 void CFX_RTFBreak::EndBreak_BidiLine(std::deque<FX_TPO>* tpos,
585 tpos->push_back(tpo);
601 tpos->push_back(tpo);
604 std::sort(tpos->begin(), tpos->end());
606 for (const auto& it : *tpos) {
613 void CFX_RTFBreak::EndBreak_Alignment(const std::deque<FX_TPO>& tpos,
    [all...]
fgas_textbreak.cpp 697 void CFX_TxtBreak::EndBreak_BidiLine(std::deque<FX_TPO>* tpos,
758 tpos->push_back(tpo);
774 tpos->push_back(tpo);
778 std::sort(tpos->begin(), tpos->end());
781 tpo = (*tpos)[i];
803 tpos->push_back({0, 0});
807 void CFX_TxtBreak::EndBreak_Alignment(const std::deque<FX_TPO>& tpos,
822 tpo = tpos[i];
861 tpo = tpos[i]
942 std::deque<FX_TPO> tpos; local
    [all...]

Completed in 2900 milliseconds