HomeSort by relevance Sort by last modified time
    Searched full:skipcount (Results 1 - 8 of 8) sorted by null

  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 114 int skipCount = 0;
123 if (skipCount + offset > index) {
124 int subindex = mSkipCounts[which] + (index - skipCount);
127 skipCount += offset;
131 for (; true; ++skipCount) {
134 if (skipCount == index) {
176 int skipCount = 0;
180 if (skipCount + offset > index) {
184 skipCount += offset;
216 int skipCount = 0
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
TextUtilitiesTests.java 84 int[] skipCount = new int[1];
86 char c = TextUtilities.stripHtmlEntity("&", 0, skipCount);
88 assertEquals(0, skipCount[0]);
90 c = TextUtilities.stripHtmlEntity("&;", 0, skipCount);
92 assertEquals(0, skipCount[0]);
94 c = TextUtilities.stripHtmlEntity("&nosuch;", 0, skipCount);
96 assertEquals(0, skipCount[0]);
98 c = TextUtilities.stripHtmlEntity("&nbspandmore;", 0, skipCount);
100 assertEquals(0, skipCount[0]);
102 c = TextUtilities.stripHtmlEntity("&#ABC", 0, skipCount);
    [all...]
  /external/skia/tests/
skia_test.cpp 151 int skipCount = 0;
155 ++skipCount;
167 count, failCount, skipCount);
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java     [all...]
  /system/core/sh/
eval.c 93 STATIC int skipcount; /* number of levels to skip */ variable
322 skipping: if (evalskip == SKIPCONT && --skipcount <= 0) {
326 if (evalskip == SKIPBREAK && --skipcount <= 0)
372 if (evalskip == SKIPCONT && --skipcount <= 0) {
376 if (evalskip == SKIPBREAK && --skipcount <= 0)
968 skipcount = 0;
1138 * commands rather than executing them. The variable skipcount is
1154 skipcount = n;
1171 skipcount = 1;
1177 skipcount = 1
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
TextUtilities.java 371 // skipCount is an array of a single int; that int is set inside stripHtmlEntity and is
375 int[] skipCount = new int[1];
428 c = stripHtmlEntity(text, i, skipCount);
429 i += skipCount[0];
459 static /*package*/ char stripHtmlEntity(String text, int pos, int[] skipCount) {
463 skipCount[0] = 0;
482 skipCount[0] = entityLength;
498 skipCount[0] = entityLength;
    [all...]
  /external/libmtp/src/
ptp.c     [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c     [all...]

Completed in 1088 milliseconds