/external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/ |
D | DisableIfTest.java | 29 Assert.assertTrue(new DisableIfSkipCheck().shouldSkip(sdkIsLessThan)); in testSdkIsLessThanAndIsLessThan() 38 Assert.assertFalse(new DisableIfSkipCheck().shouldSkip(sdkIsEqual)); in testSdkIsLessThanButIsEqual() 47 Assert.assertFalse(new DisableIfSkipCheck().shouldSkip(sdkIsGreaterThan)); in testSdkIsLessThanButIsGreaterThan() 56 Assert.assertFalse(new DisableIfSkipCheck().shouldSkip(sdkIsLessThan)); in testSdkIsGreaterThanButIsLessThan() 65 Assert.assertFalse(new DisableIfSkipCheck().shouldSkip(sdkIsEqual)); in testSdkIsGreaterThanButIsEqual() 74 Assert.assertTrue(new DisableIfSkipCheck().shouldSkip(sdkIsGreaterThan)); in testSdkIsGreaterThanAndIsGreaterThan() 87 Assert.assertTrue(new DisableIfSkipCheck().shouldSkip(supportedAbisCpuAbiMatch)); in testSupportedAbiIncludesAndCpuAbiMatches() 103 Assert.assertTrue(new DisableIfSkipCheck().shouldSkip(supportedAbisCpuAbi2Match)); in testSupportedAbiIncludesAndCpuAbi2Matches() 119 Assert.assertFalse(new DisableIfSkipCheck().shouldSkip(supportedAbisNoMatch)); in testSupportedAbiIncludesButNoMatch() 134 Assert.assertTrue(new DisableIfSkipCheck().shouldSkip(hardwareIsMatches)); in testHardwareIsMatches() [all …]
|
D | RestrictionSkipCheckTest.java | 89 Assert.assertTrue(new TestRestrictionSkipCheck().shouldSkip( in testMethodRestricted() 95 Assert.assertFalse(new TestRestrictionSkipCheck().shouldSkip( in testMethodUnrestricted() 101 Assert.assertTrue(new TestRestrictionSkipCheck().shouldSkip( in testClassRestricted() 107 Assert.assertFalse(new TestRestrictionSkipCheck().shouldSkip( in testClassUnrestricted() 113 Assert.assertTrue(new TestRestrictionSkipCheck().shouldSkip( in testMultipleRestrictionsClassRestricted() 119 Assert.assertTrue(new TestRestrictionSkipCheck().shouldSkip( in testSuperclassRestricted() 125 Assert.assertFalse(new TestRestrictionSkipCheck().shouldSkip( in testSuperclassUnrestricted()
|
D | MinAndroidSdkLevelSkipCheckTest.java | 56 private void expectShouldSkip(Class<?> testClass, String methodName, boolean shouldSkip) in expectShouldSkip() argument 59 mSkipCheck.shouldSkip(new FrameworkMethod(testClass.getMethod(methodName))), in expectShouldSkip() 60 equalTo(shouldSkip)); in expectShouldSkip() 63 isIn(shouldSkip ? runListener.skippedTests : runListener.runTests)); in expectShouldSkip()
|
D | SkipCheckTest.java | 35 public boolean shouldSkip(FrameworkMethod m) { in shouldSkip() method in SkipCheckTest.TestableSkipCheck
|
/external/testng/src/test/java/test/dataprovider/ |
D | FailingDataProviderTest.java | 11 private void shouldSkip(Class cls, String message, int expected) { in shouldSkip() method in FailingDataProviderTest 21 shouldSkip(FailingDataProvider.class, "Test method should be marked as skipped", 1); in failingDataProvider() 26 shouldSkip(DuplicateDataProviderSampleTest.class, "", 1); in duplicateDataProviders() 31 shouldSkip(DataProviderWithError.class, in failingDataProviderAndInvocationCount()
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | SkipCheck.java | 29 public abstract boolean shouldSkip(FrameworkMethod testMethod); in shouldSkip() method in SkipCheck 38 public boolean shouldSkip(TestCase testCase) { in shouldSkip() method in SkipCheck 41 return shouldSkip(new FrameworkMethod(m)); in shouldSkip()
|
D | MinAndroidSdkLevelSkipCheck.java | 28 public boolean shouldSkip(FrameworkMethod frameworkMethod) { in shouldSkip() method in MinAndroidSdkLevelSkipCheck
|
D | RestrictionSkipCheck.java | 35 public boolean shouldSkip(FrameworkMethod frameworkMethod) { in shouldSkip() method in RestrictionSkipCheck
|
D | DisableIfSkipCheck.java | 25 public boolean shouldSkip(FrameworkMethod method) { in shouldSkip() method in DisableIfSkipCheck
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/ |
D | BaseTestResult.java | 75 protected boolean shouldSkip(TestCase test) { in shouldSkip() method in BaseTestResult 77 if (s.shouldSkip(test)) return true; in shouldSkip() 99 if (shouldSkip(test)) { in run()
|
D | BaseJUnit4ClassRunner.java | 185 return super.isIgnored(method) || shouldSkip(method); in isIgnored() 261 private boolean shouldSkip(FrameworkMethod method) { in shouldSkip() method in BaseJUnit4ClassRunner 263 if (s.shouldSkip(method)) { in shouldSkip()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestLsrvCanonicalizer.java | 172 Set<String> shouldSkip = new LinkedHashSet<>(); in TestAgainstLanguageSubtagRegistry() local 211 shouldSkip.add(subtag); in TestAgainstLanguageSubtagRegistry() 248 if (!shouldSkip.isEmpty()) { in TestAgainstLanguageSubtagRegistry() 251 System.out.println("\"" + Joiner.on("\", \"").join(shouldSkip) + "\""); in TestAgainstLanguageSubtagRegistry()
|
/external/testng/src/test/java/test/skipex/ |
D | SkipAndExpectedTest.java | 13 public void shouldSkip() { in shouldSkip() method in SkipAndExpectedTest
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIInsertSkips.cpp | 56 bool shouldSkip(const MachineBasicBlock &From, 108 bool SIInsertSkips::shouldSkip(const MachineBasicBlock &From, in shouldSkip() function in SIInsertSkips 154 !shouldSkip(MBB, MBB.getParent()->back())) in skipIfDead() 325 if (!shouldSkip(**SrcMBB.succ_begin(), *DestBB)) in skipMaskBranch()
|
/external/testng/src/test/java/test/listeners/ |
D | ConfigurationListenerTest.java | 60 public void shouldSkip() { in shouldSkip() method in ConfigurationListenerTest
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | SIInsertSkips.cpp | 63 bool shouldSkip(const MachineBasicBlock &From, 118 bool SIInsertSkips::shouldSkip(const MachineBasicBlock &From, in shouldSkip() function in SIInsertSkips 396 if (!shouldSkip(**SrcMBB.succ_begin(), *DestBB)) in skipMaskBranch()
|
/external/turbine/java/com/google/turbine/binder/bytecode/ |
D | BytecodeBinder.java | 144 if (!shouldSkip(anno)) { in bindAnnotations() 151 private static boolean shouldSkip(TurbineAnnotationValue anno) { in shouldSkip() method
|
/external/llvm/lib/Target/AMDGPU/ |
D | SILowerControlFlow.cpp | 76 bool shouldSkip(MachineBasicBlock *From, MachineBasicBlock *To); 159 bool SILowerControlFlow::shouldSkip(MachineBasicBlock *From, in shouldSkip() function in SILowerControlFlow 203 if (!shouldSkip(*From.getParent()->succ_begin(), To.getMBB())) in Skip() 216 !shouldSkip(&MBB, &MBB.getParent()->back())) in skipIfDead()
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 400 static bool shouldSkip(uint32_t Symflags) { in shouldSkip() function 529 if (shouldSkip(Symflags)) in claim_file_hook() 718 if (shouldSkip(ObjSym.getFlags())) in getModuleForFile()
|
/external/llvm-project/lld/ELF/ |
D | Writer.cpp | 1238 static bool shouldSkip(BaseCommand *cmd) { in shouldSkip() function 1288 while (i != e && shouldSkip(*i)) in findOrphanPos() 1607 std::find_if(i, e, [](BaseCommand *cmd) { return !shouldSkip(cmd); }); in sortSections()
|