/external/skia/bench/ |
DeferredSurfaceCopyBench.cpp | 58 for (int iteration = 0; iteration < loops; iteration++) {
|
TimerData.h | 26 * Collect times from the BenchTimer for an iteration. It will fail if called more often than 54 * appendTimes() call, 1 when appendTimes is called for each iteration.
|
/external/chromium_org/content/test/data/ |
rwhv_compositing_animation.html | 19 -webkit-animation-iteration-count: infinite;
|
/external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/ |
dns.js | 4 alert('iteration: ' + g_iteration++);
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
InertAnimation.cpp | 54 double iteration = currentIteration(); local 55 ASSERT(iteration >= 0); 56 // FIXME: Handle iteration values which overflow int. 57 return m_effect->sample(static_cast<int>(iteration), timeFraction());
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
dbbi.h | 27 * based break iteration has been folded into the base class. This class
|
/external/icu4c/common/unicode/ |
dbbi.h | 28 * based break iteration has been folded into the base class. This class
|
/system/core/toolbox/ |
dynarray.h | 25 * _stmnt :: C statement that will be executed in each iteration. 30 * remove items from the array during iteration. 56 * _stmnt :: C statement executed in each iteration 59 * to/from the list during iteration.
|
/art/test/074-gc-thrash/src/ |
Main.java | 253 private String dive(int depth, int iteration) { 266 switch (iteration % 8) { 268 funStr = str0 = makeString(iteration); 271 funStr = str1 = makeString(iteration); 274 funStr = str2 = makeString(iteration); 277 funStr = str3 = makeString(iteration); 280 funStr = str4 = makeString(iteration); 283 funStr = str5 = makeString(iteration); 286 funStr = str6 = makeString(iteration); 289 funStr = str7 = makeString(iteration); [all...] |
/dalvik/tests/074-gc-thrash/src/ |
Main.java | 253 private String dive(int depth, int iteration) { 266 switch (iteration % 8) { 268 funStr = str0 = makeString(iteration); 271 funStr = str1 = makeString(iteration); 274 funStr = str2 = makeString(iteration); 277 funStr = str3 = makeString(iteration); 280 funStr = str4 = makeString(iteration); 283 funStr = str5 = makeString(iteration); 286 funStr = str6 = makeString(iteration); 289 funStr = str7 = makeString(iteration); [all...] |
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderIterator.java | 50 * Not all elements of this array are necessarily part of the iteration. 59 * Negative if the iteration is over. 115 * Checks whether a header is part of the iteration. 120 * iteration, <code>false</code> to skip 135 * Obtains the next header from this iteration. 137 * @return the next header in this iteration 146 throw new NoSuchElementException("Iteration already finished."); 159 * @return the next header in this iteration
|
BasicListHeaderIterator.java | 52 * Not all elements of this array are necessarily part of the iteration. 59 * Negative if the iteration is over. 123 * Checks whether a header is part of the iteration. 128 * iteration, <code>false</code> to skip 148 * Obtains the next header from this iteration. 150 * @return the next header in this iteration 159 throw new NoSuchElementException("Iteration already finished."); 173 * @return the next header in this iteration
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingTestRunner.java | 27 * adb shell am instrument -e iteration <n> -w com.android.rs.image/.ImageProcessingTestRunner 43 String strIteration = (String) icicle.get("iteration");
|
/libcore/luni/src/main/java/javax/crypto/interfaces/ |
PBEKey.java | 33 * Returns the iteration count, 0 if not specified. 35 * @return the iteration count, 0 if not specified.
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
PBEKeySpec.java | 57 * iteration count and the desired length of the derived key. 64 * the iteration count. 70 * if the salt is empty, iteration count is zero or negative or 102 * and iteration count. 109 * the iteration count. 113 * if the salt is empty or iteration count is zero or negative. 178 * Returns the iteration count of this key specification. 180 * @return the iteration count of this key specification.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
OpenSSLPBEParametersGenerator.java | 16 * iteration count of 1. 34 * Initialise - note the iteration count for this algorithm is fixed at 1. 83 * Generate a key parameter derived from the password, salt, and iteration 102 * the password, salt, and iteration count we are currently initialised 124 * salt, and iteration count we are currently initialised with.
|
/external/chromium_org/third_party/icu/source/common/ |
common.vcxproj.filters | 7 <Filter Include="break iteration">
68 <Filter>break iteration</Filter>
71 <Filter>break iteration</Filter>
74 <Filter>break iteration</Filter>
77 <Filter>break iteration</Filter>
80 <Filter>break iteration</Filter>
83 <Filter>break iteration</Filter>
86 <Filter>break iteration</Filter>
89 <Filter>break iteration</Filter>
92 <Filter>break iteration</Filter> [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
animate-none.html | 16 -webkit-animation-iteration-count: infinite; 35 -webkit-animation-iteration-count: infinite; 54 -webkit-animation-iteration-count: infinite; 73 -webkit-animation-iteration-count: infinite; 92 -webkit-animation-iteration-count: infinite; 102 -webkit-animation-iteration-count: infinite; 112 -webkit-animation-iteration-count: infinite, infinite;
|
/external/qemu/android/utils/ |
reflist.c | 39 if (l->iteration > 0) { 44 l->iteration |= 1; 144 if (l->iteration == 0) { 163 if (l->iteration > 0) { 166 l->iteration |= 1; 227 if (l->iteration & 1) { 239 l->iteration = 0;
|
/external/chromium/net/disk_cache/ |
stress_cache.cc | 54 int RunSlave(int iteration) { 59 cmdline.AppendArg(base::IntToString(iteration)); 91 // iteration is the current crash cycle, so the entries on the cache are marked 93 void StressTheCache(int iteration) { 113 printf("Iteration %d, initial entries: %d\n", iteration, 152 "i: %d iter: %d, size: %d, truncate: %d", i, iteration, size, 235 long int iteration = strtol(argv[1], &end, 0); local 242 StressTheCache(iteration);
|
/libcore/luni/src/main/java/java/text/ |
CollationElementIterator.java | 24 * result of each iteration is a 32-bit collation element that defines the 94 * <li>The length of the source string, if iteration has reached the end. 110 * of the iteration has been reached. 120 * the start of the iteration has been reached. 177 * result for the next forwards or backwards iteration. The user must ensure 190 * Sets a new source string iterator for iteration, and resets the offset to 194 * the new source string iterator for iteration. 201 * Sets a new source string for iteration, and resets the offset to the 205 * the new source string for iteration.
|
/external/icu4c/common/ |
common.vcxproj.filters | 7 <Filter Include="break iteration">
68 <Filter>break iteration</Filter>
71 <Filter>break iteration</Filter>
74 <Filter>break iteration</Filter>
77 <Filter>break iteration</Filter>
80 <Filter>break iteration</Filter>
83 <Filter>break iteration</Filter>
86 <Filter>break iteration</Filter>
89 <Filter>break iteration</Filter>
92 <Filter>break iteration</Filter> [all...] |
/external/apache-http/src/org/apache/http/ |
HeaderElementIterator.java | 45 * iteration. 53 * Obtains the next header element from this iteration. 57 * @return the next header element in this iteration
|
HeaderIterator.java | 46 * Indicates whether there is another header in this iteration. 56 * Obtains the next header from this iteration. 60 * @return the next header in this iteration
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
LinkedHashMultiset.java | 24 * A {@code Multiset} implementation with predictable iteration order. Its 27 * element, those instances are consecutive in the iteration order. If all 29 * the multiset, the element will appear at the end of the iteration.
|