Searched defs:strict (Results 1 - 25 of 81) sorted by path

1234

/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/chromium_org/base/third_party/icu/
H A Dicu_utf.cc118 * The "strict" parameter controls the error behavior:
125 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
137 utf8_nextCharSafeBody(const uint8 *s, int32 *pi, int32 length, UChar32 c, UBool strict) { argument
172 if(strict>=0) {
193 if(illegal || (c)<utf8_minLegal[count] || (CBU_IS_SURROGATE(c) && strict!=-2)) {
202 if(strict>=0) {
207 } else if((strict)>0 && CBU_IS_UNICODE_NONCHAR(c)) {
208 /* strict: forbid non-characters like U+fffe */
218 if(strict>=0) {
/external/chromium_org/chromeos/network/onc/
H A Donc_validator_unittest.cc25 // to be managed if |managed_onc| is true. A strict validator is used if
26 // |strict| is true. |onc_object| and the resulting repaired object of the
29 void Validate(bool strict, argument
35 if (strict) {
36 // Create a strict validator that complains about every error.
110 // the strict and the liberal validator accept the object.
224 // (either strict or liberal) returns this repaired object and the result is
276 // dictionary is the expected result from strict
/external/chromium_org/net/disk_cache/blockfile/
H A Drankings.cc320 void Rankings::Remove(CacheRankingsBlock* node, List list, bool strict) { argument
324 if (strict)
/external/chromium_org/remoting/codec/
H A Dcodec_test.cc100 void set_strict(bool strict) { argument
101 strict_ = strict;
262 void TestVideoEncoder(VideoEncoder* encoder, bool strict) { argument
315 VideoEncoder* encoder, VideoDecoder* decoder, bool strict) {
323 decoder_tester.set_strict(strict);
314 TestVideoEncoderDecoder( VideoEncoder* encoder, VideoDecoder* decoder, bool strict) argument
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParser-in.cpp524 case CSSPropertyWebkitLineBreak: // auto | loose | normal | strict | after-white-space
950 bool BisonCSSParser::parseColor(RGBA32& color, const String& string, bool strict) argument
953 if (CSSPropertyParser::fastParseColor(color, string, strict))
H A DCSSParser.cpp79 bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict) argument
81 return BisonCSSParser::parseColor(color, string, strict);
H A DCSSPropertyParser.cpp1849 // Always parse lengths in strict mode here, since it would be ambiguous otherwise when used in
5062 static inline bool fastParseColorInternal(RGBA32& rgb, const CharacterType* characters, unsigned length , bool strict) argument
5069 if (!strict && length >= 3) {
5120 bool CSSPropertyParser::fastParseColor(RGBA32& rgb, const StringType& name, bool strict) argument
5129 parseResult = fastParseColorInternal(rgb, name.characters8(), length, strict);
5131 parseResult = fastParseColorInternal(rgb, name.characters16(), length, strict);
5144 template bool CSSPropertyParser::fastParseColor(RGBA32&, const String&, bool strict);
5268 // FIXME: This should be strict parsing for SVG as well.
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.cpp830 // Use strict conversion to detect unpaired surrogates.
844 bool strict = mode == StrictUTF8Conversion; local
845 ConversionResult result = convertUTF16ToUTF8(&characters, characters + length, &buffer, buffer + bufferVector.size(), strict);
848 // Only produced from strict conversion.
850 ASSERT(strict);
856 if (strict)
860 // the middle of a string with non-strict conversion - which is
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp172 char** targetStart, char* targetEnd, bool strict)
193 } else if (strict) { // it's an unpaired high surrogate
203 } else if (strict) {
299 UChar** targetStart, UChar* targetEnd, bool* sourceAllASCII, bool strict)
311 // Do this check whether lenient or strict
328 if (strict) {
351 if (strict) {
170 convertUTF16ToUTF8( const UChar** sourceStart, const UChar* sourceEnd, char** targetStart, char* targetEnd, bool strict) argument
297 convertUTF8ToUTF16( const char** sourceStart, const char* sourceEnd, UChar** targetStart, UChar* targetEnd, bool* sourceAllASCII, bool strict) argument
/external/chromium_org/third_party/bintrees/bintrees/
H A Dqavltree.c110 #define PyUnicode_FromString(s) PyUnicode_Decode(s, strlen(s), "UTF-8", "strict")
598 static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict); /*proto*/
3051 size_t size, int strict)
3076 if (!strict && (size_t)((PyTypeObject *)result)->tp_basicsize > size) {
3050 __Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict) argument
H A Dqbintree.c110 #define PyUnicode_FromString(s) PyUnicode_Decode(s, strlen(s), "UTF-8", "strict")
598 static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict); /*proto*/
3046 size_t size, int strict)
3071 if (!strict && (size_t)((PyTypeObject *)result)->tp_basicsize > size) {
3045 __Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict) argument
H A Dqrbtree.c110 #define PyUnicode_FromString(s) PyUnicode_Decode(s, strlen(s), "UTF-8", "strict")
598 static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict); /*proto*/
3048 size_t size, int strict)
3073 if (!strict && (size_t)((PyTypeObject *)result)->tp_basicsize > size) {
3047 __Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict) argument
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DImportExport.c235 static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict); /*proto*/
244 size_t size, int strict)
286 if (!strict && (size_t)basicsize > size) {
243 __Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict) argument
/external/chromium_org/third_party/icu/source/common/
H A Duloc_tag.c994 _appendLanguageToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) { argument
1006 if (strict) {
1022 if (strict) {
1049 _appendScriptToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) { argument
1061 if (strict) {
1070 if (strict) {
1091 _appendRegionToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) { argument
1103 if (strict) {
1112 if (strict) {
1133 _appendVariantsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBoo argument
1257 _appendKeywordsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) argument
1942 _appendPrivateuseToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) argument
2613 uloc_toLanguageTag(const char* localeID, char* langtag, int32_t langtagCapacity, UBool strict, UErrorCode* status) argument
[all...]
H A Dutf_impl.c90 errorValue(int32_t count, int8_t strict) { argument
91 if(strict>=0) {
93 } else if(strict==-3) {
106 * The "strict" parameter controls the error behavior:
118 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
125 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict) { argument
154 if(((c&0xffe0)==0x360 && strict!=-2) || trail>0x3f) { break; }
161 /* strict: forbid non-characters like U+fffe */
162 (strict<=0 || !U_IS_UNICODE_NONCHAR(c))) {
179 c=errorValue(i-*pi, strict);
230 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, UBool strict) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtptngen.cpp1811 FormatParser::getCanonicalIndex(const UnicodeString& s, UBool strict) { argument
1841 return strict ? -1 : bestRow;
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
/external/chromium_org/third_party/libxml/src/
H A Dparser.c4365 * @strict: indicate whether we should restrict parsing to only
4379 * case publicID receives PubidLiteral, is strict is off
4384 xmlParseExternalID(xmlParserCtxtPtr ctxt, xmlChar **publicID, int strict) { argument
4412 if (strict) {
H A Dtestapi.c416 if (no == 4) return("test/valid/dtds/xhtml1-strict.dtd");
488 if (no == 4) return(xmlParserInputBufferCreateFilename("test/valid/dtds/xhtml1-strict.dtd", XML_CHAR_ENCODING_NONE));
593 if (no == 2) return(xmlNewTextReaderFilename("test/valid/dtds/xhtml1-strict.dtd"));
46842 int strict; /* is the comparison strict */ local
[all...]
H A Dxpath.c6335 * @strict: is the comparison strict
6354 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict, argument
6376 ret = xmlXPathCompareValues(ctxt, inf, strict);
6391 * @strict: is the comparison strict
6409 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict, argument
6430 ret = xmlXPathCompareValues(ctxt, inf, strict);
6444 * @strict: is the comparison strict
6470 xmlXPathCompareNodeSets(int inf, int strict, xmlXPathObjectPtr arg1, xmlXPathObjectPtr arg2) argument
6565 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict, xmlXPathObjectPtr arg, xmlXPathObjectPtr val) argument
7205 xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) argument
10782 int inf, strict; local
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A DxsltInternals.h1337 * In order to keep the old behaviour, applying strict rules of
1341 int strict; member in struct:_xsltCompilerCtxt

Completed in 668 milliseconds

1234