Home
last modified time | relevance | path

Searched refs:prefix (Results 151 – 175 of 293) sorted by relevance

12345678910>>...12

/PHP-7.2/scripts/dev/
H A Dphpextdist7 phpize=`php-config --prefix`/bin/phpize
/PHP-7.2/
H A Dphp7.spec.in31 ./configure --prefix=/usr --with-apxs \
45 ./configure --prefix=/usr --with-apxs=$APXS $OPTIONS
/PHP-7.2/ext/standard/
H A Dhttp.c221 char *prefix = NULL, *arg_sep=NULL; in PHP_FUNCTION() local
229 Z_PARAM_STRING(prefix, prefix_len) in PHP_FUNCTION()
239 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
/PHP-7.2/scripts/
H A Dphpize.in4 prefix='@prefix@'
155 -e "s#@prefix@#$prefix#" \
/PHP-7.2/ext/standard/tests/array/
H A Dbug77669.phpt14 extract($prefix_foo, $mode, "prefix");
/PHP-7.2/ext/imap/tests/
H A Dclean.inc15 // Only delete mailboxes with our prefix
/PHP-7.2/ext/hash/sha3/generic32lc/
H A DKeccakSponge.inc19 #define Sponge JOIN(prefix, _Sponge)
20 #define SpongeInstance JOIN(prefix, _SpongeInstance)
21 #define SpongeInitialize JOIN(prefix, _SpongeInitialize)
22 #define SpongeAbsorb JOIN(prefix, _SpongeAbsorb)
23 #define SpongeAbsorbLastFewBits JOIN(prefix, _SpongeAbsorbLastFewBits)
24 #define SpongeSqueeze JOIN(prefix, _SpongeSqueeze)
/PHP-7.2/ext/hash/sha3/generic64lc/
H A DKeccakSponge.inc19 #define Sponge JOIN(prefix, _Sponge)
20 #define SpongeInstance JOIN(prefix, _SpongeInstance)
21 #define SpongeInitialize JOIN(prefix, _SpongeInitialize)
22 #define SpongeAbsorb JOIN(prefix, _SpongeAbsorb)
23 #define SpongeAbsorbLastFewBits JOIN(prefix, _SpongeAbsorbLastFewBits)
24 #define SpongeSqueeze JOIN(prefix, _SpongeSqueeze)
/PHP-7.2/ext/dom/
H A Dxpath.c45 ZEND_ARG_INFO(0, prefix)
150 curns->prefix = xmlStrdup((xmlChar *) node->children); in dom_xpath_ext_function_php()
317 unsigned char *prefix, *ns_uri; in PHP_FUNCTION() local
319 …rameters(ZEND_NUM_ARGS(), getThis(), "Oss", &id, dom_xpath_class_entry, &prefix, &prefix_len, &ns_… in PHP_FUNCTION()
331 if (xmlXPathRegisterNs(ctxp, prefix, ns_uri) != 0) { in PHP_FUNCTION()
449 curns->prefix = xmlStrdup((xmlChar *) node->children); in php_xpath_eval()
H A Dphp_dom.h111 int dom_check_qname(char *qname, char **localname, char **prefix, int uri_len, int name_len);
112 xmlNsPtr dom_get_ns(xmlNodePtr node, char *uri, int *errorcode, char *prefix);
H A Dphp_dom.c1428 doc->oldNs->prefix = xmlStrdup((const xmlChar *)"xml"); in dom_set_old_ns()
1454 *localname = (char *)xmlSplitQName2((xmlChar *)qname, (xmlChar **) prefix); in dom_check_qname()
1457 if (*prefix == NULL && uri_len == 0) { in dom_check_qname()
1468 if (*prefix != NULL && uri_len == 0) { in dom_check_qname()
1487 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1492 if (! ((prefix && !strcmp (prefix, "xml") && strcmp(uri, (char *)XML_XML_NAMESPACE)) || in dom_get_ns()
1493 (prefix && !strcmp (prefix, "xmlns") && strcmp(uri, (char *)DOM_XMLNS_NAMESPACE)) || in dom_get_ns()
1494 (prefix && !strcmp(uri, (char *)DOM_XMLNS_NAMESPACE) && strcmp (prefix, "xmlns")))) { in dom_get_ns()
1495 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()
1517 if (cur->prefix == NULL && cur->href != NULL) { in dom_get_nsdecl()
[all …]
/PHP-7.2/ext/bcmath/libbcmath/
H A Dconfigure25 prefix=NONE
121 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
125 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
481 if test "x$prefix" != xNONE; then
482 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1541 test "x$prefix" = xNONE && prefix=$ac_default_prefix
1610 s%@prefix@%$prefix%g
/PHP-7.2/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp874_1.phpt26 $prefix = create_data("file_cp874", $item, 874);
/PHP-7.2/ext/libxml/
H A Dconfig0.m410 [ --with-libxml-dir[=DIR] LIBXML: libxml2 install prefix], no, no)
/PHP-7.2/ext/xmlwriter/
H A Dconfig.m410 [ --with-libxml-dir=DIR XMLWriter: libxml2 install prefix], no, no)
/PHP-7.2/ext/mbstring/oniguruma/
H A DREADME.ja47 onig-config --prefix
48 onig-config --exec-prefix
89 (prefix��/usr/local�ΤȤ�)
/PHP-7.2/ext/xml/
H A Dcompat.c90 _start_element_handler_ns(void *user, const xmlChar *name, const xmlChar *prefix, const xmlChar *UR… in _start_element_handler_ns() argument
110 if (prefix) { in _start_element_handler_ns()
111 qualified_name = xmlStrncatNew((xmlChar *)"<", prefix, xmlStrlen(prefix)); in _start_element_handler_ns()
225 _end_element_handler_ns(void *user, const xmlChar *name, const xmlChar * prefix, const xmlChar *URI) in _end_element_handler_ns() argument
235 if (prefix) { in _end_element_handler_ns()
236 end_element_len = spprintf(&end_element, 0, "</%s:%s>", (char *) prefix, (char *)name); in _end_element_handler_ns()
/PHP-7.2/ext/simplexml/tests/
H A Dbug43221.phpt16 Warning: SimpleXMLElement::addAttribute(): Attribute requires prefix for namespace in %sbug43221.ph…
/PHP-7.2/ext/xmlreader/
H A Dconfig.m410 [ --with-libxml-dir=DIR XMLReader: libxml2 install prefix], no, no)
/PHP-7.2/ext/ftp/
H A Dconfig.m49 [ --with-openssl-dir[=DIR] FTP: openssl install prefix], no, no)
/PHP-7.2/ext/pdo/
H A DMakefile.frag1 phpincludedir=$(prefix)/include/php
/PHP-7.2/ext/spl/tests/
H A DSplObjectStorage_unserialize_invalid_parameter2.phpt12 'x:rubbish', // rubbish after the 'x:' prefix
/PHP-7.2/ext/session/tests/
H A Dbug79221.phpt15 session.upload_progress.prefix=upload_progress_
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_conf.h55 char *prefix; member
/PHP-7.2/ext/soap/
H A Dconfig.m49 [ --with-libxml-dir=DIR SOAP: libxml2 install prefix], no, no)

Completed in 70 milliseconds

12345678910>>...12