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

  /external/chromium/third_party/icu/source/common/
ubidiln.c 438 int32_t firstRun, endRun, limitRun, runCount;
462 firstRun=0;
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
469 ++firstRun;
471 if(firstRun>=runCount) {
476 for(limitRun=firstRun; ++limitRun<runCount && levels[runs[limitRun].logicalStart]>=maxLevel;) {}
478 /* Swap the entire sequence of runs from firstRun to limitRun-1. */
480 while(firstRun<endRun) {
481 tempRun = runs[firstRun];
    [all...]
  /external/icu4c/common/
ubidiln.c 438 int32_t firstRun, endRun, limitRun, runCount;
462 firstRun=0;
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
469 ++firstRun;
471 if(firstRun>=runCount) {
476 for(limitRun=firstRun; ++limitRun<runCount && levels[runs[limitRun].logicalStart]>=maxLevel;) {}
478 /* Swap the entire sequence of runs from firstRun to limitRun-1. */
480 while(firstRun<endRun) {
481 tempRun = runs[firstRun];
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 298 bool firstRun = true;
379 if (firstRun) {
381 firstRun = false;
    [all...]
  /external/webkit/WebCore/platform/text/
BidiResolver.h 167 Run* firstRun() const { return m_firstRun; }
    [all...]
  /external/icu4c/layoutex/
ParagraphLayout.cpp 1005 le_int32 firstRun = getCharRun(runStart);
1007 le_int32 startRun = (runDirection == UBIDI_LTR)? firstRun : lastRun;
1008 le_int32 stopRun = (runDirection == UBIDI_LTR)? lastRun + 1 : firstRun - 1;
1012 le_int32 firstChar = (run == firstRun)? runStart : fStyleRunInfo[run].runBase;
    [all...]

Completed in 87 milliseconds