Home
last modified time | relevance | path

Searched refs:ai (Results 1 – 18 of 18) sorted by relevance

/PHP-7.2/ext/spl/tests/
H A Dbug45614.phpt23 $ai = $ao->getIterator();
26 showFirstTwoItems($ai);
29 $ai->rewind();
30 showFirstTwoItems($ai);
33 unset($ai[$ai->key()]);
34 $ai->current();
35 showFirstTwoItems($ai);
38 $ai->rewind();
39 $ai->seek(0);
40 showFirstTwoItems($ai);
H A Dbug62616.phpt5 $ai = new ArrayIterator(array(0,1));
7 var_dump($ai->count());
9 $ii = new IteratorIterator($ai);
H A Dbug61527.phpt6 $ai = $ao->getIterator();
9 $ai->next();
10 var_dump($ai->key());
11 var_dump($ai->current());
H A Dspl_cachingiterator_setFlags_basic.phpt9 $ai = new ArrayIterator(array('foo', 'bar'));
11 $ci = new CachingIterator($ai);
H A DarrayObject_getFlags_basic2.phpt12 $ai = new ArrayIterator($ao);
13 var_dump($ai->getFlags());
H A Dspl_cachingiterator___toString_basic.phpt9 $ai = new ArrayIterator(array(new stdClass(), new stdClass()));
10 $ci = new CachingIterator($ai);
/PHP-7.2/ext/dom/tests/
H A Dbug47848.phpt12 $fromdom->loadXML('<data xmlns:ai="http://altruists.org" ai:attr="namespaced" />');
25 <f2f:a xmlns:f2f="http://friend2friend.net/" xmlns:ai="http://altruists.org" ai:attr="namespaced"/>
/PHP-7.2/tests/classes/
H A Diterators_006.phpt6 class ai implements Iterator {
41 return new ai();
58 $array = new ai();
/PHP-7.2/ext/xmlrpc/libxmlrpc/
H A Dxml_to_soap.c85 struct array_info* ai = NULL; in parse_array_type_info() local
87 ai = (struct array_info*)ecalloc(1, sizeof(struct array_info)); in parse_array_type_info()
88 if (ai) { in parse_array_type_info()
95 strcpy(ai->kids_type, buf); in parse_array_type_info()
98 return ai; in parse_array_type_info()
370 struct array_info* ai = NULL; in xml_element_to_SOAP_REQUEST_worker() local
379 ai = parse_array_type_info(arrayType); /* alloc'ed ai free'd below. */ in xml_element_to_SOAP_REQUEST_worker()
394 xml_element_to_SOAP_REQUEST_worker(request, NULL, ai, xCurrent, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
400 xml_element_to_SOAP_REQUEST_worker(request, xCurrent, ai, xNext, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
406 if (ai) { in xml_element_to_SOAP_REQUEST_worker()
[all …]
/PHP-7.2/Zend/
H A Dzend_execute_API.c1445 ai.afn[idx] ? ZEND_FN_SCOPE_NAME(ai.afn[idx]) : "", \
1447 ai.afn[idx] ? ZSTR_VAL(ai.afn[idx]->common.function_name) : "", \
1448ai.afn[idx] && ai.afn[idx + 1] ? ", " : (ai.afn[idx] && ai.cnt > MAX_ABSTRACT_INFO_CNT ? ", ..." :…
1460 ai->afn[ai->cnt] = fn; in zend_verify_abstract_class_function()
1463 if (!ai->ctor) { in zend_verify_abstract_class_function()
1464 ai->cnt++; in zend_verify_abstract_class_function()
1465 ai->ctor = 1; in zend_verify_abstract_class_function()
1467 ai->afn[ai->cnt] = NULL; in zend_verify_abstract_class_function()
1470 ai->cnt++; in zend_verify_abstract_class_function()
1482 memset(&ai, 0, sizeof(ai)); in zend_verify_abstract_class()
[all …]
/PHP-7.2/ext/sockets/
H A Dsockets.c2607 struct addrinfo *ai; local
2619 php_sock->bsd_socket = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2620 php_sock->type = ai->ai_family;
2646 retval = bind(php_sock->bsd_socket, ai->ai_addr, ai->ai_addrlen);
2673 struct addrinfo *ai; local
2685 php_sock->bsd_socket = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2686 php_sock->type = ai->ai_family;
2712 retval = connect(php_sock->bsd_socket, ai->ai_addr, ai->ai_addrlen);
2738 struct addrinfo *ai; local
2754 if (ai->ai_canonname != NULL) {
[all …]
/PHP-7.2/ext/standard/
H A Dcrypt_blowfish.c871 BF_key ae, ai, ye, yi; in php_crypt_blowfish_rn() local
872 BF_set_key(k, ae, ai, 2); /* $2a$ */ in php_crypt_blowfish_rn()
874 ai[0] ^= 0x10000; /* undo the safety (for comparison) */ in php_crypt_blowfish_rn()
875 ok = ok && ai[0] == 0xdb9c59bc && ye[17] == 0x33343500 && in php_crypt_blowfish_rn()
877 !memcmp(ai, yi, sizeof(ai)); in php_crypt_blowfish_rn()
/PHP-7.2/main/
H A Dmergesort.c338 u_char *ai, *s, *t, *u, tmp; in insertionsort() local
341 for (ai = a+size; --n >= 1; ai += size) in insertionsort()
342 for (t = ai; t > a; t -= size) { in insertionsort()
/PHP-7.2/
H A Dconfigure.ac699 struct addrinfo *ai, *pai, hints;
704 if (getaddrinfo("127.0.0.1", 0, &hints, &ai) < 0) {
708 if (ai == 0) {
712 pai = ai;
725 freeaddrinfo(ai);
/PHP-7.2/ext/hash/tests/
H A Dfnv1a64.phpt228 array( 'Qaa/&PKV#iTz)P9Huc4CFP\\:-KEth,O;n1JtavKe`!ai', '50683e95eabc367d' ),
/PHP-7.2/build/
H A Dlibtool.m44 ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
4127 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
/PHP-7.2/ext/sqlite3/libsqlite/
H A Dsqlite3.c14733 int *ai; /* Used when p4type is P4_INTARRAY */ member
77873 int *ai = pOp->p4.ai;
77877 sqlite3_str_appendf(&x, ",%d", ai[i]);
85683 assert( pOp->p4.ai );
85726 aPermute = pOp[-1].p4.ai + 1;
89041 assert( pOp->p4type==P4_INTARRAY || pOp->p4.ai==0 );
89042 pTabCur->aAltMap = pOp->p4.ai;
89481 aRoot = pOp->p4.ai;
137195 if( ai ){
137196 ai[0] = pTab->nCol;
[all …]
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput22169 0: ai

Completed in 531 milliseconds