/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/manual/ |
D | cmake-language.7.rst | 136 Nested unquoted parentheses in the arguments must balance. 138 a literal `Unquoted Argument`_. This may be used in calls 150 CMake versions prior to 2.8.12 silently accept an `Unquoted Argument`_ 225 `Unquoted Argument`_. 291 .. _`Unquoted Argument`: 293 Unquoted Argument 296 An *unquoted argument* is not enclosed by any quoting syntax. 314 Unquoted argument content consists of all text in a contiguous block 319 unquoted argument may be given to a command invocation as zero or 336 To support legacy CMake code, unquoted arguments may also contain [all …]
|
/aosp_15_r20/external/regex-re2/re2/ |
H A 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()
|
/aosp_15_r20/external/regex-re2/util/ |
H A 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()
|
/aosp_15_r20/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()
|
/aosp_15_r20/external/cronet/third_party/re2/src/util/ |
H A D | pcre.cc | 409 std::string PCRE::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 411 result.reserve(unquoted.size() << 1); in QuoteMeta() 420 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 423 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 424 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 425 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 426 unquoted[ii] != '_' && in QuoteMeta() 430 !(unquoted[ii] & 128)) { in QuoteMeta() 431 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 438 result += unquoted[ii]; in QuoteMeta()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/html/template/ |
D | html.go | 14 // htmlNospaceEscaper escapes for inclusion in unquoted attribute values. 56 // https://www.w3.org/TR/html5/syntax.html#attribute-value-(unquoted)-state 83 // inside an unquoted attribute value. 114 // A parse error in the attribute value (unquoted) and 136 // A parse error in the attribute value (unquoted) and 163 // IE does not allow these ranges in unquoted attrs.
|
/aosp_15_r20/external/cronet/third_party/re2/src/re2/ |
H A D | re2.cc | 549 std::string RE2::QuoteMeta(absl::string_view unquoted) { in QuoteMeta() argument 551 result.reserve(unquoted.size() << 1); in QuoteMeta() 560 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 563 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 564 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 565 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 566 unquoted[ii] != '_' && in QuoteMeta() 570 !(unquoted[ii] & 128)) { in QuoteMeta() 571 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 581 result += unquoted[ii]; in QuoteMeta()
|
/aosp_15_r20/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()
|
/aosp_15_r20/external/jackson-core/src/main/java/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.4/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.2.0/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.6/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.5/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.3/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.8/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.7/com/fasterxml/jackson/core/ |
H A 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
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.9/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 160 <div class="block">Method that will append unquoted characters of this String into given 168 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 187 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 193 <div class="block">Returns length of the (unquoted) String as characters.</div> 199 <div class="block">Returns unquoted String that this object represents (and offers 241 <div class="block">Returns unquoted String that this object represents (and offers 252 <div class="block">Returns length of the (unquoted) String as characters. 277 <div class="block">Returns UTF-8 encoded version of unquoted String. 349 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 370 <div class="block">Method that will append unquoted characters of this String into given
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.11.rc1/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 160 <div class="block">Method that will append unquoted characters of this String into given 168 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 187 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 193 <div class="block">Returns length of the (unquoted) String as characters.</div> 199 <div class="block">Returns unquoted String that this object represents (and offers 241 <div class="block">Returns unquoted String that this object represents (and offers 252 <div class="block">Returns length of the (unquoted) String as characters. 277 <div class="block">Returns UTF-8 encoded version of unquoted String. 349 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 370 <div class="block">Method that will append unquoted characters of this String into given
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.11/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 160 <div class="block">Method that will append unquoted characters of this String into given 168 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 187 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 193 <div class="block">Returns length of the (unquoted) String as characters.</div> 199 <div class="block">Returns unquoted String that this object represents (and offers 241 <div class="block">Returns unquoted String that this object represents (and offers 252 <div class="block">Returns length of the (unquoted) String as characters. 277 <div class="block">Returns UTF-8 encoded version of unquoted String. 349 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 370 <div class="block">Method that will append unquoted characters of this String into given
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.10/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 160 <div class="block">Method that will append unquoted characters of this String into given 168 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 187 <div class="block">Returns UTF-8 encoded version of unquoted String.</div> 193 <div class="block">Returns length of the (unquoted) String as characters.</div> 199 <div class="block">Returns unquoted String that this object represents (and offers 241 <div class="block">Returns unquoted String that this object represents (and offers 252 <div class="block">Returns length of the (unquoted) String as characters. 277 <div class="block">Returns UTF-8 encoded version of unquoted String. 349 <div class="block">Method that will append unquoted ('raw') UTF-8 bytes of this String into given 370 <div class="block">Method that will append unquoted characters of this String into given
|
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/message2/ |
H A D | icu-parser-tests.json | 27 "Hello world {$exp :function unquoted=left } and more", 31 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something|}", 32 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something longer|}", 33 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something \\| longer|}"
|
/aosp_15_r20/external/icu/icu4j/main/core/src/test/resources/com/ibm/icu/dev/test/message2/ |
H A D | icu-parser-tests.json | 27 "Hello world {$exp :function unquoted=left } and more", 31 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something|}", 32 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something longer|}", 33 "Hello world {$exp :function number=1234 unquoted=left quoted=|Something \\| longer|}"
|
/aosp_15_r20/external/icing/icing/tokenization/ |
H A D | rfc822-tokenizer.cc | 190 // We start at unquoted and run until a ",;\n<( . in GetNextRfc822Token() 258 // brackets, we won't allow for unquoted spaces. For example, the input 259 // "[email protected] [email protected]" has an unquoted space, so we will split 298 // If the next character is the end OR we hit an unquoted space. in ConvertNameToEmail() 421 // Returns name tokens in an unquoted section. This is useful in case we do 422 // not find an address and have to use the name. An unquoted section may look 424 // address, the unquoted section will be used as the email address along with 748 // Unquoted will handle the closing bracket > if these is one. in ConsumeAddress()
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.0/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 162 Method that will append unquoted charac… 172 Method that will append unquoted ('raw'… 197 …sp; Returns UTF-8 encoded version of unquoted String.</TD> 205 Returns length of the (unquoted) String… 213 Returns unquoted String that this objec… 267 <DD>Returns unquoted String that this object represents (and offers 281 <DD>Returns length of the (unquoted) String as characters. 312 <DD>Returns UTF-8 encoded version of unquoted String. 394 <DD>Method that will append unquoted ('raw') UTF-8 bytes of this String into given 417 <DD>Method that will append unquoted characters of this String into given
|
/aosp_15_r20/external/jackson-core/docs/javadoc/2.1/com/fasterxml/jackson/core/ |
H A D | SerializableString.html | 162 Method that will append unquoted charac… 172 Method that will append unquoted ('raw'… 197 …sp; Returns UTF-8 encoded version of unquoted String.</TD> 205 Returns length of the (unquoted) String… 213 Returns unquoted String that this objec… 267 <DD>Returns unquoted String that this object represents (and offers 281 <DD>Returns length of the (unquoted) String as characters. 312 <DD>Returns UTF-8 encoded version of unquoted String. 390 <DD>Method that will append unquoted ('raw') UTF-8 bytes of this String into given 411 <DD>Method that will append unquoted characters of this String into given
|