Home
last modified time | relevance | path

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

/PHP-5.3/ext/spl/tests/
H A Dbug45614.phpt22 $ai = $ao->getIterator();
25 showFirstTwoItems($ai);
28 $ai->rewind();
29 showFirstTwoItems($ai);
32 unset($ai[$ai->key()]);
33 $ai->current();
34 showFirstTwoItems($ai);
37 $ai->rewind();
38 $ai->seek(0);
39 showFirstTwoItems($ai);
H A Dbug62616.phpt5 $ai = new ArrayIterator(array(0,1));
7 var_dump($ai->count());
9 $ii = new IteratorIterator($ai);
H A Dspl_cachingiterator_setFlags_basic.phpt9 $ai = new ArrayIterator(array('foo', 'bar'));
11 $ci = new CachingIterator($ai);
H A Dspl_cachingiterator___toString_basic.phpt9 $ai = new ArrayIterator(array(new stdClass(), new stdClass()));
10 $ci = new CachingIterator($ai);
H A DarrayObject_getFlags_basic2.phpt12 $ai = new ArrayIterator($ao);
13 var_dump($ai->getFlags());
/PHP-5.3/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-5.3/tests/classes/
H A Diterators_006.phpt8 class ai implements Iterator {
44 return new ai();
61 $array = new ai();
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxml_to_soap.c88 struct array_info* ai = NULL; in parse_array_type_info() local
90 ai = (struct array_info*)calloc(1, sizeof(struct array_info)); in parse_array_type_info()
91 if (ai) { in parse_array_type_info()
98 strcpy(ai->kids_type, buf); in parse_array_type_info()
101 return ai; in parse_array_type_info()
373 struct array_info* ai = NULL; in xml_element_to_SOAP_REQUEST_worker() local
382 ai = parse_array_type_info(arrayType); /* alloc'ed ai free'd below. */ in xml_element_to_SOAP_REQUEST_worker()
397 xml_element_to_SOAP_REQUEST_worker(request, NULL, ai, xCurrent, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
403 xml_element_to_SOAP_REQUEST_worker(request, xCurrent, ai, xNext, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
409 if (ai) { in xml_element_to_SOAP_REQUEST_worker()
[all …]
/PHP-5.3/Zend/
H A Dzend_execute_API.c1585 ai.afn[idx] ? ZEND_FN_SCOPE_NAME(ai.afn[idx]) : "", \
1587 ai.afn[idx] ? ai.afn[idx]->common.function_name : "", \
1588ai.afn[idx] && ai.afn[idx + 1] ? ", " : (ai.afn[idx] && ai.cnt > MAX_ABSTRACT_INFO_CNT ? ", ..." :…
1600 ai->afn[ai->cnt] = fn; in zend_verify_abstract_class_function()
1603 if (!ai->ctor) { in zend_verify_abstract_class_function()
1604 ai->cnt++; in zend_verify_abstract_class_function()
1605 ai->ctor = 1; in zend_verify_abstract_class_function()
1607 ai->afn[ai->cnt] = NULL; in zend_verify_abstract_class_function()
1610 ai->cnt++; in zend_verify_abstract_class_function()
1622 memset(&ai, 0, sizeof(ai)); in zend_verify_abstract_class()
[all …]
H A Dzend_execute.c102 #define AI_USE_PTR(ai) \ argument
103 if ((ai).ptr_ptr) { \
104 (ai).ptr = *((ai).ptr_ptr); \
105 (ai).ptr_ptr = &((ai).ptr); \
107 (ai).ptr = NULL; \
110 #define AI_SET_PTR(ai, val) \ argument
111 (ai).ptr = (val); \
112 (ai).ptr_ptr = &((ai).ptr);
/PHP-5.3/ext/standard/
H A Dcrypt_blowfish.c862 BF_key ae, ai, ye, yi; in php_crypt_blowfish_rn() local
863 BF_set_key(k, ae, ai, 2); /* $2a$ */ in php_crypt_blowfish_rn()
865 ai[0] ^= 0x10000; /* undo the safety (for comparison) */ in php_crypt_blowfish_rn()
866 ok = ok && ai[0] == 0xdb9c59bc && ye[17] == 0x33343500 && in php_crypt_blowfish_rn()
868 !memcmp(ai, yi, sizeof(ai)); in php_crypt_blowfish_rn()
/PHP-5.3/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-5.3/
H A Dconfigure.in629 struct addrinfo *ai, *pai, hints;
634 if (getaddrinfo("127.0.0.1", 0, &hints, &ai) < 0) {
638 if (ai == 0) {
642 pai = ai;
655 freeaddrinfo(ai);
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c62970 } ai;
64542 if( (u.ai.flags1 | u.ai.flags3)&MEM_Null ){
64550 u.ai.res = (u.ai.flags1 & u.ai.flags3 & MEM_Null)==0;
64580 case OP_Eq: u.ai.res = u.ai.res==0; break;
64581 case OP_Ne: u.ai.res = u.ai.res!=0; break;
64582 case OP_Lt: u.ai.res = u.ai.res<0; break;
64583 case OP_Le: u.ai.res = u.ai.res<=0; break;
64584 case OP_Gt: u.ai.res = u.ai.res>0; break;
64585 default: u.ai.res = u.ai.res>=0; break;
64594 }else if( u.ai.res ){
[all …]
/PHP-5.3/sapi/thttpd/
H A Dthttpd_patch1130 ai application/postscript
/PHP-5.3/build/
H A Dlibtool.m44 ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
4124 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestoutput22169 0: ai

Completed in 349 milliseconds