Home
last modified time | relevance | path

Searched refs:TestType (Results 1 – 25 of 1961) sorted by relevance

12345678910>>...79

/dports/audio/spectacle-lv2/spectacle-2.0-1-g27b1525/thirdparty/hiir-1.33/hiir/test/
H A DTestAllClassesSpeed.hpp181 AlignedObject <TestType> container;
182 TestType & st = container.use ();
188 AlignedObject <TestType> container;
189 TestType & st = container.use ();
195 AlignedObject <TestType> container;
196 TestType & st = container.use ();
204 AlignedObject <TestType> container;
205 TestType & st = container.use ();
213 AlignedObject <TestType> container;
214 TestType & st = container.use ();
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-devicefarm/source/model/
H A DTestType.cpp103 return TestType::CALABASH; in GetTestTypeForName()
119 return TestType::XCTEST; in GetTestTypeForName()
140 return TestType::NOT_SET; in GetTestTypeForName()
147 case TestType::BUILTIN_FUZZ: in GetNameForTestType()
159 case TestType::APPIUM_NODE: in GetNameForTestType()
161 case TestType::APPIUM_RUBY: in GetNameForTestType()
173 case TestType::CALABASH: in GetNameForTestType()
177 case TestType::UIAUTOMATION: in GetNameForTestType()
179 case TestType::UIAUTOMATOR: in GetNameForTestType()
181 case TestType::XCTEST: in GetNameForTestType()
[all …]
/dports/math/universal/universal-3.48/include/universal/verification/
H A Dtest_suite.hpp21 template<typename TestType>
26 TestType v; in ExhaustiveNumberSystemTest()
56 …nrOfFailedTestCases += ReportTestResult(VerifyLogicEqual <TestType>(), tag, " == … in ExhaustiveNumberSystemTest()
57 …nrOfFailedTestCases += ReportTestResult(VerifyLogicNotEqual <TestType>(), tag, " != … in ExhaustiveNumberSystemTest()
65 …nrOfFailedTestCases += ReportTestResult(VerifyIntegerConversion <TestType>(bReportIndividualTestCa… in ExhaustiveNumberSystemTest()
85 …nrOfFailedTestCases += ReportTestResult(VerifySqrt <TestType>(bReportIndividualTestCas… in ExhaustiveNumberSystemTest()
86 …nrOfFailedTestCases += ReportTestResult(VerifyExp <TestType>(bReportIndividualTestCas… in ExhaustiveNumberSystemTest()
87 …nrOfFailedTestCases += ReportTestResult(VerifyExp2 <TestType>(bReportIndividualTestCas… in ExhaustiveNumberSystemTest()
88 …nrOfFailedTestCases += ReportTestResult(VerifyLog <TestType>(bReportIndividualTestCas… in ExhaustiveNumberSystemTest()
89 …nrOfFailedTestCases += ReportTestResult(VerifyLog2 <TestType>(bReportIndividualTestCas… in ExhaustiveNumberSystemTest()
[all …]
H A Dtest_reporters.hpp25 template<typename TestType>
41 template<typename TestType>
54 template<typename TestType>
55 …tring& test_case, const std::string& op, const TestType& argument, const TestType& result, const T… in ReportUnaryArithmeticError()
69 template<typename TestType>
167 template<typename TestType>
178 template<typename TestType>
189 template<typename TestType>
190 …test_case, const std::string& op, const TestType& a, const TestType& b, const TestType& reference,… in ReportTwoInputFunctionError()
205 template<typename TestType>
[all …]
H A Dcfloat_math_test_suite.hpp25 template<typename TestType>
30 TestType a, alog, aref; in VerifyLog()
50 template<typename TestType>
55 TestType a, plog2, aref; in VerifyLog2()
81 TestType a, plog10, aref; in VerifyLog10()
107 TestType a, cexp, cref; in VerifyExp()
150 TestType a, cexp2, cref; in VerifyExp2()
242 TestType a, psin, aref; in VerifySine()
267 TestType a, pcos, aref; in VerifyCosine()
292 TestType a, ptan, aref; in VerifyTangent()
[all …]
H A Dfixpnt_math_test_suite.hpp25 template<typename TestType>
30 TestType a, alog, aref; in VerifyLog()
50 template<typename TestType>
55 TestType a, plog2, aref; in VerifyLog2()
81 TestType a, plog10, aref; in VerifyLog10()
107 TestType a, cexp, cref; in VerifyExp()
143 TestType a, cexp2, cref; in VerifyExp2()
228 TestType a, psin, aref; in VerifySine()
253 TestType a, pcos, aref; in VerifyCosine()
278 TestType a, ptan, aref; in VerifyTangent()
[all …]
H A Dtest_suite_logic.hpp37 TestType a; in VerifyLogicEqual()
40 TestType b; in VerifyLogicEqual()
61 TestType a; in VerifyLogicNotEqual()
64 TestType b; in VerifyLogicNotEqual()
85 TestType a; in VerifyLogicLessThan()
88 TestType b; in VerifyLogicLessThan()
109 TestType a; in VerifyLogicGreaterThan()
112 TestType b; in VerifyLogicGreaterThan()
133 TestType a; in VerifyLogicLessOrEqualThan()
136 TestType b; in VerifyLogicLessOrEqualThan()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/traits/negative-impls/
H A Dnegated-auto-traits-error.rs20 struct TestType; in dummy() struct
21 impl !Send for TestType {} in dummy() implementation
23 Outer(TestType); in dummy()
29 struct TestType; in dummy1b() struct
30 impl !Send for TestType {} in dummy1b() implementation
32 is_send(TestType); in dummy1b()
37 struct TestType; in dummy1c() struct
40 is_send((8, TestType)); in dummy1c()
45 struct TestType; in dummy2() struct
53 struct TestType; in dummy3() struct
[all …]
H A Dnegated-auto-traits-error.stderr1 error[E0277]: `dummy::TestType` cannot be sent between threads safely
4 LL | Outer(TestType);
19 LL | Outer(TestType);
32 LL | is_send(TestType);
47 LL | is_send((8, TestType));
52 …= help: within `({integer}, dummy1c::TestType)`, the trait `Send` is not implemented for `dummy1c:…
63 LL | is_send(Box::new(TestType));
78 LL | is_send(&Box::new(TestType));
84 LL | is_send(Box::new(Outer2(TestType)));
89 …= help: within `Outer2<dummy3::TestType>`, the trait `Send` is not implemented for `dummy3::TestTy…
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Serialization.Xml/tests/Performance/
H A DPerformanceTestsCommon.cs16 public enum TestType enum
48 public readonly TestType PerfTestType;
243 case TestType.ByteArray: in GetSerializationObject()
246 case TestType.Dictionary: in GetSerializationObject()
249 case TestType.ISerializable: in GetSerializationObject()
252 case TestType.ListOfInt: in GetSerializationObject()
255 case TestType.SimpleType: in GetSerializationObject()
261 case TestType.String: in GetSerializationObject()
264 case TestType.XmlElement: in GetSerializationObject()
271 case TestType.DateTimeArray: in GetSerializationObject()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/crashpad/crashpad/util/mach/
H A Dchild_port_handshake_test.cc37 enum class TestType { enum in crashpad::test::__anon38caebb90111::ChildPortHandshakeTest
95 if (test_type_ == TestType::kServerDies) { in RunServer()
114 case TestType::kClientChecksIn_SendRight: in RunServer()
115 case TestType::kTokenIncorrectThenCorrect: in RunServer()
124 case TestType::kClientDoesNotCheckIn: in RunServer()
126 case TestType::kTokenIncorrect: in RunServer()
130 case TestType::kServerDies: in RunServer()
160 case TestType::kClientDoesNotCheckIn: { in RunClient()
180 case TestType::kTokenIncorrect: { in RunClient()
221 case TestType::kServerDies: { in RunClient()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/util/mach/
H A Dchild_port_handshake_test.cc37 enum class TestType { enum in crashpad::test::__anon5748b85e0111::ChildPortHandshakeTest
95 if (test_type_ == TestType::kServerDies) { in RunServer()
114 case TestType::kClientChecksIn_SendRight: in RunServer()
115 case TestType::kTokenIncorrectThenCorrect: in RunServer()
124 case TestType::kClientDoesNotCheckIn: in RunServer()
126 case TestType::kTokenIncorrect: in RunServer()
130 case TestType::kServerDies: in RunServer()
160 case TestType::kClientDoesNotCheckIn: { in RunClient()
180 case TestType::kTokenIncorrect: { in RunClient()
221 case TestType::kServerDies: { in RunClient()
[all …]
/dports/lang/fpc-source/fpc-3.2.2/tests/test/
H A Dtismngd1.pp66 specialize TestType<LongInt>(False);
67 specialize TestType<Boolean>(False);
69 specialize TestType<AnsiString>(True);
71 specialize TestType<WideString>(True);
72 specialize TestType<Single>(False);
73 specialize TestType<TProcVar>(False);
75 specialize TestType<Pointer>(False);
77 specialize TestType<TObject>(False);
81 specialize TestType<TTestObj>(False);
86 specialize TestType<TEnum>(False);
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/javax/swing/JMenuItem/8158566/
H A DCloseOnMouseClickPropertyTest.java77 new TestItem(TestType.MENU_ITEM, true, true),
78 new TestItem(TestType.MENU_ITEM, true, false),
79 new TestItem(TestType.MENU_ITEM, false, true),
80 new TestItem(TestType.MENU_ITEM, false, false),
82 new TestItem(TestType.MENU_ITEM, true, null),
83 new TestItem(TestType.MENU_ITEM, false, null),
84 new TestItem(TestType.MENU_ITEM, null, true),
85 new TestItem(TestType.MENU_ITEM, null, false),
162 enum TestType { enum in CloseOnMouseClickPropertyTest
171 TestType type;
[all …]
/dports/math/universal/universal-3.48/tests/blocktriple/logic/
H A Dlogic.cpp17 constexpr size_t max = TestType::fbits > 16 ? 16 : TestType::fbits; in VerifyBlocktripleLogicEqual()
21 TestType a; in VerifyBlocktripleLogicEqual()
24 TestType b; in VerifyBlocktripleLogicEqual()
59 TestType a; in VerifyBlocktripleLogicNotEqual()
62 TestType b; in VerifyBlocktripleLogicNotEqual()
97 TestType a; in VerifyBlocktripleLogicLessThan()
100 TestType b; in VerifyBlocktripleLogicLessThan()
135 TestType a; in VerifyBlocktripleLogicLessOrEqualThan()
138 TestType b; in VerifyBlocktripleLogicLessOrEqualThan()
173 TestType a; in VerifyBlocktripleLogicGreaterThan()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/declarative/qdeclarativelistreference/
H A Dtst_qdeclarativelistreference.cpp175 TestType *tt = new TestType; in isValid()
197 TestType *tt = new TestType; in object()
219 TestType *tt = new TestType; in listElementType()
241 TestType *tt = new TestType; in canAppend()
270 TestType *tt = new TestType; in canAt()
299 TestType *tt = new TestType; in canClear()
328 TestType *tt = new TestType; in canCount()
357 TestType *tt = new TestType; in append()
396 TestType *tt = new TestType; in at()
431 TestType *tt = new TestType; in clear()
[all …]
/dports/math/universal/universal-3.48/tests/cfloat/logic/
H A Dlogic.cpp15 constexpr size_t max = TestType::nbits > 16 ? 16 : TestType::nbits; in VerifyCfloatLogicEqual()
19 TestType a; in VerifyCfloatLogicEqual()
22 TestType b; in VerifyCfloatLogicEqual()
57 TestType a; in VerifyCfloatLogicNotEqual()
60 TestType b; in VerifyCfloatLogicNotEqual()
95 TestType a; in VerifyCfloatLogicLessThan()
98 TestType b; in VerifyCfloatLogicLessThan()
133 TestType a; in VerifyCfloatLogicLessOrEqualThan()
136 TestType b; in VerifyCfloatLogicLessOrEqualThan()
171 TestType a; in VerifyCfloatLogicGreaterThan()
[all …]
/dports/math/universal/universal-3.48/tests/areal/logic/
H A Dlogic.cpp14 constexpr size_t max = TestType::nbits > 16 ? 16 : TestType::nbits; in VerifyArealLogicEqual()
18 TestType a; in VerifyArealLogicEqual()
21 TestType b; in VerifyArealLogicEqual()
56 TestType a; in VerifyArealLogicNotEqual()
59 TestType b; in VerifyArealLogicNotEqual()
94 TestType a; in VerifyArealLogicLessThan()
97 TestType b; in VerifyArealLogicLessThan()
132 TestType a; in VerifyArealLogicLessOrEqualThan()
135 TestType b; in VerifyArealLogicLessOrEqualThan()
170 TestType a; in VerifyArealLogicGreaterThan()
[all …]

12345678910>>...79