/external/libcxx/test/support/ |
D | archetypes.hpp | 29 struct TestBase { struct 54 TestBase() noexcept : value(0) { in TestBase() function 58 explicit TestBase(int x) noexcept : value(x) { in TestBase() argument 62 TestBase(int x) noexcept : value(x) { in TestBase() function 66 explicit TestBase(int, int y) noexcept : value(y) { in TestBase() function 70 TestBase(int, int y) noexcept : value(y) { in TestBase() argument 74 explicit TestBase(std::initializer_list<int>& il, int = 0) noexcept in TestBase() argument 79 …explicit TestBase(std::initializer_list<int>& il, int = 0) noexcept : value(static_cast<int>(il.si… in TestBase() argument 82 TestBase& operator=(int xvalue) noexcept { in operator =() argument 90 ~TestBase() { in ~TestBase() argument [all …]
|
/external/llvm-project/libcxx/test/support/ |
D | archetypes.h | 37 struct TestBase { struct 62 TestBase() noexcept : value(0) { in TestBase() argument 66 explicit TestBase(int x) noexcept : value(x) { in TestBase() function 70 TestBase(int x) noexcept : value(x) { in TestBase() argument 74 explicit TestBase(int, int y) noexcept : value(y) { in TestBase() argument 78 TestBase(int, int y) noexcept : value(y) { in TestBase() argument 82 explicit TestBase(std::initializer_list<int>& il, int = 0) noexcept 87 …explicit TestBase(std::initializer_list<int>& il, int = 0) noexcept : value(static_cast<int>(il.si… 90 TestBase& operator=(int xvalue) noexcept { 98 ~TestBase() { in ~TestBase() argument [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_codecencodings_jp.py | 9 class Test_CP932(multibytecodec_support.TestBase, unittest.TestCase): 42 class Test_EUC_JIS_2004(multibytecodec_support.TestBase, 52 class Test_EUC_JISX0213(multibytecodec_support.TestBase, 62 class Test_EUC_JP_COMPAT(multibytecodec_support.TestBase, 77 class Test_SJIS_COMPAT(multibytecodec_support.TestBase, unittest.TestCase): 91 class Test_SJIS_2004(multibytecodec_support.TestBase, unittest.TestCase): 109 class Test_SJISX0213(multibytecodec_support.TestBase, unittest.TestCase):
|
D | test_codecencodings_cn.py | 9 class Test_GB2312(multibytecodec_support.TestBase, unittest.TestCase): 22 class Test_GBK(multibytecodec_support.TestBase, unittest.TestCase): 36 class Test_GB18030(multibytecodec_support.TestBase, unittest.TestCase): 60 class Test_HZ(multibytecodec_support.TestBase, unittest.TestCase):
|
/external/llvm-project/lldb/test/API/python_api/interpreter/ |
D | TestRunCommandInterpreterAPI.py | 8 class CommandRunInterpreterLegacyAPICase(TestBase): 11 mydir = TestBase.compute_mydir(__file__) 15 TestBase.setUp(self) 46 class CommandRunInterpreterAPICase(TestBase): 49 mydir = TestBase.compute_mydir(__file__) 53 TestBase.setUp(self)
|
/external/python/cpython2/Lib/test/ |
D | test_codecencodings_jp.py | 10 class Test_CP932(multibytecodec_support.TestBase, unittest.TestCase): 25 class Test_EUC_JISX0213(multibytecodec_support.TestBase, 55 class Test_EUC_JP_COMPAT(multibytecodec_support.TestBase, 73 class Test_SJIS_COMPAT(multibytecodec_support.TestBase, unittest.TestCase): 81 class Test_SJISX0213(multibytecodec_support.TestBase, unittest.TestCase):
|
D | test_codecencodings_cn.py | 10 class Test_GB2312(multibytecodec_support.TestBase, unittest.TestCase): 23 class Test_GBK(multibytecodec_support.TestBase, unittest.TestCase): 37 class Test_GB18030(multibytecodec_support.TestBase, unittest.TestCase): 58 class Test_HZ(multibytecodec_support.TestBase, unittest.TestCase):
|
/external/deqp/modules/glshared/ |
D | glsFboCompletenessTests.hpp | 86 class TestBase : public TestCase class 93 TestBase (Context& ctx, in TestBase() function in deqp::gls::fboc::details::TestBase 122 class ParamTest : public TestBase 127 : TestBase (ctx, Params::getName(params), Params::getDescription(params)) in ParamTest() 135 const glw::Functions& gl (const TestBase& test); 140 using details::TestBase;
|
/external/testng/src/test/java/test/bug92/ |
D | Bug92Test.java | 23 TestBase.beforeTestCount = 0; in BeforeTestShouldRunOnce() 24 TestBase.beforeTestAlwaysCount = 0; in BeforeTestShouldRunOnce() 26 Assert.assertEquals(TestBase.beforeTestCount, 1); in BeforeTestShouldRunOnce() 27 Assert.assertEquals(TestBase.beforeTestAlwaysCount, 1); in BeforeTestShouldRunOnce()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcKHRDebugTests.hpp | 53 class TestBase class 57 TestBase(tcu::TestContext& testContext, glu::ApiType apiType, bool is_debug); 58 virtual ~TestBase(); 142 class APIErrorsTest : public TestBase, public tcu::TestCase 183 class LabelsTest : public tcu::TestCase, public TestBase 305 class ReceivingMessagesTest : public tcu::TestCase, public TestBase 386 class GroupsTest : public tcu::TestCase, public TestBase 436 class SynchronousCallsTest : public tcu::TestCase, public TestBase
|
/external/llvm-project/lldb/test/API/functionalities/testid/ |
D | TestTestId.py | 6 from lldbsuite.test.lldbtest import TestBase 8 class TestIdTestCase(TestBase): 12 mydir = TestBase.compute_mydir(__file__)
|
/external/llvm-project/lldb/test/API/types/ |
D | HideTestFailures.py | 16 class DebugIntegerTypesFailures(TestBase): 18 mydir = TestBase.compute_mydir(__file__) 22 TestBase.setUp(self) 43 TestBase.tearDown(self)
|
/external/llvm-project/lldb/test/API/macosx/find-dsym/deep-bundle/ |
D | TestDeepBundle.py | 15 class DeepBundleTestCase(TestBase): 17 mydir = TestBase.compute_mydir(__file__) 20 TestBase.setUp(self) 28 TestBase.tearDown(self)
|
/external/llvm-project/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/ |
D | TestBundleWithDotInFilename.py | 16 class BundleWithDotInFilenameTestCase(TestBase): 18 mydir = TestBase.compute_mydir(__file__) 21 TestBase.setUp(self) 29 TestBase.tearDown(self)
|
/external/llvm-project/lldb/test/API/lang/cpp/call-function/ |
D | TestCallCPPFunction.py | 11 class CallCPPFunctionTestCase(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 16 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/dereference-argument/ |
D | TestDiagnoseDereferenceArgument.py | 12 class TestDiagnoseDereferenceArgument(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/dereference-this/ |
D | TestDiagnoseDereferenceThis.py | 12 class TestDiagnoseDereferenceThis(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/virtual-method-call/ |
D | TestDiagnoseDereferenceVirtualMethodCall.py | 12 class TestDiagnoseVirtualMethodCall(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/complicated-expression/ |
D | TestComplicatedExpression.py | 12 class TestDiagnoseDereferenceArgument(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/inheritance/ |
D | TestDiagnoseInheritance.py | 12 class TestDiagnoseInheritance(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/bad-reference/ |
D | TestBadReference.py | 12 class TestBadReference(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/frame/diagnose/local-variable/ |
D | TestLocalVariable.py | 12 class TestLocalVariable(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/trace/ |
D | TestTraceSchema.py | 6 class TestTraceLoad(TestBase): 8 mydir = TestBase.compute_mydir(__file__) 12 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/lang/c/stepping/ |
D | TestThreadStepInAvoidRegexp.py | 13 class ThreadStepInAvoidRegexTestCase(TestBase): 15 mydir = TestBase.compute_mydir(__file__) 18 TestBase.setUp(self)
|
/external/llvm-project/lldb/test/API/commands/expression/call-function/ |
D | TestCallStopAndContinue.py | 9 class ExprCommandCallStopContinueTestCase(TestBase): 11 mydir = TestBase.compute_mydir(__file__) 15 TestBase.setUp(self)
|