Searched refs:strict (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Email/src/com/beetstra/jutf7/
H A DUTF7StyleCharset.java44 final boolean strict; field in class:UTF7StyleCharset
52 * decoders should be strict about the interpretation of malformed encoded
61 * @param strict True if strict handling of sequences is requested
64 boolean strict) {
67 this.strict = strict;
83 return new UTF7StyleCharsetDecoder(this, base64, strict);
91 return new UTF7StyleCharsetEncoder(this, base64, strict);
63 UTF7StyleCharset(String canonicalName, String[] aliases, String alphabet, boolean strict) argument
H A DUTF7StyleCharsetDecoder.java44 private final boolean strict; field in class:UTF7StyleCharsetDecoder
51 UTF7StyleCharsetDecoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) { argument
54 this.strict = strict;
89 if (justUnshifted && strict)
118 * in strict mode, null otherwise
134 if (strict)
149 if ((base64mode && strict) || base64bitsWaiting())
H A DUTF7StyleCharsetEncoder.java56 private final boolean strict; field in class:UTF7StyleCharsetEncoder
68 UTF7StyleCharsetEncoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) { argument
72 this.strict = strict;
185 if (base64.contains(ch) || ch == unshift || strict)
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java60 MockSharedPreferences(boolean strict) { argument
63 this.mStrict = strict;
586 MockSharedPreferences prefs = new MockSharedPreferences(true /* strict mode */);

Completed in 92 milliseconds