/libcore/luni/src/test/java/libcore/java/nio/file/ |
LinuxFileSystemTestData.java | 76 public String[] inputArray; 79 TestData(String output, String input, String... inputArray) { 82 this.inputArray = inputArray; 85 TestData(Class exceptionClass, String input, String... inputArray) { 88 this.inputArray = inputArray;
|
PathsTest.java | 40 inputOutputTestCase.inputArray).toString()); 46 Paths.get(exceptionTestCase.input, exceptionTestCase.inputArray);
|
LinuxFileSystemTest.java | 113 inputOutputTestCase.input, inputOutputTestCase.inputArray).toString()); 119 fileSystem.getPath(exceptionTestCase.input, exceptionTestCase.inputArray);
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
raw_converter.rs | 299 static float3 demosaic(uint x, uint y, uint cfa, float* inputArray) { 311 pRGB.x = inputArray[4]; 312 pRGB.y = (inputArray[1] + inputArray[3] + inputArray[5] + inputArray[7]) / 4; 313 pRGB.z = (inputArray[0] + inputArray[2] + inputArray[6] + inputArray[8]) / 4 [all...] |
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/ |
UT_reduce.java | 108 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13); 112 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 114 final int javaRslt = addint(inputArray); 174 int[] inputArray = createInputArrayInt(inputLen, 7); 176 inputArray[(new Random(8)).nextInt(inputLen)] = 0; 181 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 185 final int cellVal = inputArray[rsRslt.x + dimX * rsRslt.y]; 199 int[] inputArray = createInputArrayInt(inputLen, 9); 201 inputArray[(new Random(10)).nextInt(inputLen)] = 0; 206 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray); [all...] |
UT_reduce_backward.java | 108 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13); 112 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 114 final int javaRslt = addint(inputArray); 174 int[] inputArray = createInputArrayInt(inputLen, 7); 176 inputArray[(new Random(8)).nextInt(inputLen)] = 0; 181 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 185 final int cellVal = inputArray[rsRslt.x + dimX * rsRslt.y]; 199 int[] inputArray = createInputArrayInt(inputLen, 9); 201 inputArray[(new Random(10)).nextInt(inputLen)] = 0; 206 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray); [all...] |
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/ |
UT_reduce_backward.java | 124 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13); 128 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 130 final int javaRslt = addint(inputArray); 196 int[] inputArray = createInputArrayInt(inputLen, 7); 198 inputArray[(new Random(8)).nextInt(inputLen)] = 0; 203 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 207 final int cellVal = inputArray[rsRslt.x + dimX * rsRslt.y]; 221 int[] inputArray = createInputArrayInt(inputLen, 9); 223 inputArray[(new Random(10)).nextInt(inputLen)] = 0; 228 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray); [all...] |
UT_reduce.java | 297 final int[] inputArray = createInputArrayInt(size[0], seed, Integer.MAX_VALUE / size[0]); 300 final int javaResult = addint(inputArray); 305 Allocation inputAllocation = Allocation.createSized(RS, Element.I32(RS), inputArray.length); 309 inputAllocation.copyFrom(inputArray); 328 final int[] inputArray = createInputArrayInt(dimX * dimY, seed, Integer.MAX_VALUE / (dimX * dimY)); 331 final int javaResult = addint(inputArray); 342 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 362 final int[] inputArray = createInputArrayInt(dimX * dimY * dimZ, seed, Integer.MAX_VALUE / (dimX * dimY * dimZ)); 365 final int javaResult = addint(inputArray); 376 inputAllocation.copy3DRangeFrom(0, 0, 0, dimX, dimY, dimZ, inputArray); [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ReduceTest.java | 193 final int[] inputArray = createInputArrayInt(dimX * dimY, 1, 1 << 13); 197 inputAllocation.copy2DRangeFrom(0, 0, dimX, dimY, inputArray); 199 final int javaRslt = addint(inputArray); 246 private Short2 findMinAndMaxHalf(final short[] inputArray) { 247 Allocation inputAllocation = Allocation.createSized(mRS, Element.F16(mRS), inputArray.length); 248 inputAllocation.copyFrom(inputArray); 259 private short[] findMinAndMaxHalfIntoArray(final short[] inputArray) { 260 final Short2 vectorResult = findMinAndMaxHalf(inputArray); 283 private Short2[] findMinAndMaxHalf2(final short[] inputArray) { 284 assertEquals(inputArray.length % 2, 0) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
EmpiricalDistributionImpl.java | 221 double[] inputArray = (double[]) in; 222 return new ArrayDataAdapter(inputArray); 285 private double[] inputArray; 294 inputArray = in; 301 for (int i = 0; i < inputArray.length; i++) { 302 sampleStats.addValue(inputArray[i]); 309 for (int i = 0; i < inputArray.length; i++) { 311 binStats.get(findBin(inputArray[i])); 312 stats.addValue(inputArray[i]);
|
/cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/ |
OptionHelperTest.java | 92 String[] inputArray = {"foocts ", "-", TEST_CLASS_SHORTNAME, " ", fakeTestClass, " \"--", 95 String inputString = String.join("", inputArray);
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStoreCipherSpiBase.java | 405 byte[] inputArray = new byte[inputSize]; 406 input.get(inputArray); 407 outputArray = engineUpdate(inputArray, 0, inputSize); 562 byte[] inputArray = new byte[inputSize]; 563 input.get(inputArray); 564 outputArray = engineDoFinal(inputArray, 0, inputSize); [all...] |
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/ |
HidlTestJava.java | 279 IBase.Foo[] inputArray = new IBase.Foo[2]; 294 inputArray[0] = foo; 309 inputArray[1] = foo; 312 expectedOutputArray[0] = inputArray[1]; 313 expectedOutputArray[1] = inputArray[0]; 315 IBase.Foo[] outputArray = proxy.someMethodWithFooArrays(inputArray);
|
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/ |
netty-codec-4.1.0.CR3.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/ |
netty-codec-4.1.3.Final.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/ |
netty-codec-4.1.6.Final.jar | |
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/ |
groovy-all-2.3.6.jar | |
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/ |
groovy-all-2.4.7.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | |
/prebuilts/tools/common/eclipse/ |
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar | |