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

1 2 3 4

  /external/autotest/frontend/client/src/autotest/tko/
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));
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() + ")");
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...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSScriptTest.java 30 native boolean testSet(String path);
32 assertTrue(testSet(this.getContext().getCacheDir().toString()));
  /cts/hostsidetests/sustainedperf/src/android/SustainedPerformance/cts/
SustainedPerformanceHostTest.java 71 double[] testSet = new double[3];
83 testSet[index++] = dmips;
87 dhrystoneResultsWithMode.add(testSet[1]);
89 dhrystoneResultsWithoutMode.add(testSet[1]);
91 if (testSet[1] > dhryMax) {
92 dhryMax = testSet[1];
94 if (testSet[1] < dhryMin) {
95 dhryMin = testSet[1];
110 Double[] testSet = new Double[10];
120 testSet[index++] = time
    [all...]
  /external/guava/guava-gwt/test/com/google/common/collect/
UnmodifiableListIteratorTest_gwt.java 31 public void testSet() throws Exception {
33 testCase.testSet();
CountTest_gwt.java 41 public void testSet() throws Exception {
43 testCase.testSet();
  /external/v8/test/webkit/fast/regex/
unicodeCaseInsensitive.js 42 function testSet(set)
51 testSet([ 0x01c4, 0x01c5, 0x01c6 ]);
52 testSet([ 0x01c7, 0x01c8, 0x01c9 ]);
53 testSet([ 0x01ca, 0x01cb, 0x01cc ]);
54 testSet([ 0x01f1, 0x01f2, 0x01f3 ]);
55 testSet([ 0x0392, 0x03b2, 0x03d0 ]);
56 testSet([ 0x0395, 0x03b5, 0x03f5 ]);
57 testSet([ 0x0398, 0x03b8, 0x03d1 ]);
58 testSet([ 0x0345, 0x0399, 0x03b9, 0x1fbe ]);
59 testSet([ 0x039a, 0x03ba, 0x03f0 ])
    [all...]
  /external/skia/tests/
PathOpsThreeWayTest.cpp 31 static const struct TestSet {
42 const TestSet& testSet = testSets[index];
43 int testCount = testSet.testCount;
47 const Curve& oTest = testSet.tests[outer];
49 const Curve& iTest = testSet.tests[inner];
PathOpsQuadReduceOrderTest.cpp 13 static const SkDQuad testSet[] = {
18 static const size_t testSetCount = SK_ARRAY_COUNT(testSet);
22 const SkDQuad& quad = testSet[index];
PathOpsQuadIntersectionTest.cpp 55 static const SkDQuad testSet[] = {
323 const size_t testSetCount = SK_ARRAY_COUNT(testSet);
326 const SkDQuad& quad1 = testSet[outer];
328 const SkDQuad& quad2 = testSet[inner];
398 const SkDQuad& quad1 = testSet[test1];
399 const SkDQuad& quad2 = testSet[test2];
521 const SkDQuad& quad1 = testSet[outer];
522 const SkDQuad& quad2 = testSet[inner];
  /external/guava/guava-tests/test/com/google/common/collect/
CountTest.java 49 public void testSet() {
UnmodifiableListIteratorTest.java 58 public void testSet() {
  /external/deqp/executor/
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...]
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;
  /external/libxml2/xstc/
Makefile.am 13 MSTESTDEF=MSXMLSchema1-0-20020116.testSet
14 SUNTESTDEF=SunXMLSchema1-0-20020116.testSet
15 NISTTESTDEF=NISTXMLSchema1-0-20020116.testSet
16 NISTTESTDEF_2=NISTXMLSchemaDatatypes.testSet
60 mv Tests/*.testSet Tests/Metadata ; \
  /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/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
SetTagTest.java 29 public void testSet() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
WriteCharts.java 35 String testSet = "";
40 testSet = args[i];
42 print(testSet, args[i]);
43 testSet = "";
118 public static void print(String testSet, String rawId) throws IOException {
131 if (testSet.equals("")) {
139 testSet = "[:" + source + ":]";
141 testSet = "[" + testSet + "\u30FC]";
142 printSet(testSet);
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
WriteCharts.java 34 String testSet = "";
39 testSet = args[i];
41 print(testSet, args[i]);
42 testSet = "";
117 public static void print(String testSet, String rawId) throws IOException {
130 if (testSet.equals("")) {
138 testSet = "[:" + source + ":]";
140 testSet = "[" + testSet + "\u30FC]";
141 printSet(testSet);
    [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 65 DE_DECLARE_COMMAND_LINE_OPT(TestSet, vector<string>);
101 << Option<TestSet> ("t", "testset", "Comma-separated list of include filters.", parseCommaSeparatedList)
133 vector<string> testset; member in struct:__anon9687::CommandLine
168 if (!opts.hasOption<opt::TestSet>())
170 std::cout << "Invalid command line arguments. --testset not defined." << std::endl;
198 cmdLine.testset = opts.getOption<opt::TestSet>();
304 void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter
    [all...]
  /external/v8/test/webkit/
instance-of-immediates.js 31 function testSet(constructor, testMethod)
40 testSet("1", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow });
44 testSet("{}", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow });
48 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeTrue });
53 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow });
58 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeFalse });
63 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow });
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointTest.java 46 public void testSet() {
  /cts/tests/tests/text/src/android/text/cts/
TextPaintTest.java 42 public void testSet() {
  /external/v8/test/mjsunit/es6/
function-length-configurable.js 45 function testSet(f) {
49 test(testSet);

Completed in 500 milliseconds

1 2 3 4