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

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DNonMonotonousSequenceException.java41 private final boolean strict; field in class:NonMonotonousSequenceException
74 * @param strict Whether the sequence must be strictly increasing or
81 boolean strict) {
83 (strict ?
86 (strict ?
92 this.strict = strict;
107 return strict;
77 NonMonotonousSequenceException(Number wrong, Number previous, int index, MathUtils.OrderDirection direction, boolean strict) argument
/external/libchrome/base/
H A Dguid.cc22 bool IsValidGUIDInternal(const base::StringPiece& guid, bool strict) { argument
33 if ((strict && !IsLowerHexDigit(current)) || !IsHexDigit(current))
63 return IsValidGUIDInternal(guid, false /* strict */);
67 return IsValidGUIDInternal(guid, true /* strict */);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DXmlLoader.java17 public void setStrictI18n(boolean strict) { argument
18 this.strictI18n = strict;
/external/libchrome/base/third_party/icu/
H A Dicu_utf.cc114 * The "strict" parameter controls the error behavior:
121 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
136 UBool strict) {
171 if(strict>=0) {
192 if(illegal || (c)<utf8_minLegal[count] || (CBU_IS_SURROGATE(c) && strict!=-2)) {
201 if(strict>=0) {
206 } else if((strict)>0 && CBU_IS_UNICODE_NONCHAR(c)) {
207 /* strict: forbid non-characters like U+fffe */
217 if(strict>=0) {
132 utf8_nextCharSafeBody(const uint8_t* s, int32_t* pi, int32_t length, UChar32 c, UBool strict) argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBestMatchSpec.java61 private RFC2965Spec strict; field in class:BestMatchSpec
76 if (this.strict == null) {
77 this.strict = new RFC2965Spec(this.datepatterns, this.oneHeader);
79 return strict;
/external/icu/icu4c/source/common/
H A Dutf_impl.c92 errorValue(int32_t count, int8_t strict) { argument
93 if(strict>=0) {
95 } else if(strict==-3) {
108 * The "strict" parameter controls the error behavior:
120 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
127 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict) { argument
156 if(((c&0xffe0)==0x360 && strict!=-2) || trail>0x3f) { break; }
163 /* strict: forbid non-characters like U+fffe */
164 (strict<=0 || !U_IS_UNICODE_NONCHAR(c))) {
181 c=errorValue(i-*pi, strict);
232 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict) argument
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-nice-strict_test.cc32 #include "gmock/gmock-generated-nice-strict.h"
209 // Tests that a strict mock allows expected calls.
217 // Tests that an unexpected call on a strict mock fails.
226 // Tests that an uninteresting call on a strict mock fails.
234 // Tests that an uninteresting call on a strict mock fails, even if
277 StrictMock< ::Mock> strict; local
278 EXPECT_CALL(strict, DoThis());
279 strict.DoThis();
/external/googletest/googlemock/test/
H A Dgmock-nice-strict_test.cc32 #include "gmock/gmock-generated-nice-strict.h"
349 // Tests that a strict mock allows expected calls.
357 // Tests that an unexpected call on a strict mock fails.
366 // Tests that an uninteresting call on a strict mock fails.
374 // Tests that an uninteresting call on a strict mock fails, even if
417 StrictMock< ::Mock> strict; local
418 EXPECT_CALL(strict, DoThis());
419 strict.DoThis();
/external/v8/testing/gmock/test/
H A Dgmock-nice-strict_test.cc32 #include "gmock/gmock-generated-nice-strict.h"
349 // Tests that a strict mock allows expected calls.
357 // Tests that an unexpected call on a strict mock fails.
366 // Tests that an uninteresting call on a strict mock fails.
374 // Tests that an uninteresting call on a strict mock fails, even if
417 StrictMock< ::Mock> strict; local
418 EXPECT_CALL(strict, DoThis());
419 strict.DoThis();
/external/jline/src/src/main/java/jline/
H A DArgumentCompletor.java58 boolean strict = true; field in class:ArgumentCompletor
123 public void setStrict(final boolean strict) { argument
124 this.strict = strict;
132 return this.strict;
155 // allowing this completor to pass (only if strict is true).
/external/libnetfilter_conntrack/src/conntrack/
H A Dcompare.c19 unsigned int flags), bool strict)
29 return strict ? 0 : cmp(ct1, ct2, flags);
31 return strict ? 0 : cmp(ct1, ct2, flags);
13 __cmp(int attr, const struct nf_conntrack *ct1, const struct nf_conntrack *ct2, unsigned int flags, int (*cmp)(const struct nf_conntrack *ct1, const struct nf_conntrack *ct2, unsigned int flags), bool strict) argument
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryImpl.java57 private boolean strict = true; field in class:MessageFactoryImpl
73 public void setStrict(boolean strict) { argument
74 this.strict = strict;
700 smp.setStrict(this.strict);
H A DSIPMessage.java1288 public void setMessageContent(String content, boolean strict, boolean computeContentLength, int givenLength) argument
1294 if ( (!strict && this.contentLengthHeader.getContentLength() != givenLength)
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DStringMsgParser.java78 private boolean strict; field in class:StringMsgParser
328 message.setMessageContent(body,this.strict,computeContentLengthFromMessage,message.getContentLength().getContentLength());
330 if ( strict ) {
704 public void setStrict(boolean strict) { argument
705 this.strict = strict;
/external/boringssl/src/tool/
H A Ddigest.cc212 bool strict = false; member in struct:CheckModeArguments
219 // It returns true if all files were verified and, if |args.strict|, no input
287 if (args.strict) {
415 } else if (arg == "--strict") {
417 check_args.strict = true;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricConfig.java249 public void setStrictI18n(boolean strict) { argument
250 strictI18n = strict;
/external/v8/src/inspector/
H A Dstring-16.cc85 char* targetEnd, bool strict) {
106 } else if (strict) { // it's an unpaired high surrogate
116 } else if (strict) {
289 bool strict) {
300 // Do this check whether lenient or strict
318 if (strict) {
340 if (strict) {
522 // Only produced from strict conversion.
529 // the middle of a string with non-strict conversion - which is
83 convertUTF16ToUTF8(const UChar** sourceStart, const UChar* sourceEnd, char** targetStart, char* targetEnd, bool strict) argument
286 convertUTF8ToUTF16(const char** sourceStart, const char* sourceEnd, UChar** targetStart, UChar* targetEnd, bool* sourceAllASCII, bool strict) argument
/external/vboot_reference/futility/
H A Dcmd_show.c41 int strict; member in struct:local_data_s
206 * be strict about this. */
243 if (option.strict && (!sign_key || !good_sig))
325 if (option.strict && (!sign_key || !good_sig))
382 if (option.strict)
403 if (option.strict)
438 if (option.strict && (!sign_key || !good_sig))
569 " --strict "
581 {"verify", 0, &option.strict, 1},
739 option.strict
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMathUtils.java2075 * @param strict Whether the order should be strict.
2079 public static void checkOrder(double[] val, OrderDirection dir, boolean strict) { argument
2087 if (strict) {
2098 if (strict) {
2114 throw new NonMonotonousSequenceException(val[i], previous, i, dir, strict);
2136 * @param strict Whether the order should be strict
2142 public static void checkOrder(double[] val, int dir, boolean strict) { argument
2144 checkOrder(val, OrderDirection.INCREASING, strict);
[all...]
/external/v8/src/ic/
H A Dic.h496 bool strict() const { return op_ == Token::EQ_STRICT; } function in class:v8::internal::CompareIC
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers.c486 dbus_bool_t strict = FALSE; local
490 DBUS_TYPE_BOOLEAN, &strict,
492 strict = FALSE;
523 if (!strict) {
554 if (!strict) {
592 if (!strict) {
631 if (!strict) {
661 if (!strict) {
/external/boringssl/src/ssl/
H A Dssl_cipher.c1085 CIPHER_ORDER **tail_p, int strict) {
1221 if (strict) {
1272 const char *rule_str, int strict) {
1353 &tail, strict)) {
1363 !ssl_cipher_process_rulestr(ssl_method, rule_p, &head, &tail, strict)) {
1082 ssl_cipher_process_rulestr(const SSL_PROTOCOL_METHOD *ssl_method, const char *rule_str, CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p, int strict) argument
1269 ssl_create_cipher_list( const SSL_PROTOCOL_METHOD *ssl_method, struct ssl_cipher_preference_list_st **out_cipher_list, const char *rule_str, int strict) argument
/external/clang/include/clang/Sema/
H A DAttributeList.h259 Syntax syntaxUsed, SourceLocation strict,
270 introduced, deprecated, obsoleted, strict, replacementExpr);
652 SourceLocation strict, const Expr *ReplacementExpr) {
658 syntax, strict, ReplacementExpr));
788 SourceLocation strict, const Expr *ReplacementExpr) {
792 strict, ReplacementExpr);
252 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierLoc *Parm, const AvailabilityChange &introduced, const AvailabilityChange &deprecated, const AvailabilityChange &obsoleted, SourceLocation unavailable, const Expr *messageExpr, Syntax syntaxUsed, SourceLocation strict, const Expr *replacementExpr) argument
/external/libpng/contrib/libtests/
H A Dpngunknown.c447 display_rc(const display *d, int strict) argument
449 return d->error_count + (strict ? d->warning_count : 0);
1100 fprintf(stderr, "pngunknown: %s: usage:\n %s [--strict] "
1111 int strict = 0, default_tests = 0; local
1120 if (strcmp(*argv, "--strict") == 0)
1121 strict = 1;
1207 int count = display_rc(&d, strict), new_count;
1216 new_count = display_rc(&d, strict);
1232 if (display_rc(&d, strict) == 0)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpUrl.java229 * The {@code java.net.URI} class is strict around what URLs it accepts. It rejects URLs like
334 * Returns this URL as a {@link URI java.net.URI}. Because {@code URI} is more strict than this
889 * particularly strict for certain components.
1573 * @param strict true to encode '%' if it is not the prefix of a valid percent encoding.
1578 boolean alreadyEncoded, boolean strict, boolean plusIsSpace, boolean asciiOnly) {
1586 || codePoint == '%' && (!alreadyEncoded || strict && !percentEncoded(input, i, limit))
1591 canonicalize(out, input, i, limit, encodeSet, alreadyEncoded, strict, plusIsSpace,
1602 boolean alreadyEncoded, boolean strict, boolean plusIsSpace, boolean asciiOnly) {
1617 || codePoint == '%' && (!alreadyEncoded || strict && !percentEncoded(input, i, limit))) {
1637 boolean strict, boolea
1577 canonicalize(String input, int pos, int limit, String encodeSet, boolean alreadyEncoded, boolean strict, boolean plusIsSpace, boolean asciiOnly) argument
1601 canonicalize(Buffer out, String input, int pos, int limit, String encodeSet, boolean alreadyEncoded, boolean strict, boolean plusIsSpace, boolean asciiOnly) argument
1636 canonicalize(String input, String encodeSet, boolean alreadyEncoded, boolean strict, boolean plusIsSpace, boolean asciiOnly) argument
[all...]

Completed in 579 milliseconds

123