Home
last modified time | relevance | path

Searched refs:unescaped_length (Results 1 – 11 of 11) sorted by relevance

/dports/www/pecl-solr/solr-2.5.1/src/php7/
H A Dphp_solr_utils.c27 COMPAT_ARG_SIZE_T unescaped_length = 0; in PHP_METHOD() local
29 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &unescaped, &unescaped_length) == FAILURE) { in PHP_METHOD()
34 if (!unescaped_length) { in PHP_METHOD()
41 solr_escape_query_chars(&sbuilder, unescaped, unescaped_length); in PHP_METHOD()
55 COMPAT_ARG_SIZE_T unescaped_length = 0; in PHP_METHOD() local
57 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &unescaped, &unescaped_length) == FAILURE) { in PHP_METHOD()
62 if (!unescaped_length) { in PHP_METHOD()
70 solr_escape_query_chars(&sbuilder, unescaped, unescaped_length); in PHP_METHOD()
H A Dsolr_functions_helpers.c332 …solr_escape_query_chars(solr_string_t *sbuilder, solr_char_t *unescaped, long int unescaped_length) argument
344 for (i = 0; i < unescaped_length; i++) {
H A Dphp_solr.h821 …olr_escape_query_chars(solr_string_t *sbuilder, solr_char_t *unescaped, long int unescaped_length);
/dports/lang/mit-scheme/mit-scheme-9.2/src/microcode/
H A Dprpgsql.c246 size_t unescaped_length; variable
249 (&unescaped_length)));
253 SCHEME_OBJECT s = (memory_to_string (unescaped_length, unescaped));
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/strings/
H A Duri.cc347 int unescaped_length = 0; in UnescapeSlow() local
351 for (int i = start_index; i < length; unescaped_length++) { in UnescapeSlow()
367 DCHECK_LE(unescaped_length, String::kMaxLength); in UnescapeSlow()
370 ->NewRawOneByteString(unescaped_length) in UnescapeSlow()
383 ->NewRawTwoByteString(unescaped_length) in UnescapeSlow()
/dports/www/node10/node-v10.24.1/deps/v8/src/
H A Duri.cc343 int unescaped_length = 0; in UnescapeSlow() local
347 for (int i = start_index; i < length; unescaped_length++) { in UnescapeSlow()
363 DCHECK_LE(unescaped_length, String::kMaxLength); in UnescapeSlow()
366 ->NewRawOneByteString(unescaped_length) in UnescapeSlow()
379 ->NewRawTwoByteString(unescaped_length) in UnescapeSlow()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/strings/
H A Duri.cc347 int unescaped_length = 0; in UnescapeSlow() local
351 for (int i = start_index; i < length; unescaped_length++) { in UnescapeSlow()
367 DCHECK_LE(unescaped_length, String::kMaxLength); in UnescapeSlow()
370 ->NewRawOneByteString(unescaped_length) in UnescapeSlow()
383 ->NewRawTwoByteString(unescaped_length) in UnescapeSlow()
/dports/lang/v8/v8-9.6.180.12/src/strings/
H A Duri.cc350 int unescaped_length = 0; in UnescapeSlow() local
354 for (int i = start_index; i < length; unescaped_length++) { in UnescapeSlow()
370 DCHECK_LE(unescaped_length, String::kMaxLength); in UnescapeSlow()
373 ->NewRawOneByteString(unescaped_length) in UnescapeSlow()
386 ->NewRawTwoByteString(unescaped_length) in UnescapeSlow()
/dports/www/mnogosearch/mnogosearch-3.4.1/src/
H A Dvars.c1575 size_t unescaped_length; in UdmVarListAddQueryStringStrn() local
1586 unescaped_length= UdmUnescapeCGIQuery(str,val); in UdmVarListAddQueryStringStrn()
1587 UdmVarListAddQueryStr(vars, tok, str, unescaped_length); in UdmVarListAddQueryStringStrn()
1589 UdmVarListAddQueryStr(vars, qname, str, unescaped_length); in UdmVarListAddQueryStringStrn()
/dports/games/retroarch/RetroArch-1.9.7/gfx/include/userland/containers/core/
H A Dcontainers_uri.c192 static uint32_t unescaped_length( const char *str, uint32_t str_len ) in unescaped_length() function
236 unescstr = (char *)malloc(unescaped_length(escstr, esclen) + 1); /* Allow for NUL */ in create_unescaped_string()
/dports/devel/glib20/glib-2.70.4/glib/
H A Dguri.c2741 gssize unescaped_length; in g_uri_unescape_bytes() local
2749 unescaped_length = uri_decoder (&buf, in g_uri_unescape_bytes()
2756 if (unescaped_length == -1) in g_uri_unescape_bytes()
2759 return g_bytes_new_take (buf, unescaped_length); in g_uri_unescape_bytes()