HomeSort by relevance Sort by last modified time
    Searched refs:testGroup (Results 1 - 25 of 35) sorted by null

1 2

  /external/deqp/external/vulkancts/modules/vulkan/
vktInfoTests.hpp 32 void createInfoTests (tcu::TestCaseGroup* testGroup);
vktTestGroupUtil.hpp 35 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup);
53 typedef void (*CreateChildrenFunc) (tcu::TestCaseGroup* testGroup, Arg0 arg0);
vktInfoTests.cpp 240 void createInfoTests (tcu::TestCaseGroup* testGroup)
242 addFunctionCase(testGroup, "build", "Build Info", logBuildInfo);
243 addFunctionCase(testGroup, "device", "Device Info", logDeviceInfo);
244 addFunctionCase(testGroup, "platform", "Platform Info", logPlatformInfo);
245 addFunctionCase(testGroup, "memory_limits", "Platform Memory Limits", logPlatformMemoryLimits);
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.hpp 35 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
vktWsiSwapchainTests.hpp 35 void createSwapchainTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
vktWsiTests.cpp 39 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType)
41 addTestGroup(testGroup, "surface", "VkSurface Tests", createSurfaceTests, wsiType);
42 addTestGroup(testGroup, "swapchain", "VkSwapchain Tests", createSwapchainTests, wsiType);
vktWsiSurfaceTests.cpp 602 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType)
606 addFunctionCase(testGroup, "create", "Create surface", createSurfaceTest, wsiType);
607 addFunctionCase(testGroup, "create_custom_allocator", "Create surface with custom allocator", createSurfaceCustomAllocatorTest, wsiType);
608 addFunctionCase(testGroup, "create_simulate_oom", "Create surface with simulating OOM", createSurfaceSimulateOOMTest, wsiType);
609 addFunctionCase(testGroup, "query_support", "Query surface support", querySurfaceSupportTest, wsiType);
610 addFunctionCase(testGroup, "query_capabilities", "Query surface capabilities", querySurfaceCapabilitiesTest, wsiType);
611 addFunctionCase(testGroup, "query_formats", "Query surface formats", querySurfaceFormatsTest, wsiType);
612 addFunctionCase(testGroup, "query_present_modes", "Query surface present modes", querySurfacePresentModesTest, wsiType);
615 addFunctionCase(testGroup, "initial_size", "Create surface with initial window size set", createSurfaceInitialSizeTest, wsiType);
618 addFunctionCase(testGroup, "resize", "Resize window and surface", resizeSurfaceTest, wsiType)
    [all...]
vktWsiSwapchainTests.cpp 688 void populateSwapchainGroup (tcu::TestCaseGroup* testGroup, GroupParameters params)
694 addFunctionCase(testGroup, getTestDimensionName(testDimension), "", params.function, TestParameters(params.wsiType, testDimension));
698 void populateSwapchainOOMGroup (tcu::TestCaseGroup* testGroup, Type wsiType)
704 testGroup->addChild(new InstanceFactory1<CreateSwapchainSimulateOOMTest, TestParameters>(testGroup->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, getTestDimensionName(testDimension), "", TestParameters(wsiType, testDimension)));
    [all...]
  /external/deqp/framework/common/
tcuTestHierarchyIterator.hpp 52 virtual void enterGroupNode (TestCaseGroup* testGroup, std::vector<TestNode*>& children) = 0;
53 virtual void leaveGroupNode (TestCaseGroup* testGroup) = 0;
69 virtual void enterGroupNode (TestCaseGroup* testGroup, std::vector<TestNode*>& children);
70 virtual void leaveGroupNode (TestCaseGroup* testGroup);
tcuTestHierarchyIterator.cpp 75 void DefaultHierarchyInflater::enterGroupNode (TestCaseGroup* testGroup, vector<TestNode*>& children)
77 testGroup->init();
78 testGroup->getChildren(children);
81 void DefaultHierarchyInflater::leaveGroupNode (TestCaseGroup* testGroup)
83 testGroup->deinit();
  /frameworks/data-binding/integration-tests/IndependentLibrary/app/
