/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
test.py | 144 -f Exit on first sequential test failure. 428 """Prints test results for parallel and sequential tests.""" 433 'Ran %d tests in %.3fs (%d sequential in %.3fs, %d parallel in %.3fs)' 448 print 'FAILED (sequential tests)' 559 logging.debug('Sequential tests to run: %s', sequential_tests)
|
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
DoubleStreamTestScenario.java | 51 s = s.sequential(); 103 m.apply(data.parallelStream()).sequential().forEach(b);
|
IntStreamTestScenario.java | 51 s = s.sequential(); 103 m.apply(data.parallelStream()).sequential().forEach(b);
|
LongStreamTestScenario.java | 51 s = s.sequential(); 103 m.apply(data.parallelStream()).sequential().forEach(b);
|
OpTestCase.java | 483 return terminalF.apply(source.sequential()); 544 S_OUT out = streamF.apply(data.stream()).sequential();
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
DoubleStreamTestScenario.java | 55 s = s.sequential(); 107 m.apply(data.parallelStream()).sequential().forEach(b);
|
IntStreamTestScenario.java | 54 s = s.sequential(); 106 m.apply(data.parallelStream()).sequential().forEach(b);
|
LongStreamTestScenario.java | 54 s = s.sequential(); 106 m.apply(data.parallelStream()).sequential().forEach(b);
|
OpTestCase.java | 484 return terminalF.apply(source.sequential()); 545 S_OUT out = streamF.apply(data.stream()).sequential();
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/ |
TransitionHelper.java | 123 public Object createTransitionSet(boolean sequential); 295 public Object createTransitionSet(boolean sequential) { 455 public Object createTransitionSet(boolean sequential) { 456 return TransitionHelperKitkat.createTransitionSet(sequential); 712 public static Object createTransitionSet(boolean sequential) { 713 return sImpl.createTransitionSet(sequential);
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
IntSliceOpTest.java | 201 int[] l = IntStream.range(1, 1001).parallel().skip(200).limit(200).sequential().toArray(); 207 int[] l = IntStream.range(1, 1001).parallel().limit(500).sequential().toArray();
|
/libcore/ojluni/src/main/java/java/util/stream/ |
IntStream.java | 49 * A sequence of primitive int-valued elements supporting sequential and parallel 227 * While {@code limit()} is generally a cheap operation on sequential 237 * {@code limit()} in parallel pipelines, switching to sequential execution 238 * with {@link #sequential()} may improve performance. 256 * While {@code skip()} is generally a cheap operation on sequential 266 * {@code skip()} in parallel pipelines, switching to sequential execution 267 * with {@link #sequential()} may improve performance. 674 IntStream sequential(); method in interface:IntStream 697 * Returns an empty sequential {@code IntStream}. 699 * @return an empty sequential strea [all...] |
LongStream.java | 53 * A sequence of primitive long-valued elements supporting sequential and parallel 231 * While {@code limit()} is generally a cheap operation on sequential 241 * {@code limit()} in parallel pipelines, switching to sequential execution 242 * with {@link #sequential()} may improve performance. 260 * While {@code skip()} is generally a cheap operation on sequential 270 * {@code skip()} in parallel pipelines, switching to sequential execution 271 * with {@link #sequential()} may improve performance. 666 LongStream sequential(); method in interface:LongStream 689 * Returns an empty sequential {@code LongStream}. 691 * @return an empty sequential strea [all...] |
AbstractPipeline.java | 57 * <p>For sequential streams, and parallel streams without 106 * and the stream source if sequential, or the previous stateful if parallel. 147 * True if pipeline is parallel, otherwise the pipeline is sequential; only 304 public final S sequential() { method in class:AbstractPipeline 388 * Get the source spliterator for this pipeline stage. For a sequential or
|
DoublePipeline.java | 273 result.sequential().forEach(i -> downstream.accept(i)); 557 // Optimized sequential terminal operations for the head of the pipeline
|
LongPipeline.java | 290 result.sequential().forEach(i -> downstream.accept(i)); 537 // Optimized sequential terminal operations for the head of the pipeline
|
IntPipeline.java | 309 result.sequential().forEach(i -> downstream.accept(i)); 554 // Optimized sequential terminal operations for the head of the pipeline
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/ |
base.h | 26 * @brief Sequential helper functions. 65 * @brief GNU sequential classes for public use. 93 __is_parallel(const _Parallelism __p) { return __p != sequential; }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/ |
base.h | 26 * @brief Sequential helper functions. 65 * @brief GNU sequential classes for public use. 93 __is_parallel(const _Parallelism __p) { return __p != sequential; }
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/ |
base.h | 26 * @brief Sequential helper functions. 65 * @brief GNU sequential classes for public use. 93 __is_parallel(const _Parallelism __p) { return __p != sequential; }
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/ |
base.h | 26 * @brief Sequential helper functions. 65 * @brief GNU sequential classes for public use. 93 __is_parallel(const _Parallelism __p) { return __p != sequential; }
|
/external/llvm/test/MC/ARM/ |
diagnostics.s | 304 @ CHECK-ERRORS: error: destination operands must be sequential 307 @ CHECK-ERRORS: error: source operands must be sequential 378 @ CHECK-ERRORS: error: destination operands must be sequential 381 @ CHECK-ERRORS: error: destination operands must be sequential 384 @ CHECK-ERRORS: error: destination operands must be sequential
|
/external/v8/tools/gcmole/ |
gcmole.lua | 38 sequential = false; 160 if FLAGS.sequential then 161 log("** Sequential execution.")
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
JDK15TagFactory.java | 412 result.setSequential(test.sequential());
|
/external/zlib/src/contrib/delphi/ |
ZLib.pas | 61 TCompressionStream is write-only and strictly sequential. Reading from the
|