/external/pcre/pcrecpp/ |
D | pcrecpp.cc | 268 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 279 for (int ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 282 if (unquoted[ii] == '\0') { in QuoteMeta() 284 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 285 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 286 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 287 unquoted[ii] != '_' && in QuoteMeta() 291 !(unquoted[ii] & 128)) { in QuoteMeta() 293 result += unquoted[ii]; in QuoteMeta() 295 result += unquoted[ii]; in QuoteMeta()
|
D | pcrecpp_unittest.cc | 488 // the original unquoted string. 489 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { in TestQuoteMeta() argument 490 string quoted = RE::QuoteMeta(unquoted); in TestQuoteMeta() 492 CHECK(re.FullMatch(unquoted)); in TestQuoteMeta() 496 // quoted, should not generally match a string the unquoted string does. 497 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, in NegativeTestQuoteMeta() argument 499 string quoted = RE::QuoteMeta(unquoted); in NegativeTestQuoteMeta()
|
/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.
|
D | JsEscapeFunction.java | 57 * unquoted JS attribute (like onClick or onMouseover).
|
/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/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/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | text_parser.go | 69 unquoted string // the unquoted version of value, if it was a quoted string member 167 p.cur.unquoted = "" 192 p.cur.unquoted = unq 347 cat.unquoted += p.cur.unquoted 757 bytes := []byte(tok.unquoted) 840 fv.SetString(tok.unquoted)
|
/external/golang-protobuf/proto/ |
D | text_parser.go | 69 unquoted string // the unquoted version of value, if it was a quoted string member 167 p.cur.unquoted = "" 192 p.cur.unquoted = unq 347 cat.unquoted += p.cur.unquoted 757 bytes := []byte(tok.unquoted) 840 fv.SetString(tok.unquoted)
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestBNF.java | 92 Pick p = Pick.maybe(75,Pick.unquoted("a")); 173 Pick s = Pick.unquoted(" "); 191 Pick forward = Pick.unquoted("forward"); 195 Pick sentence = Pick.and(sentenceBase).and2(Pick.unquoted("."));
|
/external/icu/icu4c/source/i18n/ |
D | number_affixutils.h | 135 * Executes the unescape state machine. Replaces the unquoted characters "-", "+", "%", "‰", and 171 * Checks whether the specified affix pattern has any unquoted currency symbols ("¤"). 174 * @return true if the literal has at least one unquoted currency symbol; false otherwise.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | AffixUtils.java | 141 // Unquoted symbol in estimateLength() 171 // Unquoted symbol in estimateLength() 291 …* Executes the unescape state machine. Replaces the unquoted characters "-", "+", "%", "‰", and "¤" 393 * Checks whether the specified affix pattern has any unquoted currency symbols ("¤"). 397 * @return true if the literal has at least one unquoted currency symbol; false otherwise.
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | AffixUtils.java | 149 // Unquoted symbol in estimateLength() 179 // Unquoted symbol in estimateLength() 299 …* Executes the unescape state machine. Replaces the unquoted characters "-", "+", "%", "‰", and "¤" 401 * Checks whether the specified affix pattern has any unquoted currency symbols ("¤"). 405 * @return true if the literal has at least one unquoted currency symbol; false otherwise.
|
/external/python/cpython2/Doc/library/ |
D | email.message.rst | 378 described in :meth:`get_param` and is unquoted if optional *unquote* is 411 string when the value is a tuple, or the original string unquoted if it 418 ``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set 481 The returned string will always be unquoted as per 490 string will always be unquoted as per :func:`email.utils.unquote`.
|
D | email.util.rst | 19 Return a new string which is an *unquoted* version of *str*. If *str* ends and 139 a tuple, it should be a string and it is returned unquoted.
|
/external/snakeyaml/src/test/resources/specification/ |
D | example2_18.yaml | 2 This unquoted scalar
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-02-18.data | 2 This unquoted scalar
|
/external/llvm/test/YAMLParser/ |
D | spec-02-18.test | 4 This unquoted scalar
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/ |
D | spec-02-18.test | 4 This unquoted scalar
|
/external/python/cpython3/Lib/unittest/ |
D | __main__.py | 7 # use executable without path, unquoted
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
D | NetscapeDraftSpec.java | 114 * character may be present in unquoted cookie value or unquoted
|
/external/python/cpython3/Doc/library/ |
D | email.compat32-message.rst | 479 described in :meth:`get_param` and is unquoted if optional *unquote* is 514 string when the value is a tuple, or the original string unquoted if it 521 ``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set 591 The returned string will always be unquoted as per 600 string will always be unquoted as per :func:`email.utils.unquote`.
|
D | email.utils.rst | 58 Return a new string which is an *unquoted* version of *str*. If *str* ends and 205 a tuple, it should be a string and it is returned unquoted.
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | HtmlUrlValidateFunction.java | 34 * isUnquoted should be true if the URL appears in an unquoted attribute. like: <a href=<?cs
|
/external/desugar/java/com/google/devtools/common/options/ |
D | UnquotedParamsFilePreProcessor.java | 26 * com.google.devtools.build.lib.actions.ParameterFile.ParameterFileType.UNQUOTED} format. This
|
/external/python/cpython2/Lib/email/ |
D | message.py | 524 Content-Type. If unquote is True, the value is unquoted. 558 VALUE item in the 3-tuple) is always unquoted, unless unquote is set 677 `filename' parameter, and it is unquoted. If that header is missing 693 parameter, and it is unquoted.
|