build.gradle 55 pom.groupId = dataBindingConfig.testGroup
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
TestFmwkUtils.java 40 * The field on TestGroup which has the list of classes in it.
42 private static final Field classesToTestField = getField(TestFmwk.TestGroup.class, "names");
45 * The field on TestGroup which has the default package in it.
48 getField(TestFmwk.TestGroup.class, "defaultPackage");
112 // ICU4J relies on the fact that the Target.run() method of a TestGroup based test is
139 public static List<String> getClassNames(TestFmwk.TestGroup testGroup) {
141 String[] classNames = (String[]) classesToTestField.get(testGroup);
142 String defaultPackage = (String) defaultPackageField.get(testGroup);
162 throw new IllegalStateException("Problem getting class names from " + testGroup, e)
    [all...]
IcuTestGroupRunner.java 29 * {@link TestFmwk.TestGroup} but not a {@link TestFmwk}
42 Class<? extends TestFmwk.TestGroup> testGroupClass = checkClass(testClass);
44 // Create a TestGroup and make sure that it's initialized properly.
45 TestFmwk.TestGroup testGroup = TestFmwkUtils.newTestFmwkInstance(testGroupClass);
48 List<String> classNames = TestFmwkUtils.getClassNames(testGroup);
67 private static Class<? extends TestFmwk.TestGroup> checkClass(Class<?> testClass) {
68 if (!TestFmwk.TestGroup.class.isAssignableFrom(testClass)) {
78 + testClass + " as it is not a " + TestFmwk.TestGroup.class);
81 return testClass.asSubclass(TestFmwk.TestGroup.class)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferSparseBinding.cpp 332 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "buffer_sparse_binding", "Buffer Sparse Binding"));
334 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_10", "", 1 << 10));
335 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_12", "", 1 << 12));
336 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_16", "", 1 << 16));
337 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_17", "", 1 << 17));
338 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_20", "", 1 << 20));
339 testGroup->addChild(new BufferSparseBindingCase(testCtx, "buffer_size_2_24", "", 1 << 24));
341 return testGroup.release();
vktSparseResourcesBufferMemoryAliasing.cpp 436 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "buffer_sparse_memory_aliasing", "Sparse Buffer Memory Aliasing"));
438 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_10", "", 1 << 10, glu::GLSL_VERSION_440));
439 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_12", "", 1 << 12, glu::GLSL_VERSION_440));
440 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_16", "", 1 << 16, glu::GLSL_VERSION_440));
441 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_17", "", 1 << 17, glu::GLSL_VERSION_440));
442 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_20", "", 1 << 20, glu::GLSL_VERSION_440));
443 testGroup->addChild(new BufferSparseMemoryAliasingCase(testCtx, "buffer_size_2_24", "", 1 << 24, glu::GLSL_VERSION_440));
445 return testGroup.release();
vktSparseResourcesBufferSparseResidency.cpp 429 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "buffer_sparse_residency", "Buffer Sparse Residency"));
431 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_10", "", 1 << 10, glu::GLSL_VERSION_440));
432 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_12", "", 1 << 12, glu::GLSL_VERSION_440));
433 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_16", "", 1 << 16, glu::GLSL_VERSION_440));
434 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_17", "", 1 << 17, glu::GLSL_VERSION_440));
435 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_20", "", 1 << 20, glu::GLSL_VERSION_440));
436 testGroup->addChild(new BufferSparseResidencyCase(testCtx, "buffer_size_2_24", "", 1 << 24, glu::GLSL_VERSION_440));
438 return testGroup.release();
vktSparseResourcesImageSparseBinding.cpp 401 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "image_sparse_binding", "Buffer Sparse Binding"));
453 testGroup->addChild(imageTypeGroup.release());
456 return testGroup.release();
  /external/deqp/executor/
xeTestCase.cpp 87 TestNode::TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc)
151 return static_cast<const TestGroup*>(this)->findChildNode(path);
164 return static_cast<const TestGroup*>(this)->findChildNode(path + compLen + 1);
178 // TestGroup
180 TestGroup::TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* description)
187 TestGroup::~TestGroup (void)
193 TestGroup* TestGroup::createGroup (const char* name, const char* description
    [all...]
xeTestCase.hpp 57 class TestGroup;
67 const TestGroup* getParent (void) const { return m_parent; }
76 TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc);
82 TestGroup* m_parent;
88 class TestGroup : public TestNode
91 ~TestGroup (void);
100 TestGroup* createGroup (const char* name, const char* description);
104 TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* description);
114 class TestRoot : public TestGroup
    [all...]
  /external/deqp/scripts/
mustpass.py 76 class TestGroup:
239 nextNode = TestGroup(component)
285 def isLeafGroup (testGroup):
289 for child in testGroup.children:
298 die("Mixed groups and cases in %s" % testGroup.name)
322 def makeTestGroup (parentElem, testGroup):
323 groupElem = ElementTree.SubElement(parentElem, "TestCase" if isLeafGroup(testGroup) else "TestSuite", name=testGroup.name)
324 for child in testGroup.children:
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
ItemGroupTest.java 33 public void testGroup() {
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiFeatureInfo.cpp     [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DeqpTestRunner.java     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreTests.cpp     [all...]
vktImageSizeTests.cpp 515 de::MovePtr<tcu::TestCaseGroup> testGroup(new tcu::TestCaseGroup(testCtx, "image_size", "imageSize() cases"));
530 testGroup->addChild(imageGroup.release());
532 return testGroup.release();

Completed in 1085 milliseconds

1 2