Searched defs:strict (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DGWildcardElement.java43 private boolean strict = true; field in class:GWildcardElement
57 strict = false;
62 return strict;
/openjdk7/langtools/test/tools/javac/FloatingPointChanges/
H A DTest.java37 strictfp void strict() {} method in class:Test
38 strictfp class Inner2 { void strict() {} } method in class:Test.Inner2
41 assertStrict(Test.class.getDeclaredMethod("strict", new Class[0]));
42 assertStrict(Test.Inner2.class.getDeclaredMethod("strict", new Class[0]));
44 assertStrict(Test2.class.getDeclaredMethod("strict", new Class[0]));
46 assertStrict(Test2.Inner.class.getDeclaredMethod("strict", new Class[0]));
47 assertStrict(Test2.Inner2.class.getDeclaredMethod("strict", new Class[0]));
53 barf(m, "strict");
65 void strict() {} method in class:Test2
67 class Inner { void strict() {} } method in class:Test2.Inner
68 strictfp class Inner2 { void strict() {} } method in class:Test2.Inner2
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSource.java314 * @param strict If true then a strict equality match is performed.
317 private boolean matchCerts(CodeSource that, boolean strict) argument
323 if (strict) {
330 if (strict && signers.length != that.signers.length) {
347 if (strict && certs.length != that.certs.length) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDurationDV.java198 * @param strict (min/max)Exclusive strict == true ( LESS_THAN ) or ( GREATER_THAN )
199 * (min/max)Inclusive strict == false (LESS_EQUAL) or (GREATER_EQUAL)
202 * If the strict parameter is true, return LESS_THAN if date1 is less than date2 and
204 * If the strict parameter is false, return LESS_THAN if date1 is less than OR equal to date2 and
207 protected short compareDates(DateTimeData date1, DateTimeData date2, boolean strict) { argument
236 resultA = compareResults(resultA, resultB, strict);
244 resultA = compareResults(resultA, resultB, strict);
252 resultA = compareResults(resultA, resultB, strict);
257 private short compareResults(short resultA, short resultB, boolean strict){ argument
[all...]
H A DAbstractDateTimeDV.java103 * @param strict
106 protected short compareDates(DateTimeData date1, DateTimeData date2, boolean strict) { argument
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java694 static boolean isIiopURL(JMXServiceURL directoryURL, boolean strict) argument
701 else if (strict) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java592 boolean isSorted(int[] values, int from, boolean strict) { argument
594 if (strict ? !(values[i-1] < values[i])
/openjdk7/langtools/test/tools/javac/generics/rawOverride/7062745/
H A DGenericOverrideTest.java96 boolean moreSpecificThan(TypeArgumentKind that, boolean strict) { argument
99 return that == this || !strict;
113 //this case needs to workaround to javac's impl of 15.12.2.8 being too strict
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java68 * If <code>strict</code> is false, when a tag that breaks flow,
114 * If strict == false, ignoreSpace is used to try and mimic the behavior
135 * This flag determines whether or not the Parser will be strict
141 protected boolean strict = false; field in class:Parser
325 if (!strict) {
349 if (!strict && !tag.getElement().isEmpty()) {
548 // on the value of the strict property.
576 if (!strict &&
584 if (!strict && !insertTag && (stack.elem.getName() != elem.getName() ||
595 if (!strict
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java28 * @run main RenderClipTest -strict -readfile 6766342.tests
68 static boolean strict; field in class:RenderClipTest
133 "[-strict] [-usage]");
158 System.err.println(" -strict All failures are important");
209 } else if (arg.equals("-strict")) {
210 strict = true;
311 if (strict) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java71 * otherwise: error codes from -strict
148 boolean strict = false; // treat warnings as error field in class:JarSigner
256 if (strict) {
371 } else if (collator.compare(flags, "-strict") ==0) {
372 strict = true;
555 (".strict.treat.warnings.as.errors"));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java107 * standard uri conformant (strict uri).
603 // First chance checking strict URI
1954 boolean strict)
1964 if (strict) {
1953 expandSystemId(String systemId, String baseSystemId, boolean strict) argument
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java3255 // If the strict argument is true then we require that the given
3260 // strict argument) a legal IPv4 address characters then we return -1
3268 private int scanIPv4Address(int start, int n, boolean strict) argument
3274 if ((m <= p) || (strict && (m != n)))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2011 public boolean isSubSignature(Type t, Type s, boolean strict) { argument
2012 return hasSameArgs(t, s, strict) || hasSameArgs(t, erasure(s), strict);
2177 public boolean hasSameArgs(Type t, Type s, boolean strict) { argument
2178 return hasSameArgs(t, s, strict ? hasSameArgs_strict : hasSameArgs_nonstrict);
2187 boolean strict; field in class:Types.HasSameArgs
2189 public HasSameArgs(boolean strict) { argument
2190 this.strict = strict;
2206 return strict
[all...]

Completed in 133 milliseconds