Home
last modified time | relevance | path

Searched full:unquoted (Results 1 – 25 of 212) sorted by relevance

123456789

/external/pcre/pcrecpp/
Dpcrecpp.cc268 /*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()
Dpcrecpp_unittest.cc488 // 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/
DHtmlEscapeFunction.java50 // 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.
DJsEscapeFunction.java57 * unquoted JS attribute (like onClick or onMouseover).
/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/syzkaller/vendor/github.com/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/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/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBNF.java92 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/
Dnumber_affixutils.h135 * 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/
DAffixUtils.java141 // 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/
DAffixUtils.java149 // 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/
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`.
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.
/external/snakeyaml/src/test/resources/specification/
Dexample2_18.yaml2 This unquoted scalar
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-02-18.data2 This unquoted scalar
/external/llvm/test/YAMLParser/
Dspec-02-18.test4 This unquoted scalar
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dspec-02-18.test4 This unquoted scalar
/external/python/cpython3/Lib/unittest/
D__main__.py7 # use executable without path, unquoted
/external/apache-http/src/org/apache/http/impl/cookie/
DNetscapeDraftSpec.java114 * character may be present in unquoted cookie value or unquoted
/external/python/cpython3/Doc/library/
Demail.compat32-message.rst479 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`.
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.
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
DHtmlUrlValidateFunction.java34 * isUnquoted should be true if the URL appears in an unquoted attribute. like: &lt;a href=&lt;?cs
/external/desugar/java/com/google/devtools/common/options/
DUnquotedParamsFilePreProcessor.java26 * com.google.devtools.build.lib.actions.ParameterFile.ParameterFileType.UNQUOTED} format. This
/external/python/cpython2/Lib/email/
Dmessage.py524 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.

123456789