Home
last modified time | relevance | path

Searched refs:unquoted (Results 1 – 25 of 69) sorted by relevance

123

/external/swiftshader/third_party/SPIRV-Tools/test/
Dtext_literal_test.cpp141 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/
Dtext_literal_test.cpp141 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/vulkan-deps/spirv-tools/src/test/
Dtext_literal_test.cpp141 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/rust/crates/grpcio-sys/grpc/third_party/re2/util/
Dpcre.cc466 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()
Dpcre.h431 static std::string QuoteMeta(const StringPiece& unquoted);
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dre2.cc515 std::string RE2::QuoteMeta(const StringPiece& unquoted) { in GlobalReplace() argument
517 result.reserve(unquoted.size() << 1); in GlobalReplace()
526 for (size_t ii = 0; ii < unquoted.size(); ++ii) { in GlobalReplace()
529 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in GlobalReplace()
530 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in GlobalReplace()
531 (unquoted[ii] < '0' || unquoted[ii] > '9') && in GlobalReplace()
532 unquoted[ii] != '_' && in GlobalReplace()
536 !(unquoted[ii] & 128)) { in GlobalReplace()
537 if (unquoted[ii] == '\0') { // Special handling for null chars. in GlobalReplace()
547 result += unquoted[ii]; in GlobalReplace()
Dre2.h465 static std::string QuoteMeta(const StringPiece& unquoted);
/external/golang-protobuf/proto/
Dtext_parser.go69 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/snakeyaml/src/test/resources/pyyaml/
Dspec-02-18.data2 This unquoted scalar
/external/llvm-project/llvm/test/YAMLParser/
Dspec-02-18.test4 This unquoted scalar
/external/llvm/test/YAMLParser/
Dspec-02-18.test4 This unquoted scalar
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dre2_test.cc387 static void TestQuoteMeta(const std::string& unquoted, in TestQuoteMeta() argument
389 std::string quoted = RE2::QuoteMeta(unquoted); in TestQuoteMeta()
391 EXPECT_TRUE(RE2::FullMatch(unquoted, re)) in TestQuoteMeta()
392 << "Unquoted='" << unquoted << "', quoted='" << quoted << "'."; in TestQuoteMeta()
398 const std::string& unquoted, const std::string& should_not_match, in NegativeTestQuoteMeta() argument
400 std::string quoted = RE2::QuoteMeta(unquoted); in NegativeTestQuoteMeta()
403 << "Unquoted='" << unquoted << "', quoted='" << quoted << "'."; in NegativeTestQuoteMeta()
/external/strace/m4/
Dwarnings.m424 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
/external/python/cpython2/Doc/library/
Demail.util.rst19 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.
Demail.message.rst378 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`.
Dhtmlparser.rst346 Parsing invalid HTML (e.g. unquoted attributes) also works::
/external/python/cpython3/Doc/library/
Demail.utils.rst58 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.
Demail.compat32-message.rst480 described in :meth:`get_param` and is unquoted if optional *unquote* is
515 string when the value is a tuple, or the original string unquoted if it
522 ``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set
592 The returned string will always be unquoted as per
601 string will always be unquoted as per :func:`email.utils.unquote`.
Dhtml.parser.rst331 Parsing invalid HTML (e.g. unquoted attributes) also works::
/external/markdown/docs/
DCHANGE_LOG105 May 18, 2006: Stopped catching unquoted titles in reference links.
/external/icu/tools/cldr/cldr-to-icu/src/main/resources/
Dldml2icu_readme.txt77 The rule is that the first unquoted argument in the resource bundle path is always treated
81 if there were another following unquoted argument, that would become implicitly splittable
Dldml2icu_supplemental.txt169 …2" in the output lets $3 expand space-separated regions: only the first unquoted output supports s…
/external/libevent/build-aux/
Dltmain.sh1222 # quotes backslashified. Available only if 'unquoted' is specified.
1234 # 'unquoted'
1238 # Examples for 'func_quote_arg pretty,unquoted string':
1248 # Examples for 'func_quote_arg pretty,unquoted,expand string':
6829 func_quote_arg pretty,unquoted "$arg"
10729 func_quote_arg pretty,unquoted "($func_quote_result; $relink_command)"
10970 func_quote_arg pretty,unquoted "$var_value"
10977 func_quote_arg pretty,unquoted "$relink_command"
/external/pcre/dist2/
Dltmain.sh1222 # quotes backslashified. Available only if 'unquoted' is specified.
1234 # 'unquoted'
1238 # Examples for 'func_quote_arg pretty,unquoted string':
1248 # Examples for 'func_quote_arg pretty,unquoted,expand string':
6829 func_quote_arg pretty,unquoted "$arg"
10729 func_quote_arg pretty,unquoted "($func_quote_result; $relink_command)"
10970 func_quote_arg pretty,unquoted "$var_value"
10977 func_quote_arg pretty,unquoted "$relink_command"
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/
Dtokenization.txt392 Switch to the attribute value (unquoted) state and reconsume
411 value. Switch to the attribute value (unquoted) state.
452 8.2.4.12 Attribute value (unquoted) state
480 value. Stay in the attribute value (unquoted) state.

123