HomeSort by relevance Sort by last modified time
    Searched defs:testType (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /frameworks/base/tests/CoreTests/android/core/
TestWebData.java 113 testType = type;
127 public String testType;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 113 IType testType = null;
115 testType = (((ICompilationUnit) element)).findPrimaryType();
117 testType = (((IClassFile) element)).getType();
119 testType = (IType) element;
121 testType = ((IMember) element).getDeclaringType();
123 if (testType != null && testType.exists()) {
124 return TestSearchEngine.isTestOrTestSuite(testType);
  /cts/tests/tests/widget/src/android/widget/cts/
PositionTesterContextMenuListener.java 30 // Fake constant to store in testType a test type specific to headers and footers
32 private int testType; // as returned by getPackedPositionType
39 testType = ExpandableListView.PACKED_POSITION_TYPE_GROUP;
45 testType = ExpandableListView.PACKED_POSITION_TYPE_CHILD;
50 testType = ADAPTER_TYPE;
55 if (testType == ADAPTER_TYPE) {
74 if (!areEqual("Wrong packed position type", testType, packedPositionType)) {
83 if (testType == ExpandableListView.PACKED_POSITION_TYPE_CHILD) {
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
UnitTest.class 
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 454 char testType[256];
469 testSetting.extract(0, testSetting.length(), testType, "");
475 if (!strcmp(testType, "convert_fwd")) {
477 } else if (!strcmp(testType, "convert_rev")) {
479 } else if (!strcmp(testType, "ops")) {
482 errln("Unknown type: %s", testType);
dadrfmt.cpp 333 char testType[256];
348 testSetting.extract(0, testSetting.length(), testType, "");
354 if (!strcmp(testType, "date_format")) {
356 } else if (!strcmp(testType, "date_parse")) {
359 errln("Unknown type: %s", testType);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 265 String testType = "application/wibble";
267 out.write(testType.getBytes("US-ASCII"));
273 assertEquals(testType, mimeType);
280 String testType = "12345678901234567890123456789";
282 out.write(testType.length() + 1);
283 out.write(testType.getBytes("US-ASCII"));
290 assertEquals(testType, mimeType);
445 String testType = "application/wibble";
449 out.write(testType.length() + 1); // Length as UINTVAR
451 out.write(testType.getBytes("US-ASCII"))
    [all...]
  /cts/tests/tests/slice/src/android/slice/cts/
SliceBindingTest.java 66 public void testType() {
  /cts/tests/tests/voiceinteraction/common/src/android/voiceinteraction/common/
Utils.java 72 String testType = bundle.getString(TESTCASE_TYPE);
73 if (testType != null) {
74 buf.append("testcase type = " + testType);
  /frameworks/support/slices/core/src/androidTest/java/androidx/slice/
SliceTest.java 76 public void testType() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 44 private int testType;
62 testType = type;
75 if (someoneDone[testType]) {
94 threadedTestErrorString = (testType == 0 ? "gethostbyname"
104 threadedTestErrorString = (testType == 0 ? "gethostbyname"
113 someoneDone[testType] = true;
  /libcore/support/src/test/java/tests/support/
Support_TestWebData.java 100 testType = type;
114 testType = type;
160 public String testType;
  /cts/tests/tests/assist/common/src/android/assist/common/
Utils.java 234 String testType = bundle.getString(TESTCASE_TYPE);
235 if (testType != null) {
236 buf.append("testcase type = " + testType);
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainInteractionSession.java 258 Utils.TestCaseType testType;
260 AsyncTaskArg setTestType(Utils.TestCaseType t) {testType = t; return this;}
278 arg.testType.toString());
279 switch (arg.testType) {
323 Log.i(TAG, "Doing nothing for the testcase type: " + arg.testType);
  /external/autotest/frontend/client/src/autotest/afe/
TestSelector.java 179 String testType = test.get("test_type").isString().stringValue().toLowerCase();
181 if (testType.equals(getSelectedTestType()) &&
  /external/clang/test/Misc/
ast-dump-decl.cpp 370 template<typename> class testType { };
371 template class testType<int>;
372 // CHECK: ClassTemplateSpecializationDecl{{.*}} class testType
  /external/drrickorang/LoopbackApp/app/src/main/jni/
sles.h 104 int testType;
138 int testType, double frequency1, char* byteBufferPtr, int byteBufferLength,
150 int testType, double frequency1, char* byteBufferPtr, int byteBufferLength,
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestDataForDevServlet.java 197 String testType = pathParts[1];
198 if (testType.equalsIgnoreCase("report")) {
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
GLBenchmarkTest.java 26 import com.android.tradefed.testtype.IDeviceTest;
27 import com.android.tradefed.testtype.IRemoteTest;
238 String testType = getData(testResult, "type");
241 String testName = String.format("%s - %s", testTitle, testType);
  /cts/tools/utils/
CollectAllTests.java 111 final TestType testType = TestType.getTestType(androidMakeFile);
148 if (testType.type == TestType.HOST_SIDE_ONLY) {
150 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, testType.jarPath);
153 if (testType.type == TestType.VM_HOST_TEST) {
155 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, testType.jarPath);
287 private static class TestType {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 746 int testType = getOp(opPos + 3);
748 // System.out.println("testType: "+testType);
749 switch (testType)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryLayeredRenderingTests.cpp 57 enum TestType
77 TestType testType;
548 bool verifyLayerContent (tcu::TestLog& log, const TestType testType, const tcu::ConstPixelBufferAccess image, const int layerNdx, const int numLayers)
554 switch (testType)
622 if (verifyLayerContent(log, params.testType, layerImage, layerNdx, image.getNumLayersOrSlices()))
641 const bool geomOutputColor = (params.testType == TEST_TYPE_ALL_LAYERS || params.testType == TEST_TYPE_INVOCATION_PER_LAYER);
659 const int maxVertices = (params.testType == TEST_TYPE_DIFFERENT_CONTENT) ? (numLayers + 1) * numLayers
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AudioFragment.java 143 AudioTestType testType = getSelectedTestType();
144 switch (testType) {
157 if (testType == AudioTestType.DISPLAY_WAVEFORM) {
164 if (testType == AudioTestType.CONTINUOUS_PLAYBACK ||
165 testType == AudioTestType.COLD_PLAYBACK ||
166 testType == AudioTestType.CONTINUOUS_RECORDING ||
167 testType == AudioTestType.COLD_RECORDING) {
176 switch (testType) {
  /external/boringssl/src/ssl/test/runner/
runner.go 305 type testType int
308 clientTest testType = iota
325 testType testType
535 if test.testType == clientTest {
565 if test.testType == clientTest {
607 if test.testType == clientTest {
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cSeparateShaderObjsTests.cpp     [all...]

Completed in 915 milliseconds

1 2 3 4