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

  /external/deqp/framework/common/
tcuTestCase.cpp 34 // TestNode.
46 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description)
55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children)
66 TestNode::~TestNode (void)
68 TestNode::deinit();
71 void TestNode::getChildren (vector<TestNode*>& res
    [all...]
tcuTestCase.hpp 97 class TestNode
107 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
108 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const std::vector<TestNode*>& children);
109 virtual ~TestNode (void);
115 void getChildren (std::vector<TestNode*>& children);
116 void addChild (TestNode* node);
129 std::vector<TestNode*> m_children;
141 class TestCaseGroup : public TestNode
145 TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const std::vector<TestNode*>& children)
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/unicode/
ctest.h 22 typedef struct TestNode TestNode;
130 showTests ( const TestNode *root);
139 runTests ( const TestNode* root);
145 * TestNode* root=NULL;
154 addTest(TestNode** root,
165 cleanUpTestTree(TestNode *tn);
175 T_CTEST_API const TestNode* T_CTEST_EXPORT2
176 getTest(const TestNode* root,
252 * @param root Testnode root with tests already attached to i
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 89 mCurrentTestNode = new TestNode(testMethod);
124 private class TestNode implements ISensorTestNode {
127 public TestNode(Method testMethod) {
SensorCtsTestResult.java 143 sensorTestCase.setCurrentTestNode(new TestNode(testCase));
151 private class TestNode implements ISensorTestNode {
154 public TestNode(TestCase testCase) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
RepeatingSensorOperation.java 57 operation.execute(new TestNode(currentNode, i));
76 private class TestNode implements ISensorTestNode {
80 public TestNode(ISensorTestNode parent, int iteration) {
  /external/deqp/executor/
xeTestCase.hpp 60 class TestNode
63 virtual ~TestNode (void) {}
72 const TestNode* find (const char* path) const;
73 TestNode* find (const char* path);
76 TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc);
79 TestNode (const TestNode& other);
80 TestNode& operator= (const TestNode& other);
88 class TestGroup : public TestNode
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_modulegraph.py 355 class TestNode (unittest.TestCase):
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
LimitTest.java 51 limit.check(new TestNode()));
61 limit.check(new TestNode()));
71 limit.check(new TestNode()));
81 limit.check(new TestNode() {
95 limit.check(new TestNode() {
110 limit.check(new TestNode()));
120 limit.check(new TestNode()));
130 limit.check(new TestNode()));
140 limit.check(new TestNode()));
150 limit.check(new TestNode()));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 58 public class TestNode implements INode {
59 private TestNode mParent;
61 private final List<TestNode> mChildren = new ArrayList<TestNode>();
73 public TestNode(String fqcn) {
77 public TestNode bounds(Rect bounds) {
83 public TestNode id(String id) {
87 public TestNode set(String uri, String name, String value) {
93 public TestNode add(TestNode child)
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
ctest.c 42 struct TestNode
45 struct TestNode* sibling;
46 struct TestNode* child;
51 static const struct TestNode* currentTest;
65 static TestNode* addTestNode( TestNode *root, const char *name );
67 static TestNode *createTestNode(const char* name, int32_t nameLen);
77 static void iterateTestsWithLevel( const TestNode *root, int depth,
78 const TestNode** nodeList,
170 static TestNode *createTestNode(const char* name, int32_t nameLen
    [all...]

Completed in 2098 milliseconds