HomeSort by relevance Sort by last modified time
    Searched refs:excluded (Results 1 - 25 of 309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/test-runner/src/junit/runner/
excluded.properties 2 # The list of excluded package paths for the TestCaseClassLoader
4 excluded.0=sun.*
5 excluded.1=com.sun.*
6 excluded.2=org.omg.*
7 excluded.3=javax.*
8 excluded.4=sunw.*
9 excluded.5=java.*
10 excluded.6=org.w3c.dom.*
11 excluded.7=org.xml.sax.*
12 excluded.8=net.jini.
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
NameConstraints.java 16 private GeneralSubtree[] permitted, excluded; field in class:NameConstraints
44 excluded = createArray(ASN1Sequence.getInstance(o, false));
54 * permitted and excluded are arrays of GeneralSubtree objects.
58 * @param excluded
63 GeneralSubtree[] excluded)
70 if (excluded != null)
72 this.excluded = excluded;
95 return excluded;
111 if (excluded != null
    [all...]
PKIXNameConstraintValidator.java 80 * Check if the given GeneralName is contained in the excluded set.
84 * excluded.
191 * Adds a subtree to the excluded set of these name constraints.
193 * @param subtree A subtree with an excluded GeneralName.
286 temp += "excluded:\n";
380 private void checkExcludedDN(Set excluded, ASN1Sequence dns)
383 if (excluded.isEmpty())
388 Iterator it = excluded.iterator();
397 "Subject distinguished name is from an excluded subtree");
437 private Set unionDN(Set excluded, ASN1Sequence dn
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
NameConstraintsExtension.java 42 * The name constraints extension provides permitted and excluded
46 * matching a restriction in the excluded subtrees field is invalid
82 private GeneralSubtrees excluded = null; field in class:NameConstraintsExtension
92 if (excluded != null) {
93 for (int i = 0; i < excluded.size(); i++) {
94 GeneralSubtree subtree = excluded.get(i);
117 if (permitted == null && excluded == null) {
130 if (excluded != null) {
132 excluded.encode(tmp);
146 * @param excluded the excluded GeneralSubtrees (null for optional)
    [all...]
GeneralSubtrees.java 301 * the list of names that are specifically excluded. The reason
315 * @returns GeneralSubtrees to be merged with excluded; these are
330 // return no new excluded entries
394 // type to excluded.
490 * is used in merging excluded NameConstraints with permitted NameConstraints
494 * @param excluded GeneralSubtrees
496 public void reduce(GeneralSubtrees excluded) {
497 if (excluded == null) {
500 for (int i = 0, n = excluded.size(); i < n; i++) {
501 GeneralNameInterface excludedName = excluded.getGeneralNameInterface(i)
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertSelectorTest.java 66 byte[] excluded = { (byte) 192, (byte) 168, 0, 1 };
71 assertTrue(certSelector.match(newCertWithNameConstraint(directMatch, excluded)));
74 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded)));
80 byte[] excluded = {
91 assertTrue(certSelector.match(newCertWithNameConstraint(directMatch, excluded)));
97 assertFalse(certSelector.match(newCertWithNameConstraint(noMatch, excluded)));
123 private X509Certificate newCertWithNameConstraint(byte[] permitted, byte[] excluded)
127 .addNameConstraint(false, excluded)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ConfigResultsElement.java 280 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) {
293 if (excluded != null) {
294 excluded.append(configResults+" excluded from status because there's only "+numbersLength+" builds available although "+buildsNumber+" is required to decide a regression is confirmed or not!");
295 excluded.append(Util.LINE_SEPARATOR);
308 if (excluded != null) {
309 excluded.append(configResults+" excluded from status because only "+confirmed+" builds failed on last "+buildsNumber+" ones!");
310 excluded.append(Util.LINE_SEPARATOR);
377 if (excluded != null)
    [all...]
ScenarioResultsElement.java 129 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) {
134 StringBuffer childrenBuffer = super.writableStatus(new StringBuffer(), kind, excluded);
136 // Write status on file if not excluded
  /external/testng/src/test/java/test/simple/
IncludedExcludedTest.java 58 public MyReporter(String[] included, String[] excluded) {
60 m_excluded = excluded;
77 Collection<ITestNGMethod> excluded = suite.getExcludedMethods(); local
78 Assert.assertEquals(excluded.size(), m_excluded.length);
80 Assert.assertTrue(containsMethod(excluded, s));
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestSelection.java 88 for (UnicodeSet excluded : excludedSets) {
89 CharsetSelector sel = new CharsetSelector(testEncodings, excluded, CharsetICU.ROUNDTRIP_SET);
92 verifyResultUTF16(texts[i], testEncodings, result, excluded, CharsetICU.ROUNDTRIP_SET);
98 UnicodeSet excluded, int mappingType) {
108 if (!excluded.contains(ch) && !unicodePointSet.contains(ch)) {
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONObjectConvertor.java 56 * @param excluded An array of field names to exclude from the conversion
58 public JSONObjectConvertor(boolean fromJSON,String[] excluded)
61 if (excluded!=null)
62 _excluded=new HashSet(Arrays.asList(excluded));
JSONPojoConvertor.java 71 * @param excluded The fields to exclude
73 public JSONPojoConvertor(Class<?> pojoClass, String[] excluded)
75 this(pojoClass, new HashSet<String>(Arrays.asList(excluded)), true);
80 * @param excluded The fields to exclude
82 public JSONPojoConvertor(Class<?> pojoClass, Set<String> excluded)
84 this(pojoClass, excluded, true);
89 * @param excluded The fields to exclude
92 public JSONPojoConvertor(Class<?> pojoClass, Set<String> excluded, boolean fromJSON)
95 _excluded = excluded;
237 LOG.warn("{} property '{}' excluded. (errors)", _pojoClass.getName(),
    [all...]
  /external/testng/src/main/java/org/testng/internal/
PackageUtils.java 47 List<String> included, List<String> excluded)
94 findClassesInDirPackage(packageOnly, included, excluded,
119 Utils.log("PackageUtils", 4, "Found class " + className + ", seeing it if it's included or excluded");
120 includeOrExcludeClass(packageName, className, included, excluded, vResult);
135 findClassesInDirPackage(packageOnly, included, excluded,
212 List<String> excluded,
236 excluded, local
244 + ", seeing it if it's included or excluded");
245 includeOrExcludeClass(packageName, className, included, excluded, classes);
255 List<String> included, List<String> excluded, List<String> classes
    [all...]
  /external/llvm/test/MC/ELF/
section.s 123 .section .excluded,"e",@progbits
126 // CHECK: Name: .excluded
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 111 private void checkExcludedDN(Set excluded, ASN1Sequence dns)
114 if (excluded.isEmpty())
119 Iterator it = excluded.iterator();
128 "Subject distinguished name is from an excluded subtree");
168 private Set unionDN(Set excluded, ASN1Sequence dn)
170 if (excluded.isEmpty())
174 return excluded;
176 excluded.add(dn);
178 return excluded;
184 Iterator it = excluded.iterator()
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-linkonce/
zeroehl32.d 7 # The word at address 201c, for the linkonce-excluded section, must be zero.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
zeroehelf.d 6 # The word at address 201c, for the linkonce-excluded section, must be zero.
zeroehmmo.d 6 # The word at address 201c, for the linkonce-excluded section, must be zero.
y.s 5 ;# .gcc_except_table to the linkonce-excluded fn2 must be zero,
  /external/chromium-trace/catapult/third_party/coverage/coverage/
annotate.py 34 Executed lines use '>', lines not executed use '!', lines excluded from
62 excluded = sorted(analysis.excluded)
96 elif lineno in excluded:
  /prebuilts/go/darwin-x86/src/regexp/
exec2_test.go 13 // This test is excluded when running under the race detector because
  /prebuilts/go/linux-x86/src/regexp/
exec2_test.go 13 // This test is excluded when running under the race detector because
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
GzipHandler.java 126 * Get the excluded user agents.
128 * @return excluded user agents
137 * Set the excluded user agents.
139 * @param excluded
140 * excluded user agents to set
142 public void setExcluded(Set<String> excluded)
144 _excluded = excluded;
149 * Set the excluded user agents.
151 * @param excluded
152 * excluded user agents to se
    [all...]
  /external/v8/test/mozilla/
testcfg.py 36 EXCLUDED = ["CVS", ".svn"]
72 for excluded in EXCLUDED:
73 if excluded in dirs:
74 dirs.remove(excluded)
  /external/autotest/contrib/
coverage.py 104 def __init__(self, statements, excluded, suite_spots):
107 self.excluded = excluded
178 # Returns a bool, whether the line is included or excluded.
184 # If we're inside an excluded suite, record that this line was
185 # excluded.
187 self.excluded[lineno] = 1
189 # If this line is excluded, or suite_spots maps this line to
190 # another line that is exlcuded, then we're excluded.
191 elif self.excluded.has_key(lineno) or
    [all...]

Completed in 5370 milliseconds

1 2 3 4 5 6 7 8 91011>>