Searched defs:performTest (Results 1 - 11 of 11) sorted by relevance

/external/mockito/src/test/java/org/concurrentmockito/
H A DThreadVerifiesContinuoslyInteractingMockTest.java24 performTest();
28 private void performTest() throws InterruptedException { method in class:ThreadVerifiesContinuoslyInteractingMockTest
H A DThreadsShareAMockTest.java21 performTest();
25 private void performTest() throws InterruptedException { method in class:ThreadsShareAMockTest
H A DThreadsShareGenerouslyStubbedMockTest.java24 performTest();
28 private void performTest() throws InterruptedException { method in class:ThreadsShareGenerouslyStubbedMockTest
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/dexbacked/
H A DBaseDexReaderLeb128Test.java41 performTest(0x0, new byte[]{0x0, 0x11}, 1);
42 performTest(0x1, new byte[]{0x1, 0x11}, 1);
43 performTest(0x3f, new byte[]{0x3f, 0x11}, 1);
44 performTest(0x40, new byte[]{0x40, 0x11}, 1);
45 performTest(0x70, new byte[]{0x70, 0x11}, 1);
46 performTest(0x7f, new byte[]{0x7f, 0x11}, 1);
48 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2);
49 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2);
50 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2);
51 performTest(
244 private void performTest(int expectedValue, byte[] buf) { method in class:BaseDexReaderLeb128Test
248 private void performTest(int expectedValue, byte[] buf, int expectedLength) { method in class:BaseDexReaderLeb128Test
[all...]
H A DBaseDexReaderSleb128Test.java41 performTest(0x0, new byte[]{0x0, 0x11}, 1);
42 performTest(0x1, new byte[]{0x1, 0x11}, 1);
43 performTest(0x3f, new byte[]{0x3f, 0x11}, 1);
44 performTest(0xffffffc0, new byte[]{0x40, 0x11}, 1);
45 performTest(0xfffffff0, new byte[]{0x70, 0x11}, 1);
46 performTest(0xffffffff, new byte[]{0x7f, 0x11}, 1);
48 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2);
49 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2);
50 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2);
51 performTest(
251 private void performTest(int expectedValue, byte[] buf) { method in class:BaseDexReaderSleb128Test
255 private void performTest(int expectedValue, byte[] buf, int expectedLength) { method in class:BaseDexReaderSleb128Test
[all...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DDexWriterSleb128Test.java54 performTest(0x0, new byte[]{0x0, 0x11}, 1);
55 performTest(0x1, new byte[]{0x1, 0x11}, 1);
56 performTest(0x3f, new byte[]{0x3f, 0x11}, 1);
57 performTest(0xffffffc0, new byte[]{0x40, 0x11}, 1);
58 performTest(0xfffffff0, new byte[]{0x70, 0x11}, 1);
59 performTest(0xffffffff, new byte[]{0x7f, 0x11}, 1);
61 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2);
62 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2);
63 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2);
64 performTest(
228 private void performTest(int integerValue, byte[] encodedValue) throws IOException { method in class:DexWriterSleb128Test
232 private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOException { method in class:DexWriterSleb128Test
[all...]
H A DDexWriterUleb128Test.java54 performTest(0x0, new byte[]{0x0, 0x11}, 1);
55 performTest(0x1, new byte[]{0x1, 0x11}, 1);
56 performTest(0x3f, new byte[]{0x3f, 0x11}, 1);
57 performTest(0x40, new byte[]{0x40, 0x11}, 1);
58 performTest(0x70, new byte[]{0x70, 0x11}, 1);
59 performTest(0x7f, new byte[]{0x7f, 0x11}, 1);
61 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2);
62 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2);
63 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2);
64 performTest(
225 private void performTest(int integerValue, byte[] encodedValue) throws IOException { method in class:DexWriterUleb128Test
229 private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOException { method in class:DexWriterUleb128Test
[all...]
/external/skia/bench/
H A DScalarBench.cpp24 virtual void performTest() = 0;
35 this->performTest();
60 virtual void performTest() { function in class:FloatComparisonBench
79 virtual void performTest() { function in class:ForcedIntComparisonBench
104 void performTest() override {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
H A DOnthrowDebuggerLaunchTest.java64 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
84 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
104 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
123 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
144 void performTest(String debuggerName, String isSuspendDebuggee, String isOnuncaught) { method in class:OnthrowDebuggerLaunchTest
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DGraggBulirschStoerIntegrator.java119 private boolean performTest; field in class:GraggBulirschStoerIntegrator
220 this.performTest = performStabilityCheck;
495 if (performTest && (j <= maxChecks) && (k < maxIter)) {
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 680 milliseconds