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

1 2

  /external/autotest/frontend/client/src/autotest/tko/
CompositeTestSet.java 10 class CompositeTestSet extends TestSet {
11 private List<TestSet> testSets = new ArrayList<TestSet>();
13 public void add(TestSet tests) {
27 for(TestSet testSet : testSets) {
28 conditionParts.add("(" + testSet.getPartialSqlCondition() + ")");
TestContextMenu.java 10 private TestSet tests;
13 public TestContextMenu(TestSet tests, TestSelectionListener listener) {
SingleTestSet.java 5 public class SingleTestSet extends TestSet {
TestSet.java 6 public abstract class TestSet {
ConditionTestSet.java 10 class ConditionTestSet extends TestSet {
TkoSpreadsheetUtils.java 13 public static TestSet getTestSet(CellInfo cellInfo, JSONObject condition,
20 ConditionTestSet testSet = new ConditionTestSet(condition);
22 setSomeFields(testSet, rowFields, cellInfo.row);
25 setSomeFields(testSet, columnFields, cellInfo.column);
27 return testSet;
30 private static void setSomeFields(ConditionTestSet testSet, List<HeaderField> allFields,
35 testSet.addCondition(field.getSqlCondition(value));
SpreadsheetView.java 172 protected TestSet getWholeTableTestSet() {
341 TestSet testSet = getTestSet(cellInfo);
345 testSet = getTestSet(selectionManager.getSelectedCells());
348 ContextMenu menu = getContextMenu(testSet, drilldownType);
359 if (testSet.isSingleTest()) {
360 historyToken = listener.getSelectTestHistoryToken(testSet.getTestIndex());
362 historyToken = getDrilldownHistoryToken(testSet,
369 private TestSet getTestSet(CellInfo cellInfo) {
374 private TestSet getTestSet(List<CellInfo> cells)
    [all...]
TableView.java 331 TestSet testSet = getTestSet(row);
334 testSet = getTestSet(selectionManager.getSelectedObjects());
336 ContextMenu menu = getContextMenu(testSet);
348 historyToken = getDrilldownHistoryToken(testSet);
350 historyToken = listener.getSelectTestHistoryToken(testSet.getTestIndex());
355 private ContextMenu getContextMenu(final TestSet testSet) {
356 TestContextMenu menu = new TestContextMenu(testSet, listener);
361 doDrilldown(testSet);
    [all...]
  /external/deqp/executor/
xeBatchExecutor.hpp 70 BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog);
86 void launchTestSet (const TestSet& testSet);
111 const TestSet& m_testSet;
118 TestSet m_casesToExecute;
xeBatchExecutor.cpp 60 static void computeExecuteSet (TestSet& executeSet, const TestNode* root, const TestSet& testSet, const BatchResult* batchResult)
69 if (node->getNodeType() == TESTNODETYPE_TEST_CASE && testSet.hasNode(node))
79 static void computeBatchRequest (TestSet& requestSet, const TestSet& executeSet, const TestNode* root, int maxCasesInSet)
98 static int removeExecuted (TestSet& set, const TestNode* root, const BatchResult* batchResult)
100 TestSet oldSet (set);
157 BatchExecutor::BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog
    [all...]
xeTestCase.hpp 154 class TestSet
157 TestSet (void) {}
158 ~TestSet (void) {}
xeTestCase.cpp 317 // TestSet helpers
372 // TestSet
374 void TestSet::add (const TestNode* node)
386 void TestSet::addCase (const TestCase* testCase)
391 void TestSet::addGroup (const TestGroup* testGroup)
397 void TestSet::remove (const TestNode* node)
409 void TestSet::removeCase (const TestCase* testCase)
418 void TestSet::removeGroup (const TestGroup* testGroup)
  /external/vixl/test/
test-invalset.cc 72 kReclaimFactor> TestSet;
95 TestSet set;
117 VIXL_CHECK(TestSet::IsValid(Obj(0, 0)));
118 VIXL_CHECK(TestSet::IsValid(Obj(-1, 0)));
119 VIXL_CHECK(TestSet::IsValid(Obj(kInvalidKey - 1, 0)));
120 VIXL_CHECK(!TestSet::IsValid(Obj(kInvalidKey, 0)));
125 TestSet set;
144 TestSet set;
177 TestSet set;
212 TestSet set
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedNavigableSetTest.java 48 TestSet<E> inner = new TestSet<E>(
55 static class TestSet<E> extends SynchronizedSetTest.TestSet<E>
58 TestSet(NavigableSet<E> delegate, Object mutex) {
160 TestSet<String> inner = new TestSet<String>(innermost, MUTEX);
SynchronizedSetTest.java 50 TestSet<String> inner = new TestSet<String>(new HashSet<String>(), MUTEX);
64 static class TestSet<E> extends ForwardingSet<E> implements Serializable {
68 public TestSet(Set<E> delegate, Object mutex) {
  /external/skia/tests/
PathOpsThreeWayTest.cpp 32 static const struct TestSet {
43 const TestSet& testSet = testSets[index];
44 int testCount = testSet.testCount;
48 const Curve& oTest = testSet.tests[outer];
50 const Curve& iTest = testSet.tests[inner];
  /external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/
EmbeddedSpreadsheetPresenter.java 11 import autotest.tko.TestSet;
118 TestSet testSet = TkoSpreadsheetUtils.getTestSet(
121 if (testSet.isSingleTest()) {
122 openTestDetailView(testSet.getTestIndex());
124 openSpreadsheetView(testSet.getPartialSqlCondition(),
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 66 DE_DECLARE_COMMAND_LINE_OPT(TestSet, vector<string>);
102 << Option<TestSet> ("t", "testset", "Comma-separated list of include filters.", parseCommaSeparatedList)
134 vector<string> testset; member in struct:__anon16449::CommandLine
169 if (!opts.hasOption<opt::TestSet>())
171 std::cout << "Invalid command line arguments. --testset not defined." << std::endl;
199 cmdLine.testset = opts.getOption<opt::TestSet>();
305 void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter
    [all...]
  /external/webrtc/webrtc/base/
byteorder_unittest.cc 19 TEST(ByteOrderTest, TestSet) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,
  /external/python/cpython2/Lib/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_iterlen.py 151 class TestSet(TestTemporarilyImmutable):
249 TestSet,

Completed in 330 milliseconds

1 2