/external/clang/test/SemaTemplate/ |
dependent-expr.cpp | 6 void Test(Iterator it) { 67 template <class _CharT> int test(_CharT t) function in namespace:PR8795 83 // Regression test for crasher in r194540.
|
instantiate-static-var.cpp | 45 void test() { function 78 void Test() {
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
FlatBufferBuilderTests.cs | 19 namespace FlatBuffers.Test
|
FlatBuffersFuzzTests.cs | 19 namespace FlatBuffers.Test 722 // Test all objects are readable and return expected values...
|
/external/llvm/lib/Transforms/IPO/ |
CrossDSOCFI.cpp | 131 BasicBlock *TestBB = BasicBlock::Create(Ctx, "test", F); 135 Value *Test = IRBTest.CreateCall( 138 BranchInst *BI = IRBTest.CreateCondBr(Test, ExitBB, TrapBB);
|
/external/llvm/utils/lit/lit/ |
Test.py | 5 # Test result codes. 8 """Test result codes.""" 38 # Test metric values. 54 Convert this metric to content suitable for serializing in the JSON test 122 # Test results. 125 """Wrapper for the results of executing an individual test.""" 130 # The test output. 132 # The wall timing to execute the test, if timing. 134 # The metrics reported by this test. 141 Attach a test metric to the test result, with the given name and list o [all...] |
/external/python/cpython2/Lib/ctypes/test/ |
test_pep3118.py | 20 class Test(unittest.TestCase): 110 # machines. The test replaces '<' with '>' on big endian machines.
|
/external/python/cpython2/Lib/unittest/test/ |
test_runner.py | 6 from unittest.test.support import (LoggingResult, 17 test = TestableTest('testNothing') 18 self.assertEqual(test._cleanups, []) 28 test.addCleanup(cleanup1, 1, 2, 3, four='hello', five='goodbye') 29 test.addCleanup(cleanup2) 31 self.assertEqual(test._cleanups, 35 result = test.doCleanups() 48 def addError(self, test, exc_info): 49 self.errors.append((test, exc_info)) 52 test = TestableTest('testNothing' [all...] |
/external/python/cpython3/Lib/ctypes/test/ |
test_pep3118.py | 20 class Test(unittest.TestCase): 113 # machines. The test replaces '<' with '>' on big endian machines.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
CrossDSOCFI.cpp | 149 BasicBlock *TestBB = BasicBlock::Create(Ctx, "test", F); 153 Value *Test = IRBTest.CreateCall( 156 BranchInst *BI = IRBTest.CreateCondBr(Test, ExitBB, TrapBB);
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
Test.py | 7 # Test result codes. 10 """Test result codes.""" 40 # Test metric values. 56 Convert this metric to content suitable for serializing in the JSON test 124 # Test results. 127 """Wrapper for the results of executing an individual test.""" 132 # The test output. 134 # The wall timing to execute the test, if timing. 136 # The metrics reported by this test. 138 # The micro-test results reported by this test [all...] |
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
Locked.cpp | 13 namespace Test { 52 AssembledTest test = assemble(); \ 53 test.setDwordTo(T0, V0); \ 54 test.run(); \ 56 ASSERT_EQ(V0, test.Dst1()) << TestString; \ 57 ASSERT_EQ(V1, test.contentsOfDword(T0)) << TestString; \ 104 AssembledTest test = assemble(); \ 105 test.run(); \ 107 ASSERT_EQ(V0, test.Reg1()) << TestString; \ 108 ASSERT_EQ(V1, test.Reg0()) << TestString; [all...] |
LowLevel.cpp | 13 namespace Test { 681 AssembledTest test = assemble(); local [all...] |
/external/tensorflow/tensorflow/contrib/fused_conv/python/ops/ |
fused_conv2d_bias_activation_op_test_base.py | 16 """Provides test suites that can be run to test fused convolutions. 18 Each of the two test suites in this module, FusedConv2DBiasActivationTest and 20 from the FusedConv test and a class that provides the standard test.TestCase 42 from tensorflow.python.platform import test 133 # Shrink sizes to make the test faster 161 all the valid test configs as tuples of data_format and use_gpu. 183 def Test(self): 184 if gpu_only and not test.is_gpu_available() [all...] |
/external/v8/tools/clang/plugins/tests/ |
virtual_specifiers.cpp | 11 // Purposely use macros to test that the FixIt hints don't try to remove the 85 // Test that the redundant virtual warning is suppressed when the virtual 92 // don't trigger warnings, except for testing::Test. 95 class Test { 97 virtual ~Test(); 109 class MyTest : public testing::Test {
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
TestVADDTX.cc | 11 #include "webrtc/modules/audio_coding/test/TestVADDTX.h" 16 #include "webrtc/modules/audio_coding/test/PCMFile.h" 17 #include "webrtc/modules/audio_coding/test/utility.h" 18 #include "webrtc/test/testsupport/fileutils.h" 90 // Set test length to 1000 ms (100 blocks of 10 ms each). 93 // silence, but we want to keep half of that to test silence periods. 149 // Go through various test cases. 173 // Test various configurations on VAD/DTX. 177 Test(true); 181 Test(false) [all...] |
/art/openjdkjvmti/ |
events.h | 131 bool Test(ArtJvmtiEvent event) const { 133 return bit_set.test( 198 return global_mask.Test(event);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/screenpinning/ |
ScreenPinningTestActivity.java | 37 private Test[] mTests; 49 mTests = new Test[] { 81 // Figure out if we are in a test or starting from the beginning. 97 // Block back button so we can test screen pinning exit functionality. 140 private final Test mCheckStartedUnpinned = new Test(0) { 151 private final Test mCheckStartPinning = new Test(R.string.screen_pin_instructions) { 161 private final Test mCheckIsPinned = new Test(R.string.screen_pin_check_pinned) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/ |
Test.java | 40 public abstract class Test { 59 * @param testReport The test report object to record the tests. 60 * @param manager The manager to call when the test is done. 62 public Test(ReferencePath referencePath, TestReport testReport, Manager manager, String testPhase) { 76 * Adds the current waypoint to the test path. 108 * Performs the tests for this test phase. 125 * test. 127 * @return true if the test passes and false if the rest fails. 141 * Runs a check to find any markers that have failed the test and adds them to the test report [all...] |
/device/google/contexthub/util/nanotool/ |
nanotool.cpp | 46 Test, 69 std::make_tuple("test", NanotoolCommand::Test), 104 " test: run a sensor's self-test routine\n" 166 || args->command == NanotoolCommand::Test 468 case NanotoolCommand::Test: {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
test_result.py | 4 from test import test_support
42 # "Called when the test case test is about to be run. The default
49 test = Foo('test_1')
53 result.startTest(test)
61 result.stopTest(test)
63 # "Called after the test case test has been executed, regardless of
70 test = Foo('test_1')
74 result.startTest(test)
293 def test(result): function in function:Test_TestResult.testFailFastSetByRunner 336 test = Test(test_name) variable in class:Test_OldTestResult.testOldTestResult.Test [all...] |
test_setups.py | 34 class Test(unittest.TestCase):
38 Test.setUpCalled += 1
45 result = self.runTests(Test)
47 self.assertEqual(Test.setUpCalled, 1)
52 class Test(unittest.TestCase):
56 Test.tearDownCalled += 1
63 result = self.runTests(Test)
65 self.assertEqual(Test.tearDownCalled, 1)
70 class Test(unittest.TestCase):
74 Test.tearDownCalled += 1 [all...] |
test_suite.py | 10 class Test(object):
18 return unittest.TestSuite(Test.Foo(n) for n in names)
55 # "If tests is given, it must be an iterable of individual test cases
56 # or other test suites that will be used to build the suite initially"
67 # "If tests is given, it must be an iterable of individual test cases
68 # or other test suites that will be used to build the suite initially"
87 # "If tests is given, it must be an iterable of individual test cases
88 # or other test suites that will be used to build the suite initially"
112 # "Return the number of tests represented by the this test object.
122 # "Return the number of tests represented by the this test object. 130 def test(self): member in class:Test_TestSuite.test_countTestCases_zero_nested.Test1 212 def test(self): pass member in class:Test_TestSuite.test_addTest__TestCase.Foo 225 def test(self): pass member in class:Test_TestSuite.test_addTest__TestSuite.Foo [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
pybench.py | 61 # Minimum test run-time
152 ### Test baseclass
154 class Test:
156 """ All test must have this class as baseclass. It provides
160 test run between 20-50 seconds. This is needed because
170 If you change a test in some way, don't forget to increase
175 ### Instance variables that each test should override
177 # Version number of the test as float (x.yy); this is important
183 # test. An operation is the basic unit of what you want to
187 # sets of operations more than once per test round. The measured 349 def test(self): member in class:Test [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/ |
Map.c | 173 @param[in] DevicePath DevicePath to test.
205 @param[in] MapList The pointer to the list to test.
206 @param[in] Specific The pointer to a specific name to test for.
522 CHAR16 *Test;
531 Test = (CHAR16*)Cd;
532 if (StrnCmp(TypeString, Test, StrLen(Test)-1) != 0) {
533 Test = (CHAR16*)Hd;
534 if (StrnCmp(TypeString, Test, StrLen(Test)-1) != 0) { [all...] |