/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
StreamBuilderTest.java | 47 List<Integer> sizes = Arrays.asList(0, 1, 4, 16, 256, field in class:StreamBuilderTest 52 @DataProvider(name = "sizes") 54 return sizes.stream().map(i -> new Object[] { i }).toArray(Object[][]::new); 91 @Test(dataProvider = "sizes") 102 @Test(dataProvider = "sizes", groups = { "serialization-hostile" }) 153 @Test(dataProvider = "sizes") 164 @Test(dataProvider = "sizes", groups = { "serialization-hostile" }) 215 @Test(dataProvider = "sizes") 226 @Test(dataProvider = "sizes", groups = { "serialization-hostile" }) 276 @Test(dataProvider = "sizes") [all...] |
/packages/apps/Camera2/src/com/android/camera/settings/ |
CameraSettingsActivity.java | 151 // Selected resolutions for the different cameras and sizes. 190 // Load the camera sizes. 193 // Send loaded sizes to additional preferences. 197 public void fill(List<Size> sizes, ListPreference preference) { 198 setEntriesForSelection(sizes, preference); 458 * @param displayableSizes The human readable preferred sizes 491 * This method gets the selected picture sizes for S,M,L and populates 496 Log.w(TAG, "null deviceInfo, cannot display resolution sizes");
|
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/ |
VideoChatTestActivity.java | 91 List<Camera.Size> sizes = params.getSupportedPreviewSizes(); local 94 logMessage("Sizes"); 95 for (Size size : sizes) {
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
deadstore.go | 102 f.Fatalf("mismatched zero/store sizes: %d and %d [%s]",
|
/prebuilts/go/darwin-x86/src/sort/ |
search_test.go | 149 // Abstract exhaustive test: all sizes up to 100,
|
/prebuilts/go/darwin-x86/test/chan/ |
nonblock.go | 8 // Use several sizes and types of operands.
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
deadstore.go | 102 f.Fatalf("mismatched zero/store sizes: %d and %d [%s]",
|
/prebuilts/go/linux-x86/src/sort/ |
search_test.go | 149 // Abstract exhaustive test: all sizes up to 100,
|
/prebuilts/go/linux-x86/test/chan/ |
nonblock.go | 8 // Use several sizes and types of operands.
|
/external/compiler-rt/lib/asan/tests/ |
asan_test.cc | 98 size_t sizes[] = {16, 1000, 10000, 100000, 2100000}; local 99 for (size_t s = 0; s < sizeof(sizes)/sizeof(sizes[0]); s++) { 100 size_t size = sizes[s]; [all...] |
/external/libpcap/msdos/ |
pkt_rx0.asm | 13 ; these sizes MUST be equal to the sizes in PKTDRVR.H
|
/external/mesa3d/src/gallium/drivers/ilo/core/ |
ilo_builder_3d_bottom.h | 434 const uint32_t *bufs, const int *sizes, 438 bufs, sizes, num_bufs); 443 const uint32_t *bufs, const int *sizes, 447 bufs, sizes, num_bufs);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
Parameters.cpp | 95 // on the list of both preview and recording sizes 133 ALOGV("Supported preview sizes are: %s", supportedPreviewSizes.string()); 144 ALOGV("Supported video sizes are: %s", supportedVideoSizes.string()); [all...] |
/frameworks/rs/ |
rs.spec | 327 param const int * sizes 339 param const int * sizes
|
/hardware/interfaces/renderscript/1.0/ |
IContext.hal | 577 * names, and sizes. 583 * @return arraySizes Sizes of sub-Element arrays 610 * @param arraySizesPtr Container of array sizes 801 * @param sizes Collection of Script's data sizes [all...] |
/prebuilts/go/darwin-x86/src/crypto/dsa/ |
dsa.go | 57 func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) error { 64 switch sizes {
|
/prebuilts/go/darwin-x86/src/runtime/ |
memmove_test.go | 194 func benchmarkSizes(b *testing.B, sizes []int, fn func(b *testing.B, n int)) { 195 for _, n := range sizes {
|
/prebuilts/go/linux-x86/src/crypto/dsa/ |
dsa.go | 57 func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) error { 64 switch sizes {
|
/prebuilts/go/linux-x86/src/runtime/ |
memmove_test.go | 194 func benchmarkSizes(b *testing.B, sizes []int, fn func(b *testing.B, n int)) { 195 for _, n := range sizes {
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineRenderToImageTests.cpp | 1679 vector<IVec4> sizes; local 1738 const vector<IVec4> sizes = genSizeCombinations(testCase[caseNdx].baselineSize, testCase[caseNdx].sizeMask, testCase[caseNdx].viewType); local [all...] |
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
vktTextureFilteringExplicitLodTests.cpp | 1516 const IVec3 sizes[] = local 1542 caseName << sizes[sizeNdx][0] << "x" << sizes[sizeNdx][1]; local [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
CameraMetadataTest.java | 1315 android.util.Size[] sizes; local [all...] |
/prebuilts/go/darwin-x86/src/cmd/cgo/ |
gcc.go | [all...] |
/prebuilts/go/linux-x86/src/cmd/cgo/ |
gcc.go | [all...] |
/prebuilts/go/darwin-x86/src/bytes/ |
bytes_test.go | 261 // test a larger buffer with different sizes and alignments 411 func benchBytes(b *testing.B, sizes []int, f func(b *testing.B, n int)) { 412 for _, n := range sizes { 503 sizes := []int{1, 6, 9, 15, 16, 20, 32, 4 << 10, 4 << 20, 64 << 20} 504 benchBytes(b, sizes, bmEqual(Equal)) 508 sizes := []int{1, 6, 32, 4 << 10, 4 << 20, 64 << 20} 509 benchBytes(b, sizes, bmEqual(EqualPortable)) [all...] |