/third_party/protobuf/python/google/protobuf/internal/ |
H A D | text_encoding_test.py | 59 for escaped, escaped_utf8, unescaped in TEST_VALUES: 61 text_encoding.CEscape(unescaped, as_utf8=False)) 63 text_encoding.CEscape(unescaped, as_utf8=True)) 66 for escaped, escaped_utf8, unescaped in TEST_VALUES: 67 self.assertEqual(unescaped, text_encoding.CUnescape(escaped)) 68 self.assertEqual(unescaped, text_encoding.CUnescape(escaped_utf8))
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | escaping_test.cc | 34 std::string unescaped; member 87 // unescaped successfully. in TEST() 95 std::string unescaped; in TEST() local 96 EXPECT_TRUE(absl::CUnescape(escaped, &unescaped)); in TEST() 97 EXPECT_EQ(s, unescaped); in TEST() 139 std::string escaped = absl::CEscape(val.unescaped); in TEST() 143 std::string escaped = absl::CHexEscape(val.unescaped); in TEST() 147 std::string escaped = absl::Utf8SafeCEscape(val.unescaped); in TEST() 151 std::string escaped = absl::Utf8SafeCHexEscape(val.unescaped); in TEST() 167 EXPECT_EQ(out, val.unescaped); in TEST() 637 std::string unescaped; TEST() local [all...] |
/third_party/googletest/googlemock/test/ |
H A D | gmock-internal-utils_test.cc | 724 std::string unescaped; in TEST() local 725 EXPECT_FALSE(Base64Unescape("(invalid)", &unescaped)); in TEST() 729 std::string unescaped; in TEST() local 730 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQh", &unescaped)); in TEST() 731 EXPECT_EQ("Hello world!", unescaped); in TEST() 735 std::string unescaped; in TEST() local 736 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ=", &unescaped)); in TEST() 737 EXPECT_EQ("Hello world", unescaped); in TEST() 741 std::string unescaped; in TEST() local 742 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ", &unescaped)); in TEST() 758 std::string unescaped; TEST() local [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | modargs.c | 39 pa_hashmap *unescaped; member 52 pa_assert(ma->unescaped); in add_key_value() 56 if (pa_hashmap_get(ma->unescaped, key)) { in add_key_value() 84 pa_hashmap_put(ma->unescaped, key, e); in add_key_value() 259 ma->unescaped = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL, free_func); in pa_modargs_new() 276 if (pa_hashmap_remove_and_free(ma->unescaped, key) == 0) { in pa_modargs_remove_key() 288 pa_hashmap_free(ma->unescaped); in pa_modargs_free() 298 if (!(e = pa_hashmap_get(ma->unescaped, key))) in pa_modargs_get_value() 311 if (!(e = pa_hashmap_get(ma->unescaped, key))) in modargs_get_value_raw() 551 if (!(e = pa_hashmap_iterate(ma->unescaped, stat in pa_modargs_iterate() [all...] |
/third_party/curl/lib/ |
H A D | ldap.c | 880 char *unescaped; in _ldap_url_parse2() local 886 result = Curl_urldecode(dn, 0, &unescaped, NULL, REJECT_ZERO); in _ldap_url_parse2() 894 /* Convert the unescaped string to a tchar */ in _ldap_url_parse2() 895 ludp->lud_dn = curlx_convert_UTF8_to_tchar(unescaped); in _ldap_url_parse2() 897 /* Free the unescaped string as we are done with it */ in _ldap_url_parse2() 898 free(unescaped); in _ldap_url_parse2() 906 ludp->lud_dn = unescaped; in _ldap_url_parse2() 945 char *unescaped; in _ldap_url_parse2() local 951 result = Curl_urldecode(attributes[i], 0, &unescaped, NULL, in _ldap_url_parse2() 962 /* Convert the unescaped strin in _ldap_url_parse2() 1015 char *unescaped; _ldap_url_parse2() local [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | CsvTable.java | 266 * Imports a sequence of rows to create a CSV table. The values in the rows are unescaped and 366 /** Returns the unescaped CSV values for the specified row, in order. */ 528 String unescaped = column.serialize(value); in formatValue() 529 if (unescaped.isEmpty()) { in formatValue() 530 return unescaped; in formatValue() 537 checkArgument(ESCAPED_CHARS.matchesNoneOf(unescaped), "Bad 'safe' value: %s", unescaped); in formatValue() 538 return unescaped; in formatValue() 540 return escapeForSingleLineCsv(unescaped); in formatValue() 552 public static String escapeForSingleLineCsv(String unescaped) { in escapeForSingleLineCsv() argument [all...] |
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 721 unescaped: Symbol, in doc_comment() 766 is_escaped_literal_token(token, unescaped) && trees.next().is_none() in doc_comment() 772 fn is_escaped_literal_token(token: &Token, unescaped: Symbol) -> bool { in is_escaped_literal_token() 778 Ok(lit) => is_escaped_literal_meta_item_lit(&lit, unescaped), in is_escaped_literal_token() 786 ExprKind::Lit(lit) => is_escaped_lit(lit, unescaped), in is_escaped_literal_token() 795 fn is_escaped_literal_attr_args(value: &AttrArgsEq, unescaped: Symbol) -> bool { in is_escaped_literal_attr_args() 798 ExprKind::Lit(lit) => is_escaped_lit(lit, unescaped), in is_escaped_literal_attr_args() 801 AttrArgsEq::Hir(lit) => is_escaped_literal_meta_item_lit(lit, unescaped), in is_escaped_literal_attr_args() 805 fn is_escaped_literal_meta_item_lit(lit: &MetaItemLit, unescaped: Symbol) -> bool { in is_escaped_literal_meta_item_lit() 812 } => is_escaped_lit_kind(kind, unescaped), in is_escaped_literal_meta_item_lit() [all...] |
/third_party/gn/src/gn/ |
H A D | eclipse_writer.cc | 19 // Escapes |unescaped| for use in XML element content. 20 std::string EscapeForXML(const std::string& unescaped) { in EscapeForXML() argument 22 result.reserve(unescaped.length()); in EscapeForXML() 23 for (const char c : unescaped) { in EscapeForXML()
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
H A D | attribute.js | 20 var warnOfDeprecatedConstructor = deprecate(function () {}, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now."); 24 var unescaped = value; 25 var m = unescaped.match(WRAPPED_IN_QUOTES); 28 unescaped = m[2]; 30 unescaped = (0, _unesc["default"])(unescaped); 31 if (unescaped !== value) { 36 unescaped: unescaped, 50 unescaped [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | uri.go | 138 if unescaped, err := url.PathUnescape(uri); err == nil { 139 uri = unescaped
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | uri.go | 138 if unescaped, err := url.PathUnescape(uri); err == nil { 139 uri = unescaped
|
/third_party/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | uri.go | 138 if unescaped, err := url.PathUnescape(uri); err == nil { 139 uri = unescaped
|
/third_party/ninja/src/ |
H A D | graph.cc | 496 std::string unescaped;
in CollectInputs() local 497 unescaped.swap(path);
in CollectInputs() 499 GetWin32EscapedString(unescaped, &path);
in CollectInputs() 501 GetShellEscapedString(unescaped, &path);
in CollectInputs()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil.cc | 455 std::unique_ptr<char[]> unescaped(new char[src.size() + 1]); in UnescapeCEscapeString() 456 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), errors); in UnescapeCEscapeString() 458 dest->assign(unescaped.get(), len); in UnescapeCEscapeString() 463 std::unique_ptr<char[]> unescaped(new char[src.size() + 1]); in UnescapeCEscapeString() 464 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), nullptr); in UnescapeCEscapeString() 465 return string(unescaped.get(), len); in UnescapeCEscapeString()
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | parser.js | 316 unescaped = _unescapeValue.unescaped, 318 node.value = unescaped;
|
/third_party/ffmpeg/tests/checkasm/ |
H A D | vc1dsp.c | 383 RANDOMIZE_BUFFER8(unescaped, UNESCAPE_BUF_SIZE); \
|
/third_party/mksh/ |
H A D | edit.c | 371 /* ... to unescaped, for comparison with the matches */ in x_glob_hlp_tilde_and_rem_qchar() 2841 char *unescaped; in do_complete() local 2844 strndupx(unescaped, xbuf + start, olen, ATEMP); in do_complete() 2847 unescaped = x_glob_hlp_tilde_and_rem_qchar(unescaped, true); in do_complete() 2854 completed = !strncmp(words[0], unescaped, strlen(unescaped)); in do_complete() 2856 afree(unescaped, ATEMP); in do_complete()
|
/third_party/ffmpeg/tests/fate/ |
H A D | h264.mak | 222 FATE_H264-$(call FRAMECRC, MOV, H264) += fate-h264-unescaped-extradata 446 fate-h264-unescaped-extradata: CMD = framecrc -i $(TARGET_SAMPLES)/h264/unescaped_extradata.mp4 -an -frames 10
|
/third_party/python/Lib/test/ |
H A D | test_codecs.py | 2855 # But should still support unescaped tabs and spaces 2856 unescaped = b"space tab eol\n" 2857 self.assertEqual(codecs.decode(unescaped, "quopri-codec"), unescaped)
|
/third_party/ffmpeg/libavformat/ |
H A D | movenc.c | 1003 uint8_t *unescaped; in mov_write_dvc1_structs() local 1021 unescaped = av_mallocz(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE); in mov_write_dvc1_structs() 1022 if (!unescaped) in mov_write_dvc1_structs() 1032 unescaped_size = vc1_unescape_buffer(start + 4, size, unescaped); in mov_write_dvc1_structs() 1033 init_get_bits(&gb, unescaped, 8 * unescaped_size); in mov_write_dvc1_structs() 1037 av_free(unescaped); in mov_write_dvc1_structs() 1051 av_free(unescaped); in mov_write_dvc1_structs() 1079 av_free(unescaped); in mov_write_dvc1_structs()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 1137 std::string unescaped; in MatchAndExplain() local 1138 if (!internal::Base64Unescape(s2, &unescaped)) { in MatchAndExplain() 1144 return MatchPrintAndExplain(unescaped, internal_matcher_, listener); in MatchAndExplain() 5039 // Matches a base64 escaped string, when the unescaped string matches the
|
/third_party/sqlite/src/ |
H A D | shell.c | 18779 " --newlines Allow unescaped newline characters in output", 19959 utf8_printf(stderr, "%s:%d: unescaped %c character\n", in csv_read_one_field()
|
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |