HomeSort by relevance Sort by last modified time
    Searched defs:performTest (Results 1 - 15 of 15) sorted by null

  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterSleb128Test.java 54 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(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2)
    [all...]
DexWriterUleb128Test.java 54 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(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2)
    [all...]
  /external/skia/bench/
ScalarBench.cpp 25 virtual void performTest() = 0;
36 this->performTest();
61 virtual void performTest() {
80 virtual void performTest() {
105 void performTest() override {
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/dexbacked/
BaseDexReaderLeb128Test.java 41 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(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2)
    [all...]
BaseDexReaderSleb128Test.java 41 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(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2)
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_color.cpp 92 void performTest(int channelsIn, int channelsOut, int code, double threshold = 1e-3)
110 OCL_TEST_P(CvtColor, BGR2BGRA) { performTest(3, 4, CVTCODE(BGR2BGRA)); }
111 OCL_TEST_P(CvtColor, RGB2RGBA) { performTest(3, 4, CVTCODE(RGB2RGBA)); }
112 OCL_TEST_P(CvtColor, BGRA2BGR) { performTest(4, 3, CVTCODE(BGRA2BGR)); }
113 OCL_TEST_P(CvtColor, RGBA2RGB) { performTest(4, 3, CVTCODE(RGBA2RGB)); }
114 OCL_TEST_P(CvtColor, BGR2RGBA) { performTest(3, 4, CVTCODE(BGR2RGBA)); }
115 OCL_TEST_P(CvtColor, RGB2BGRA) { performTest(3, 4, CVTCODE(RGB2BGRA)); }
116 OCL_TEST_P(CvtColor, RGBA2BGR) { performTest(4, 3, CVTCODE(RGBA2BGR)); }
117 OCL_TEST_P(CvtColor, BGRA2RGB) { performTest(4, 3, CVTCODE(BGRA2RGB)); }
118 OCL_TEST_P(CvtColor, BGR2RGB) { performTest(3, 3, CVTCODE(BGR2RGB));
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
OnthrowDebuggerLaunchTest.java 63 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
83 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
103 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
122 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught);
143 void performTest(String debuggerName, String isSuspendDebuggee, String isOnuncaught) {
  /art/test/570-checker-osr/src/
Main.java 22 performTest();
39 public static void performTest() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
DialogTestListActivity.java 168 ((DialogTestListItem)test).performTest(this);
236 public void performTest(DialogTestListActivity activity) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GraggBulirschStoerIntegrator.java 119 private boolean performTest;
220 this.performTest = performStabilityCheck;
495 if (performTest && (j <= maxChecks) && (k < maxIter)) {
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk16/1.46/
bcprov-jdk16-1.46.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1185 milliseconds