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

1 2 3 4

  /external/skia/src/gpu/text/
GrTextBlobCache.h 33 GrAtlasTextBlob* createBlob(int glyphCount, int runCount) {
34 return GrAtlasTextBlob::Create(&fPool, glyphCount, runCount);
38 int runCount = 0;
39 BlobGlyphCount(&glyphCount, &runCount, blob);
40 GrAtlasTextBlob* cacheBlob = GrAtlasTextBlob::Create(&fPool, glyphCount, runCount);
49 int runCount = 0;
50 BlobGlyphCount(&glyphCount, &runCount, blob);
51 GrAtlasTextBlob* cacheBlob = GrAtlasTextBlob::Create(&fPool, glyphCount, runCount);
86 static void BlobGlyphCount(int* glyphCount, int* runCount, const SkTextBlob* blob) {
88 for (; !itCounter.done(); itCounter.next(), (*runCount)++)
    [all...]
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 63 int runCount = 1;
66 runCount = method.getAnnotation(FlakyTest.class).tolerance();
68 runCount = method.getAnnotation(RepetitiveTest.class).numIterations();
73 final int tolerance = runCount;
112 runMethod(method, runCount, isRepetitive);
120 int runCount = 0;
132 runCount++;
136 iterations.putInt("currentiterations", runCount);
140 } while ((runCount < tolerance) && (isRepetitive || exception != null));
  /external/icu/icu4c/source/common/
ubidiln.c 170 pLineBiDi->runCount=-1;
306 int32_t runCount, visualStart, logicalLimit, logicalFirst, i;
312 runCount=ubidi_countRuns((UBiDi *)pBiDi, &errorCode);
322 for(i=0; i<runCount; i++) {
357 return pBiDi->runCount;
371 RETURN_IF_BAD_RANGE(runIndex, 0, pBiDi->runCount, errorCode, UBIDI_LTR);
393 pBiDi->runCount=1;
405 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
431 * this run and can --runCount. If it is later part of the all-runs
432 * reordering, then runCount is adjusted accordingly
    [all...]
ubidiwrt.c 355 int32_t run, runCount, logicalStart, runLength;
384 runCount=ubidi_countRuns(pBiDi, pErrorCode);
435 for(run=0; run<runCount; ++run) {
458 for(run=0; run<runCount; ++run) {
495 (/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L)) {
539 (/*run<runCount-1 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart])))) {
562 for(run=runCount; --run>=0;) {
583 for(run=runCount; --run>=0;) {
589 if(/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L) {
611 if(/*run<runCount-1 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart])))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 155 lineBidi.runCount = -1;
284 int runCount = bidi.runCount;
288 for (int i = 0; i < runCount; i++) {
323 bidi.runCount = 1;
333 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
359 * this run and can --runCount. If it is later part of the all-runs
360 * reordering, then runCount is adjusted accordingly.
372 int firstRun, endRun, limitRun, runCount;
383 runCount = bidi.runCount
    [all...]
BidiWriter.java 239 int run, runCount;
242 runCount = bidi.countRuns();
285 for (run = 0; run < runCount; ++run) {
302 for (run = 0; run < runCount; ++run) {
383 for(run = runCount; --run >= 0; ) {
399 for (run = runCount; --run >= 0; ) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 154 lineBidi.runCount = -1;
283 int runCount = bidi.runCount;
287 for (int i = 0; i < runCount; i++) {
322 bidi.runCount = 1;
332 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
358 * this run and can --runCount. If it is later part of the all-runs
359 * reordering, then runCount is adjusted accordingly.
371 int firstRun, endRun, limitRun, runCount;
382 runCount = bidi.runCount
    [all...]
BidiWriter.java 238 int run, runCount;
241 runCount = bidi.countRuns();
284 for (run = 0; run < runCount; ++run) {
301 for (run = 0; run < runCount; ++run) {
382 for(run = runCount; --run >= 0; ) {
398 for (run = runCount; --run >= 0; ) {
  /external/droiddriver/src/io/appium/droiddriver/helpers/
BaseDroidDriverTest.java 240 for (int runCount = 0; runCount < tolerance; runCount++) {
241 if (runCount > 0) {
242 Logs.logfmt(Log.INFO, "Running %s round %d of %d attempts", fName, runCount + 1, tolerance);
254 if (shouldSkipRemainingTests(exception) || runCount >= tolerance - 1) {
  /frameworks/base/core/java/android/text/
AndroidBidi.java 70 int runCount = 1;
75 ++runCount;
97 ++runCount;
101 if (runCount == 1 && minLevel == baseLevel) {
109 int[] ld = new int[runCount * 2];
157 swap = runCount > 1;
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 178 int runCount = 1;
181 runCount = method.getAnnotation(FlakyTest.class).tolerance();
183 runCount = method.getAnnotation(RepetitiveTest.class).numIterations();
188 final int tolerance = runCount;
205 runMethod(method, runCount, isRepetitive);
217 int runCount = 0;
229 runCount++;
233 iterations.putInt("currentiterations", runCount);
237 } while ((runCount < tolerance) && (isRepetitive || exception != null));
  /libcore/jsr166-tests/src/test/java/jsr166/
FutureTaskTest.java 65 int savedRunCount = pf.runCount();
68 assertEquals(savedRunCount, pf.runCount());
101 int savedRunCount = pf.runCount();
104 assertEquals(savedRunCount, pf.runCount());
170 private final AtomicInteger runCount;
175 public int runCount() { return runCount.get(); }
188 final AtomicInteger runCount) {
191 runCount.getAndIncrement();
194 this.runCount = runCount
    [all...]
  /external/junit/src/junit/textui/
ResultPrinter.java 86 getWriter().println (" (" + result.runCount() + " test" + (result.runCount() == 1 ? "": "s") + ")");
91 getWriter().println("Tests run: "+result.runCount()+
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
Scheduler.java 87 int runCount = 0;
90 ++runCount;
94 return runCount > 0;
  /libcore/ojluni/src/main/java/java/text/
AttributedString.java 62 int runCount; // actual number of runs, <= runArraySize
385 if (runCount == 0) {
404 if (runCount == 0) {
424 runCount = 1; // assume initial run starting at index 0
445 return runCount;
450 while (runIndex < runCount && runStarts[runIndex] < offset) {
455 if (runIndex < runCount && runStarts[runIndex] == offset) {
461 if (runCount == runArraySize) {
494 runCount++;
495 for (int i = runCount - 1; i > runIndex; i--)
    [all...]
Bidi.java 285 int runCount = bidiBase.countRuns();
286 return (runCount == 0 ? 1 : runCount);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlSanitizerFuzzerTest.java 72 final int runCount = 1000;
78 for (int run = runCount; --run >= 0;) {
142 executor.awaitTermination(runCount * 4, TimeUnit.SECONDS);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestResult.java 95 public int runCount() {
96 return mWrappedTestResult.runCount();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestResult.java 97 public int runCount() {
98 return mWrappedTestResult.runCount();
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 46 le_int32 runCount = runArray->getCount();
48 for (le_int32 run = 0; run < runCount; run += 1) {
232 le_int32 runCount = line->countRuns();
242 for (run = 0; run < runCount; run += 1) {
pflow.c 76 le_int32 runCount = pl_getFontRunCount(fontRuns);
79 for (run = 0; run < runCount; run += 1) {
327 le_int32 runCount = pl_countLineRuns(line);
337 for (run = 0; run < runCount; run += 1) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestBidi.java 101 int i, len = bidi.getLength(), logicalIndex = -1, runCount = 0;
107 runCount = bidi.countRuns();
167 runCount = bidi.countRuns();
183 if (--runCount < 0) {
189 if (runCount != 0) {
209 int runCount, visualIndex, logicalIndex = -1, logicalStart, runLength;
245 runCount = bidi.countRuns();
248 runCount = 0;
251 logln("\n---- " + runCount + " runs");
254 for (i = 0; i < runCount; ++i)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestBidi.java 97 int i, len = bidi.getLength(), logicalIndex = -1, runCount = 0;
103 runCount = bidi.countRuns();
163 runCount = bidi.countRuns();
179 if (--runCount < 0) {
185 if (runCount != 0) {
205 int runCount, visualIndex, logicalIndex = -1, logicalStart, runLength;
241 runCount = bidi.countRuns();
244 runCount = 0;
247 logln("\n---- " + runCount + " runs");
250 for (i = 0; i < runCount; ++i)
    [all...]
  /external/skia/src/core/
SkTextBlob.cpp 205 SkTextBlob::SkTextBlob(int runCount, const SkRect& bounds)
206 : fRunCount(runCount)
222 int runCount = fRunCount;
224 buffer.write32(runCount);
244 SkDEBUGCODE(runCount--);
246 SkASSERT(0 == runCount);
250 int runCount = reader.read32();
251 if (runCount < 0) {
259 for (int i = 0; i < runCount; ++i) {
SkRegionPriv.h 219 int runCount = SkToInt(runs - this->writable_runs() + 1);
220 SkASSERT(runCount == fRunCount);

Completed in 1444 milliseconds

1 2 3 4