Home
last modified time | relevance | path

Searched refs:excluded (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/external/ltp/tools/pounder21/
Dpounder49 -l List (both included and excluded) subtests that came with the test scheduler
51 -i subtests Include previously excluded subtests in the next pounder run
64 SUBTESTS_INC=`find $POUNDER_TESTS -name excluded -prune -o -type f -print -o -type l -print`
79 ALREADY_EXCLUDED=`grep -w "$BASENAME" $POUNDER_TESTS/excluded/testlist | cut -d " " -f1`
86 echo "$BASENAME" "$FULL_PATH" >> "$POUNDER_TESTS"/excluded/testlist
87 mv "$i" "$POUNDER_TESTS"/excluded/"$BASENAME"
103 POUNDER_EXCLUDED=$POUNDER_HOME/tests/excluded
132 INCLUDED_TESTS=`find $POUNDER_HOME/tests -name excluded -prune -o -type f -print -o -type l -print`
142 if [ ! -d $POUNDER_HOME/tests/excluded ]; then
147 EXCLUDED_TESTS=`grep -v "#" $POUNDER_HOME/tests/excluded/testlist`
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DNameConstraints.java16 private GeneralSubtree[] permitted, excluded; field in NameConstraints
44 excluded = createArray(ASN1Sequence.getInstance(o, false)); in NameConstraints()
65 GeneralSubtree[] excluded) in NameConstraints() argument
68 this.excluded = cloneSubtree(excluded); in NameConstraints()
90 return cloneSubtree(excluded); in getExcludedSubtrees()
106 if (excluded != null) in toASN1Primitive()
108 v.add(new DERTaggedObject(false, 1, new DERSequence(excluded))); in toASN1Primitive()
DPKIXNameConstraintValidator.java380 private void checkExcludedDN(Set excluded, ASN1Sequence dns) in checkExcludedDN() argument
383 if (excluded.isEmpty()) in checkExcludedDN()
388 Iterator it = excluded.iterator(); in checkExcludedDN()
437 private Set unionDN(Set excluded, ASN1Sequence dn) in unionDN() argument
439 if (excluded.isEmpty()) in unionDN()
443 return excluded; in unionDN()
445 excluded.add(dn); in unionDN()
447 return excluded; in unionDN()
453 Iterator it = excluded.iterator(); in unionDN()
506 private Set unionEmail(Set excluded, String email) in unionEmail() argument
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXNameConstraintValidator.java111 private void checkExcludedDN(Set excluded, ASN1Sequence dns) in checkExcludedDN() argument
114 if (excluded.isEmpty()) in checkExcludedDN()
119 Iterator it = excluded.iterator(); in checkExcludedDN()
168 private Set unionDN(Set excluded, ASN1Sequence dn) in unionDN() argument
170 if (excluded.isEmpty()) in unionDN()
174 return excluded; in unionDN()
176 excluded.add(dn); in unionDN()
178 return excluded; in unionDN()
184 Iterator it = excluded.iterator(); in unionDN()
237 private Set unionEmail(Set excluded, String email) in unionEmail() argument
[all …]
/external/testng/src/main/java/org/testng/internal/
DPackageUtils.java47 List<String> included, List<String> excluded) in findClassesInPackage() argument
94 findClassesInDirPackage(packageOnly, included, excluded, in findClassesInPackage()
120 includeOrExcludeClass(packageName, className, included, excluded, vResult); in findClassesInPackage()
135 findClassesInDirPackage(packageOnly, included, excluded, in findClassesInPackage()
212 List<String> excluded, in findClassesInDirPackage() argument
236 excluded, in findClassesInDirPackage() local
245 includeOrExcludeClass(packageName, className, included, excluded, classes); in findClassesInDirPackage()
255 List<String> included, List<String> excluded, List<String> classes) in includeOrExcludeClass() argument
257 if (isIncluded(packageName, included, excluded)) { in includeOrExcludeClass()
270 List<String> included, List<String> excluded) in isIncluded() argument
[all …]
/external/testng/src/test/java/test/simple/
DIncludedExcludedTest.java58 public MyReporter(String[] included, String[] excluded) { in MyReporter() argument
60 m_excluded = excluded; in MyReporter()
77 Collection<ITestNGMethod> excluded = suite.getExcludedMethods(); in generateReport() local
78 Assert.assertEquals(excluded.size(), m_excluded.length); in generateReport()
80 Assert.assertTrue(containsMethod(excluded, s)); in generateReport()
/external/junit/src/main/java/org/junit/experimental/categories/
DCategories.java115 private final Set<Class<?>> excluded; field in Categories.CategoryFilter
159 excluded = copyAndRefine(excludes); in CategoryFilter()
186 if (!excluded.isEmpty()) { in toString()
187 description.append(" - ").append(excluded); in toString()
215 if (!excluded.isEmpty()) { in hasCorrectCategoryAnnotation()
217 if (matchesAnyParentCategories(childCategories, excluded)) { in hasCorrectCategoryAnnotation()
221 if (matchesAllParentCategories(childCategories, excluded)) { in hasCorrectCategoryAnnotation()
310 Set<Class<?>> excluded= getExcludedCategory(klass); in Categories() local
314 filter(CategoryFilter.categoryFilter(isAnyIncluded, included, isAnyExcluded, excluded)); in Categories()
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
DTestSelection.java88 for (UnicodeSet excluded : excludedSets) { in TestConversionUTF16()
89 … CharsetSelector sel = new CharsetSelector(testEncodings, excluded, CharsetICU.ROUNDTRIP_SET); in TestConversionUTF16()
92 … verifyResultUTF16(texts[i], testEncodings, result, excluded, CharsetICU.ROUNDTRIP_SET); in TestConversionUTF16()
98 UnicodeSet excluded, int mappingType) { in verifyResultUTF16() argument
108 if (!excluded.contains(ch) && !unicodePointSet.contains(ch)) { in verifyResultUTF16()
/external/clang/test/Modules/Inputs/System/usr/include/
Dmodule.map36 module excluded {
37 requires excluded
45 requires excluded
/external/autotest/contrib/
Dcoverage.py104 def __init__(self, statements, excluded, suite_spots): argument
107 self.excluded = excluded
187 self.excluded[lineno] = 1
191 elif self.excluded.has_key(lineno) or \
193 self.excluded.has_key(self.suite_spots[lineno][1]):
223 self.doSuite(None, suite, exclude=self.excluded.has_key(l))
694 excluded = {}
701 excluded[i+1] = 1
714 visitor = StatementFindingAstVisitor(statements, excluded, suite_spots)
719 excluded_lines = excluded.keys()
[all …]
/external/compiler-rt/lib/builtins/Darwin-excludes/
DREADME.TXT1 This folder contains list of symbols that should be excluded from the builtin
2 libraries for Darwin. There are two reasons symbols are excluded:
/external/wpa_supplicant_8/wpa_supplicant/
Dinterworking.c51 int *excluded);
54 int *excluded);
1346 int *excluded) in interworking_credentials_available_roaming_consortium() argument
1382 if (excluded == NULL) in interworking_credentials_available_roaming_consortium()
1397 if (excluded) in interworking_credentials_available_roaming_consortium()
1398 *excluded = is_excluded; in interworking_credentials_available_roaming_consortium()
1600 int excluded = 0, *excl = &excluded; in interworking_connect() local
1877 int *excluded) in interworking_credentials_available_3gpp() argument
1977 if (excluded == NULL) in interworking_credentials_available_3gpp()
1993 if (excluded) in interworking_credentials_available_3gpp()
[all …]
/external/jacoco/jacoco-maven-plugin.test/it/it-includes-excludes/
Dverify.bsh25 …throw new FileNotFoundException( "DatabaseUtil should NOT be excluded: " + databaseUtilReportFile …
31 throw new RuntimeException( "TestUtil SHOULD be excluded: " + testUtilReportFile );
/external/deqp/external/vulkancts/mustpass/1.0.2/src/
Dandroid-tests.txt2 # tests are excluded from Khronos CTS mustpass as they are
/external/llvm/tools/llvm-jitlistener/
DCMakeLists.txt1 # This tool is excluded from the CMake build if Intel JIT events are disabled.
/external/ltp/tools/pounder21/test_repo/excluded/
Dtestlist2 # which pounder subtests are excluded from the
/external/llvm/test/MC/ELF/
Dsection.s127 .section .excluded,"e",@progbits
/external/clang/test/Coverage/
Dcodegen-next.m9 // Then, This test should be excluded on x86_64-win32.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DCertPathReviewerMessages.properties19 # cert DN is in the excluded tree
21 CertPathReviewer.excludedDN.title = Name constraint error: certificate DN is excluded
22 CertPathReviewer.excludedDN.text = Name constraint error: The certificate DN {0} is excluded.
23 CertPathReviewer.excludedDN.summary = Name constraint error: certificate DN is excluded.
24 …ails = Name constraint checking error. The certificate DN {0} is inside of the excluded set of DNs.
33 # cert email is in the excluded tree
35 CertPathReviewer.excludedEmail.title = Name constraint error: excluded email address
36 CertPathReviewer.excludedEmail.text = Name constraint error: certificate contains the excluded emai…
37 CertPathReviewer.excludedEmail.summary = Name constraint error: excluded email address.
38 …g error. The certificate contains the email address {0} which is in the excluded set of email addr…
[all …]
/external/clang/test/Modules/
Ddarwin_specific_modulemap_hacks.m5 @import Darwin.C.excluded; // no error, header is implicitly 'textual'
Drequire-modular-includes.m42 // Including an excluded header
55 // Including an excluded header from another module
/external/wycheproof/
DBUILD44 # with tags=["manual"] it'll be excluded from said patterns.
96 # with tags=["manual"] it'll be excluded from said patterns.
/external/squashfs-tools/squashfs-tools/
Dmksquashfs.h40 unsigned int excluded; member
/external/ltp/tools/pounder21/doc/
DSCHEDULER297 contain the T00hwinfo subtest along with a tests/excluded/ directory (see the "Including and
298 Excluding Tests" section below for details regarding the tests/excluded directory).
332 "tests/excluded" folder for temporary storage, where they will remain until
334 should be unique). A file "tests/excluded/testlist" keeps track of which tests
335 have been excluded from the test scheduler and what their original paths were.
351 the test scheduler. They will be moved from the tests/excluded folder back into
/external/llvm/test/CodeGen/Generic/
D2006-07-03-schedulers.ll6 ; The top-down schedulers are excluded here because they don't yet support

12345678910>>...12