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

1 2 3

  /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...]
  /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
PerformanceResultsElement.java 219 StringBuffer excluded = new StringBuffer(); local
240 buffer.append("all failures with at least a noticeable error (> 3%) are excluded!");
243 buffer.append("all failures with at least a suspicious error (> 25%) are excluded!");
246 buffer.append("all failures with at least a weird error (> 50%) are excluded!");
249 buffer.append("all failures with an invalid error (> 100%) are excluded!");
259 buffer.append("all failures with a small build value (<100ms) are excluded!");
262 buffer.append("all failures with a small delta value (<100ms) are excluded!");
265 buffer.append("all failures with a small build or delta value (<100ms) are excluded!");
275 buffer.append("all failures with erratic baseline results (variation > 20%) are excluded!");
278 buffer.append("all failures with unstable baseline results (10% < variation < 20%) are excluded!");
    [all...]
ComponentResultsElement.java 204 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) {
209 StringBuffer childrenBuffer = super.writableStatus(new StringBuffer(), kind, excluded);
211 // Write status on file if not excluded
ResultsElement.java 590 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) {
593 this.children[i].writableStatus(buffer, kind, 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...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
annotate.py 24 Executed lines use '>', lines not executed use '!', lines excluded from
64 excluded = analysis.excluded
93 elif lineno in excluded:
parser.py 13 """Parse code to find executable lines, excluded lines, etc."""
18 which the text will be read. Excluded lines are those that match
45 # The line numbers of excluded lines of code.
46 self.excluded = set()
94 self.excluded = self.lines_matching(self.exclude)
96 # Tokenize, to find excluded suites, to find docstrings, and to find
122 if not excluding and elineno in self.excluded:
152 # Check whether to end an excluded suite.
156 self.excluded.add(elineno)
193 """Parse source text to find executable lines, excluded lines, etc
    [all...]
results.py 30 self.statements, self.excluded = self.parser.parse_source()
54 n_excluded=len(self.excluded),
html.py 153 if lineno in analysis.excluded:
  /external/chromium_org/v8/test/mozilla/
testcfg.py 41 EXCLUDED = ["CVS"]
77 for excluded in EXCLUDED:
78 if excluded in dirs:
79 dirs.remove(excluded)
  /external/v8/test/mozilla/
testcfg.py 34 EXCLUDED = ['CVS']
102 for excluded in EXCLUDED:
103 if excluded in dirs:
104 dirs.remove(excluded)
  /external/chromium_org/chrome/test/webdriver/test/
run_webdriver_tests.py 181 excluded = []
182 # Find all excluded tests. Excluded tests begin with '-'.
185 excluded.extend(self._GetTestsFromName(self.TEST_PREFIX + name[1:]))
188 for name in excluded:
190 if excluded:
191 logging.debug('Excluded %d test(s): %s' % (len(excluded), excluded))
  /frameworks/support/v7/appcompat/
Android.mk 18 # The R class is automatically excluded from the generated library.
  /frameworks/support/v7/gridlayout/
Android.mk 18 # The R class is automatically excluded from the generated library.
  /libcore/json/src/main/java/org/json/
JSONTokener.java 333 * a newline character. This does not consume the excluded character.
335 private String nextToInternal(String excluded) {
339 if (c == '\r' || c == '\n' || excluded.indexOf(c) != -1) {
532 * <li>any character in {@code excluded}
544 public String nextTo(String excluded) {
545 if (excluded == null) {
546 throw new NullPointerException("excluded == null");
548 return nextToInternal(excluded).trim();
552 * Equivalent to {@code nextTo(String.valueOf(excluded))}.
554 public String nextTo(char excluded) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentsView.java 471 File exclusionDir = new File(writeDir, "excluded");
493 StringBuffer excluded = this.results.writeStatus(resultsFile, WRITE_STATUS); local
494 if (excluded == null) {
502 stream.write(excluded.toString().getBytes());
  /frameworks/support/v7/mediarouter/
Android.mk 57 # The R class is automatically excluded from the generated library.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 1008 def excluded(filename): function
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js 458 var excluded = [];
571 excluded.push( id );
651 overview.innerHTML = "<div class='resultwrap'><table class='results'>" + preoutput + totaloutput + output + totaloutput + "</table>" + (excluded.length ? "<div style='text-align:left;'><small><b>Excluded Tests:</b> " + excluded.sort().join(", ") + "</small></div>" : "") + "</div>";
    [all...]
  /external/v8/tools/
tickprocessor.js 195 { total: 0, unaccounted: 0, excluded: 0, gc: 0 };
359 this.ticks_.excluded++;
410 this.ticks_.excluded + ' excluded).');
  /external/chromium_org/sync/tools/testserver/
chromiumsync.py 277 excluded = set(ALL_TYPES) - included - set([TOP_LEVEL])
278 if not excluded:
282 '+'.join(sorted([SyncTypeToString(x) for x in excluded])))
283 if len(included) < len(excluded) or len(simple_text) <= len(all_but_text):
    [all...]

Completed in 1628 milliseconds

1 2 3