Home
last modified time | relevance | path

Searched refs:unencoded (Results 1 – 25 of 819) sorted by relevance

12345678910>>...33

/dports/devel/cpp-netlib/cpp-netlib-cpp-netlib-0.13.0-final/libs/network/test/uri/
H A Duri_encoding_test.cpp16 const std::string unencoded(" !\"#$%&\'()*"); in TEST() local
20 uri::encode(unencoded, std::back_inserter(instance)); in TEST()
25 const std::string unencoded(" !\"#$%&\'()*"); in TEST() local
30 EXPECT_EQ(instance, unencoded); in TEST()
34 const std::string unencoded("한글 테스트"); in TEST() local
38 uri::encode(unencoded, std::back_inserter(instance)); in TEST()
43 const std::string unencoded("한글 테스트"); in TEST() local
48 EXPECT_EQ(instance, unencoded); in TEST()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/micro/org/openjdk/bench/java/util/
H A DBase64VarLenDecode.java54 unencoded = new byte[bin_src_len]; in doSetupInvocation()
57 ran.nextBytes(unencoded); in doSetupInvocation()
58 encoder.encode(unencoded, encoded); in doSetupInvocation()
66 if (!Arrays.equals(unencoded, decoded)) { in doTearDownInvocation()
68 for (int j = 0; j < unencoded.length; j++) { in doTearDownInvocation()
69 if (unencoded[j] != decoded[j]) { in doTearDownInvocation()
70 System.out.format("%06x: %02x %02x\n", j, unencoded[j], decoded[j]); in doTearDownInvocation()
82 public byte[] unencoded; field in Base64VarLenDecode.MyState
H A DBase64Encode.java40 private ArrayList<byte[]> unencoded; field in Base64Encode
55 unencoded = new ArrayList<byte[]> (); in setup()
62 unencoded.add(src); in setup()
69 for (byte[] s : unencoded) { in testBase64Encode()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/micro/org/openjdk/bench/java/util/
H A DBase64VarLenDecode.java54 unencoded = new byte[bin_src_len]; in doSetupInvocation()
57 ran.nextBytes(unencoded); in doSetupInvocation()
58 encoder.encode(unencoded, encoded); in doSetupInvocation()
66 if (!Arrays.equals(unencoded, decoded)) { in doTearDownInvocation()
68 for (int j = 0; j < unencoded.length; j++) { in doTearDownInvocation()
69 if (unencoded[j] != decoded[j]) { in doTearDownInvocation()
70 System.out.format("%06x: %02x %02x\n", j, unencoded[j], decoded[j]); in doTearDownInvocation()
82 public byte[] unencoded; field in Base64VarLenDecode.MyState
H A DBase64Encode.java40 private ArrayList<byte[]> unencoded; field in Base64Encode
55 unencoded = new ArrayList<byte[]> (); in setup()
62 unencoded.add(src); in setup()
69 for (byte[] s : unencoded) { in testBase64Encode()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/xmlrpc-c/src/
H A Dxmlrpc_authcookie.c52 char * unencoded; in xmlrpc_authcookie_set() local
61 MALLOCARRAY(unencoded,(strlen(username) + strlen(password) + 1 + 1)); in xmlrpc_authcookie_set()
62 sprintf(unencoded, "%s:%s", username, password); in xmlrpc_authcookie_set()
66 envP, (unsigned char *)unencoded, strlen(unencoded)); in xmlrpc_authcookie_set()
78 free(unencoded); in xmlrpc_authcookie_set()
/dports/net/xmlrpc-c/xmlrpc-c-1.51.07/src/
H A Dxmlrpc_authcookie.c53 char * unencoded; in xmlrpc_authcookie_set() local
62 MALLOCARRAY(unencoded,(strlen(username) + strlen(password) + 1 + 1)); in xmlrpc_authcookie_set()
63 sprintf(unencoded, "%s:%s", username, password); in xmlrpc_authcookie_set()
67 envP, (unsigned char *)unencoded, strlen(unencoded)); in xmlrpc_authcookie_set()
79 free(unencoded); in xmlrpc_authcookie_set()
/dports/x11-fonts/gbdfed/gbdfed-1.6/
H A Dfontgrid.c1528 sinfo.unencoded = fw->unencoded; in start_selection()
1643 sinfo.unencoded = fw->unencoded; in extend_selection()
1694 sinfo.unencoded = fw->unencoded; in end_selection()
1997 sinfo.unencoded = fw->unencoded; in fontgrid_shift_key_press()
2221 sinfo.unencoded = fw->unencoded; in fontgrid_key_press()
3193 selinfo.unencoded = fw->unencoded; in fontgrid_goto_code()
3277 fw->unencoded = !fw->unencoded; in fontgrid_switch_encoding_view()
4656 mi.unencoded = fw->unencoded; in fontgrid_update_glyph()
4673 mi.unencoded = fw->unencoded; in fontgrid_update_psf_mappings()
4756 sinfo.unencoded = fw->unencoded; in fontgrid_select_next_glyph()
[all …]
H A Dbdf.h309 unsigned short unencoded; /* Whether the glyph was unencoded. */ member
581 bdf_glyphlist_t *glyphs, int unencoded);
584 int unencoded);
590 bdf_glyphlist_t *glyphs, int unencoded);
593 bdf_glyphlist_t *glyphs, int unencoded);
596 bdf_psf_unimap_t *map, int unencoded);
646 int unencoded);
705 int unencoded);
710 int unencoded);
715 int unencoded);
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/protocol/nimble/test/
H A DDecodeNimbleBlockTest.cpp35 const std::array<std::uint32_t, kChunksPerBlock>& unencoded) { in runRoundTripTest() argument
41 unencoded.data(), &control, encoded.data()); in runRoundTripTest()
45 EXPECT_TRUE(encodedSize == decodedSize && unencoded == decoded) in runRoundTripTest()
50 folly::join(", ", unencoded), in runRoundTripTest()
75 for (const std::array<std::uint32_t, kChunksPerBlock>& unencoded : testData) { in runHandPickedDecodeTest() local
76 runRoundTripTest<repr, vectorizeEncoder, vectorizeDecoder>(unencoded); in runHandPickedDecodeTest()
153 std::array<std::uint32_t, kChunksPerBlock> unencoded = { in runInterestingRoundTripTest() local
155 runRoundTripTest<repr, vectorizeEncoder, vectorizeDecoder>(unencoded); in runInterestingRoundTripTest()
/dports/cad/openroad/OpenROAD-2.0/src/sta/app/
H A DStaMain.cc106 char *unencoded = unencode(inits); in evalTclInit() local
107 if (Tcl_Eval(interp, unencoded) != TCL_OK) { in evalTclInit()
115 delete [] unencoded; in evalTclInit()
126 char *unencoded = new char[length / 3 + 1]; in unencode() local
127 char *u = unencoded; in unencode()
138 return unencoded; in unencode()
/dports/www/p5-HTTP-XSCookies/HTTP-XSCookies-0.000021/
H A Dbaker.xs40 Buffer unencoded; in get_encoded_value() local
46 buffer_wrap(&unencoded, vstr, vlen); in get_encoded_value()
48 url_encode(&unencoded, encoded); in get_encoded_value()
50 buffer_append_buf(encoded, &unencoded); in get_encoded_value()
60 buffer_init(&unencoded , 0); in get_encoded_value()
71 buffer_append_str(&unencoded, "&", 1); in get_encoded_value()
73 buffer_append_str(&unencoded, vstr, vlen); in get_encoded_value()
77 url_encode(&unencoded, encoded); in get_encoded_value()
79 buffer_append_buf(encoded, &unencoded); in get_encoded_value()
81 buffer_fini(&unencoded); in get_encoded_value()
/dports/devel/mercurial/mercurial-6.0/mercurial/upgrade_utils/
H A Dengine.py138 unencoded, argument
160 ui.note(msg % (unencoded, len(old_revlog)))
204 for rl_type, unencoded, size in alldatafiles:
216 if unencoded in skip_undo:
219 rl = _revlogfrompath(srcrepo, rl_type, unencoded)
237 changelogs[unencoded] = (rl_type, rl)
242 manifests[unencoded] = (rl_type, rl)
248 filelogs[unencoded] = (rl_type, rl)
300 unencoded,
340 unencoded,
[all …]
/dports/editors/jucipp/jucipp-b3b5182258b25835e7c5f683623ab774d8e34c75/src/
H A Dfilesystem.cpp392 std::string unencoded; in get_path_from_uri() local
397 unencoded += decoded_chr; in get_path_from_uri()
401 unencoded += ' '; in get_path_from_uri()
403 unencoded += encoded[i]; in get_path_from_uri()
407unencoded.size() > 3 && unencoded[0] == '/' && ((unencoded[1] >= 'a' && unencoded[1] <= 'z') || (u… in get_path_from_uri()
408 unencoded.erase(0, 1); in get_path_from_uri()
409 unencoded[0] = std::toupper(unencoded[0]); in get_path_from_uri()
413 return unencoded; in get_path_from_uri()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/micro/org/openjdk/bench/java/util/
H A DBase64Encode.java40 private ArrayList<byte[]> unencoded; field in Base64Encode
55 unencoded = new ArrayList<byte[]> (); in setup()
62 unencoded.add(src); in setup()
69 for (byte[] s : unencoded) { in testBase64Encode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/micro/org/openjdk/bench/java/util/
H A DBase64Encode.java40 private ArrayList<byte[]> unencoded; field in Base64Encode
55 unencoded = new ArrayList<byte[]> (); in setup()
62 unencoded.add(src); in setup()
69 for (byte[] s : unencoded) { in testBase64Encode()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/micro/org/openjdk/bench/java/util/
H A DBase64Encode.java40 private ArrayList<byte[]> unencoded; field in Base64Encode
55 unencoded = new ArrayList<byte[]> (); in setup()
62 unencoded.add(src); in setup()
69 for (byte[] s : unencoded) { in testBase64Encode()
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/
H A Dmarshal_proto_test.go78 unencoded := &examplepb.ABitOfEverything{}
79 err = decoder.Decode(unencoded)
84 if !proto.Equal(unencoded, message) {
87 unencoded,
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/
H A Dmarshal_proto_test.go78 unencoded := &examplepb.ABitOfEverything{}
79 err = decoder.Decode(unencoded)
84 if !proto.Equal(unencoded, message) {
87 unencoded,
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/
H A Dmarshal_proto_test.go78 unencoded := &examplepb.ABitOfEverything{}
79 err = decoder.Decode(unencoded)
84 if !proto.Equal(unencoded, message) {
87 unencoded,
/dports/devel/etcd33/etcd-3.3.23/vendor/github.com/grpc-ecosystem/grpc-gateway/grpc-gateway-1.3.1/runtime/
H A Dmarshal_proto_test.go78 unencoded := &examplepb.ABitOfEverything{}
79 err = decoder.Decode(unencoded)
84 if !reflect.DeepEqual(unencoded, message) {
87 unencoded,
/dports/archivers/pecl-rar/rar-4.2.0/tests/
H A D060.phpt9 echo "Root entries unencoded:\n";
29 echo "\nSub-root directory entries unencoded:\n";
40 Root entries unencoded:
54 Sub-root directory entries unencoded:
/dports/devel/py-jsbeautifier/jsbeautifier-1.11.0/jsbeautifier/unpackers/tests/
H A Dtesturlencode.py21 def unencoded(source): return self.assertFalse(detect(source)) function
23 unencoded('')
24 unencoded('var a = b')
/dports/mail/libvmime/vmime-0.9.2/src/vmime/
H A Dword.cpp97 string unencoded; in parseNext() local
119 unencoded += buffer.substr(startPos, endPos - startPos); in parseNext()
122 unencoded += ' '; in parseNext()
132 unencoded += buffer.substr(startPos, pos - startPos); in parseNext()
134 if (!unencoded.empty()) in parseNext()
137 unencoded = whiteSpaces + unencoded; in parseNext()
139 shared_ptr <word> w = make_shared <word>(unencoded, defaultCharset); in parseNext()
214 unencoded = whiteSpaces + unencoded; in parseNext()
216 unencoded += buffer.substr(startPos, end - startPos); in parseNext()
220 if (!unencoded.empty()) in parseNext()
[all …]
/dports/cad/openroad/OpenROAD-2.0/src/
H A DMain.cc121 char *unencoded = sta::unencode(sta::opendbpy_python_inits); in initPython() local
123 PyObject* odb_code = Py_CompileString(unencoded, "opendbpy.py", Py_file_input); in initPython()
136 delete [] unencoded; in initPython()
138 unencoded = sta::unencode(sta::openroad_swig_py_python_inits); in initPython()
140 PyObject* ord_code = Py_CompileString(unencoded, "openroad.py", Py_file_input); in initPython()
153 delete [] unencoded; in initPython()

12345678910>>...33