| /external/jackson-core/src/main/java/com/fasterxml/jackson/core/ |
| D | SerializableString.java | 27 * Returns unquoted String that this object represents (and offers 33 * Returns length of the (unquoted) String as characters. 54 * Returns UTF-8 encoded version of unquoted String. 105 * Method that will append unquoted ('raw') UTF-8 bytes of this String into given 119 * Method that will append unquoted characters of this String into given
|
| /external/cldr/common/testData/messageFormat/tests/ |
| D | syntax.json | 443 "description": "... unquoted-literal -> number-literal -> %x30", 448 "description": "... unquoted-literal -> number-literal -> \"-\" %x30", 453 "description": "... unquoted-literal -> number-literal -> (%x31-39 *DIGIT) -> %x31", 458 … "description": "... unquoted-literal -> number-literal -> (%x31-39 *DIGIT) -> %x31 DIGIT -> 11", 463 "description": "... unquoted-literal -> number-literal -> %x30 \".\" 1*DIGIT -> 0 \".\" 1", 468 …"description": "... unquoted-literal -> number-literal -> %x30 \".\" 1*DIGIT -> %x30 \".\" DIGIT D… 473 …"description": "... unquoted-literal -> number-literal -> %x30 %i\"e\" 1*DIGIT -> %x30 \"e\" DIGIT… 478 …"description": "... unquoted-literal -> number-literal -> %x30 %i\"e\" 1*DIGIT -> %x30 \"E\" DIGIT… 483 "description": "... unquoted-literal -> number-literal -> %x30 %i\"e\" \"-\" 1*DIGIT ...", 488 "description": "... unquoted-literal -> number-literal -> %x30 %i\"e\" \"+\" 1*DIGIT ...",
|
| /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
| D | HtmlEscapeFunction.java | 50 // In unquoted HTML attributes, strip out control characters also, as they could 64 * unquoted HTML attribute. 66 * If the string is unquoted, we strip out all characters 0 - 0x1f and 0x7f for security reasons.
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/rtsp/src/main/java/com/google/android/exoplayer2/source/rtsp/ |
| D | RtspAuthenticationInfo.java | 116 // response-digest = H( H(A1) ":" unquoted nonce-value ":" H(A2) ) in getDigestAuthorizationHeaderValue() 117 // A1 = unquoted username-value ":" unquoted realm-value ":" password in getDigestAuthorizationHeaderValue()
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/rtsp/src/main/java/com/google/android/exoplayer2/source/rtsp/ |
| D | RtspAuthenticationInfo.java | 122 // response-digest = H( H(A1) ":" unquoted nonce-value ":" H(A2) ) in getDigestAuthorizationHeaderValue() 123 // A1 = unquoted username-value ":" unquoted realm-value ":" password in getDigestAuthorizationHeaderValue()
|
| /external/rust/android-crates-io/crates/toml_edit/src/parser/ |
| D | key.rs | 69 // simple-key = quoted-key / unquoted-key 89 // unquoted-key = 1*( ALPHA / DIGIT / %x2D / %x5F ) ; A-Z / a-z / 0-9 / - / _ 92 "unquoted-key", in unquoted_key()
|
| /external/regex-re2/util/ |
| D | pcre.cc | 467 string PCRE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 469 result.reserve(unquoted.size() << 1); in QuoteMeta() 478 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 481 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 482 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 483 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 484 unquoted[ii] != '_' && in QuoteMeta() 488 !(unquoted[ii] & 128)) { in QuoteMeta() 489 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 496 result += unquoted[ii]; in QuoteMeta()
|
| /external/cronet/tot/third_party/re2/src/util/ |
| D | pcre.cc | 410 std::string PCRE::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 412 result.reserve(unquoted.size() << 1); in QuoteMeta() 421 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 424 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 425 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 426 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 427 unquoted[ii] != '_' && in QuoteMeta() 431 !(unquoted[ii] & 128)) { in QuoteMeta() 432 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 439 result += unquoted[ii]; in QuoteMeta()
|
| /external/cronet/stable/third_party/re2/src/util/ |
| D | pcre.cc | 410 std::string PCRE::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 412 result.reserve(unquoted.size() << 1); in QuoteMeta() 421 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 424 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 425 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 426 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 427 unquoted[ii] != '_' && in QuoteMeta() 431 !(unquoted[ii] & 128)) { in QuoteMeta() 432 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 439 result += unquoted[ii]; in QuoteMeta()
|
| /external/regex-re2/re2/ |
| D | re2.cc | 473 string RE2::QuoteMeta(const StringPiece& unquoted) { in GlobalReplace() argument 475 result.reserve(unquoted.size() << 1); in GlobalReplace() 484 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in GlobalReplace() 487 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in GlobalReplace() 488 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in GlobalReplace() 489 (unquoted[ii] < '0' || unquoted[ii] > '9') && in GlobalReplace() 490 unquoted[ii] != '_' && in GlobalReplace() 494 !(unquoted[ii] & 128)) { in GlobalReplace() 495 if (unquoted[ii] == '\0') { // Special handling for null chars. in GlobalReplace() 505 result += unquoted[ii]; in GlobalReplace()
|
| /external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/util/ |
| D | pcre.cc | 466 std::string PCRE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 468 result.reserve(unquoted.size() << 1); in QuoteMeta() 477 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 480 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 481 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 482 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 483 unquoted[ii] != '_' && in QuoteMeta() 487 !(unquoted[ii] & 128)) { in QuoteMeta() 488 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 495 result += unquoted[ii]; in QuoteMeta()
|
| /external/deqp-deps/SPIRV-Tools/test/ |
| D | text_literal_test.cpp | 141 std::string unquoted(SPV_LIMIT_LITERAL_STRING_BYTES_MAX, 'a'); in TEST() local 142 std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 145 EXPECT_EQ(unquoted.data(), l.str); in TEST() 149 const std::string unquoted = in TEST() local 151 const std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 155 EXPECT_EQ(unquoted.data(), l.str); in TEST()
|
| /external/swiftshader/third_party/SPIRV-Tools/test/ |
| D | text_literal_test.cpp | 141 std::string unquoted(SPV_LIMIT_LITERAL_STRING_BYTES_MAX, 'a'); in TEST() local 142 std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 145 EXPECT_EQ(unquoted.data(), l.str); in TEST() 149 const std::string unquoted = in TEST() local 151 const std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 155 EXPECT_EQ(unquoted.data(), l.str); in TEST()
|
| /external/angle/third_party/spirv-tools/src/test/ |
| D | text_literal_test.cpp | 141 std::string unquoted(SPV_LIMIT_LITERAL_STRING_BYTES_MAX, 'a'); in TEST() local 142 std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 145 EXPECT_EQ(unquoted.data(), l.str); in TEST() 149 const std::string unquoted = in TEST() local 151 const std::string good_long = std::string("\"") + unquoted + "\""; in TEST() 155 EXPECT_EQ(unquoted.data(), l.str); in TEST()
|
| /external/jackson-core/docs/javadoc/1.9/org/codehaus/jackson/ |
| D | SerializableString.html | 137 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 143 <div class="block">Returns length of the (unquoted) String as characters.</div> 149 <div class="block">Returns unquoted String that this object represents (and offers 175 <div class="block">Returns unquoted String that this object represents (and offers 186 <div class="block">Returns length of the (unquoted) String as characters. 211 <div class="block">Returns UTF-8 encoded version of unquoted String.
|
| /external/jackson-core/docs/javadoc/2.3/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.4/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.6/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.5/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.2.0/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 141 <div class="block">Method that will append unquoted characters of this String into given 149 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 168 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 174 <div class="block">Returns length of the (unquoted) String as characters.</div> 180 <div class="block">Returns unquoted String that this object represents (and offers 222 <div class="block">Returns unquoted String that this object represents (and offers 233 <div class="block">Returns length of the (unquoted) String as characters. 258 <div class="block">Returns UTF-8 encoded version of unquoted String. 324 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 342 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.7/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/jackson-core/docs/javadoc/2.8/com/fasterxml/jackson/core/ |
| D | SerializableString.html | 144 <div class="block">Method that will append unquoted characters of this String into given 152 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 171 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 177 <div class="block">Returns length of the (unquoted) String as characters.</div> 183 <div class="block">Returns unquoted String that this object represents (and offers 225 <div class="block">Returns unquoted String that this object represents (and offers 236 <div class="block">Returns length of the (unquoted) String as characters. 261 <div class="block">Returns UTF-8 encoded version of unquoted String. 327 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 345 <div class="block">Method that will append unquoted characters of this String into given
|
| /external/cronet/tot/third_party/re2/src/re2/ |
| D | re2.cc | 554 std::string RE2::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 556 result.reserve(unquoted.size() << 1); in QuoteMeta() 565 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 568 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 569 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 570 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 571 unquoted[ii] != '_' && in QuoteMeta() 575 !(unquoted[ii] & 128)) { in QuoteMeta() 576 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 586 result += unquoted[ii]; in QuoteMeta()
|
| /external/cronet/stable/third_party/re2/src/re2/ |
| D | re2.cc | 554 std::string RE2::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 556 result.reserve(unquoted.size() << 1); in QuoteMeta() 565 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 568 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 569 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 570 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 571 unquoted[ii] != '_' && in QuoteMeta() 575 !(unquoted[ii] & 128)) { in QuoteMeta() 576 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 586 result += unquoted[ii]; in QuoteMeta()
|
| /external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/re2/ |
| D | re2.cc | 517 std::string RE2::QuoteMeta(const StringPiece& unquoted) { in GlobalReplace() argument 519 result.reserve(unquoted.size() << 1); in GlobalReplace() 528 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in GlobalReplace() 531 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in GlobalReplace() 532 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in GlobalReplace() 533 (unquoted[ii] < '0' || unquoted[ii] > '9') && in GlobalReplace() 534 unquoted[ii] != '_' && in GlobalReplace() 538 !(unquoted[ii] & 128)) { in GlobalReplace() 539 if (unquoted[ii] == '\0') { // Special handling for null chars. in GlobalReplace() 549 result += unquoted[ii]; in GlobalReplace()
|