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

1 2 3

  /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) {
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 55 String testType = null;
67 testType = getArg(args, ++i, "Missing value for test type");
132 jarPath, testType, outputPath, additionalAttributes);
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 452 char testType[256];
467 testSetting.extract(0, testSetting.length(), testType, "");
473 if (!strcmp(testType, "convert_fwd")) {
475 } else if (!strcmp(testType, "convert_rev")) {
477 } else if (!strcmp(testType, "ops")) {
480 errln("Unknown type: %s", testType);
dadrfmt.cpp 331 char testType[256];
346 testSetting.extract(0, testSetting.length(), testType, "");
352 if (!strcmp(testType, "date_format")) {
354 } else if (!strcmp(testType, "date_parse")) {
357 errln("Unknown type: %s", testType);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
TiledMapPackerTest.java 27 public enum TestType {
47 TestType testType = TestType.DefaultUsage;
57 switch (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/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);
  /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 219 String testType = bundle.getString(TESTCASE_TYPE);
220 if (testType != null) {
221 buf.append("testcase type = " + testType);
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainInteractionSession.java 253 Utils.TestCaseType testType;
255 AsyncTaskArg setTestType(Utils.TestCaseType t) {testType = t; return this;}
273 arg.testType.toString());
274 switch (arg.testType) {
318 Log.i(TAG, "Doing nothing for the testcase type: " + arg.testType);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 16 package com.android.cts.tradefed.testtype;
88 final String testType = getTestType(attributes);
97 packageDef.setTestType(testType);
191 return attributes.getValue("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
  /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...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 502 assertTrue(testType(Type.getType(desc)));
517 assertTrue(testType(Type.getType(desc)));
524 assertTrue(testType((Type)cst));
539 assertTrue(testType(Type.getType(desc)));
546 private boolean testType(Type type) {
556 r &= testType(t);
558 return r & testType(type.getReturnType());
  /external/deqp/modules/gles3/functional/
es3fDrawTests.cpp 175 const TestIterationType testType = (instanced) ? (TYPE_INSTANCE_COUNT) : ((ranged) ? (TYPE_INDEX_RANGE) : (TYPE_DRAW_COUNT));
207 addTestIterations(test, spec, testType);
253 addTestIterations(test, spec, testType);
313 addTestIterations(test, spec, testType);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fLayoutBindingTests.cpp 59 enum TestType
213 TestType testType,
235 const TestType m_testType;
260 TestType testType,
269 , m_testType (testType)
588 TestType testType,
606 const TestType m_testType
    [all...]
es31fShaderImageLoadStoreTests.cpp     [all...]
  /external/opencv3/modules/core/misc/java/test/
MatTest.java 979 public void testType() {
  /external/libgdx/backends/gdx-backends-gwt/libs/
gwt-dev.jar 
  /external/robolectric/v3/libs/
vtd-xml-2.11.jar 

Completed in 1110 milliseconds

1 2 3