| /httpd/modules/arch/win32/ |
| H A D | mod_win32.c | 83 else if (!strcasecmp(arg, "registry-strict")) { 91 "\" must be \"registry\", \"registry-strict\" or " 143 int strict) 184 * and if the strict arg is false, then continue trying: 206 if (!strict && name_key && (rv != APR_SUCCESS)) { 214 if (!strict && (rv != APR_SUCCESS)) { 417 int strict = (d->script_interpreter_source local 420 strict); 426 strict ? "No ExecCGI verb found for files of type '%s'." 141 get_interpreter_from_win32_registry(apr_pool_t *p, const char* ext, int strict) argument
|
| /httpd/server/ |
| H A D | protocol.c | 568 int strict = conf->http_conformance & AP_HTTP_CONFORMANCE_STRICT; local 673 if (strict) { 694 if (strict) { 931 "[HTTP strict] Request header field name contains "
|
| H A D | vhost.c | 749 * If strict mode ever becomes the default, this should be folded into 794 "[strict] Invalid host name '%s'%s%.6s", 805 * important so strict sanity checking isn't necessary. However, in 809 * We don't do strict RFC 952 / RFC 1123 syntax checking in order 823 int strict = http_conformance & AP_HTTP_CONFORMANCE_STRICT; local 839 if (strict) { 842 "[strict] purely numeric host names not allowed: %s", 882 if (strict && rv == APR_SUCCESS)
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/ |
| H A D | XMLEntityManager.java | 107 * 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/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/ |
| H A D | AbstractDateTimeDV.java | 103 * @param strict 106 protected short compareDates(DateTimeData date1, DateTimeData date2, boolean strict) { argument
|
| H A D | DurationDV.java | 198 * @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...] |
| /openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/ |
| H A D | Parser.java | 68 * 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/src/share/classes/java/net/ |
| H A D | URI.java | 3255 // 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/jdk/src/share/classes/java/security/ |
| H A D | CodeSource.java | 314 * @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/jdk/src/share/classes/javax/management/remote/rmi/ |
| H A D | RMIConnectorServer.java | 694 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 D | Histogram.java | 592 boolean isSorted(int[] values, int from, boolean strict) { argument 594 if (strict ? !(values[i-1] < values[i])
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ |
| H A D | GWildcardElement.java | 43 private boolean strict = true; field in class:GWildcardElement 57 strict = false; 62 return strict;
|
| /openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/ |
| H A D | RenderClipTest.java | 28 * @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/langtools/src/share/classes/com/sun/tools/javac/code/ |
| H A D | Types.java | 2011 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...] |
| /openjdk7/langtools/test/tools/javac/FloatingPointChanges/ |
| H A D | Test.java | 37 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/sun/security/tools/ |
| H A D | JarSigner.java | 71 * 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/langtools/test/tools/javac/generics/rawOverride/7062745/ |
| H A D | GenericOverrideTest.java | 96 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
|