Home
last modified time | relevance | path

Searched refs:p (Results 101 – 125 of 668) sorted by relevance

12345678910>>...27

/PHP-5.3/ext/mbstring/oniguruma/enc/
H A Diso8859_14.c110 const UChar* p = *pp; in mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in mbc_to_normalize()
116 *lower = ENC_ISO_8859_14_TO_LOWER_CASE(*p); in mbc_to_normalize()
119 *lower = *p; in mbc_to_normalize()
128 const UChar* p = *pp; in is_mbc_ambiguous() local
132 ONIGENC_IS_MBC_ASCII(p)) || in is_mbc_ambiguous()
134 !ONIGENC_IS_MBC_ASCII(p))) { in is_mbc_ambiguous()
135 int v = (EncISO_8859_14_CtypeTable[*p] & in is_mbc_ambiguous()
140 if (*p == 0xdf) in is_mbc_ambiguous()
H A Dgb18030.c68 if (GB18030_MAP[*p] != CM) in gb18030_mbc_enc_len()
70 p++; in gb18030_mbc_enc_len()
71 if (GB18030_MAP[*p] == C4) in gb18030_mbc_enc_len()
73 if (GB18030_MAP[*p] == C1) in gb18030_mbc_enc_len()
147 const UChar *p; in gb18030_left_adjust_char_head() local
151 for (p = s; p >= start; p--) { in gb18030_left_adjust_char_head()
155 switch (GB18030_MAP[*p]) { in gb18030_left_adjust_char_head()
170 switch (GB18030_MAP[*p]) { in gb18030_left_adjust_char_head()
181 switch (GB18030_MAP[*p]) { in gb18030_left_adjust_char_head()
192 switch (GB18030_MAP[*p]) { in gb18030_left_adjust_char_head()
[all …]
H A Dkoi8.c110 const OnigUChar* p = *pp; in koi8_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in koi8_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_mbc_to_normalize()
116 *lower = ENC_KOI8_TO_LOWER_CASE(*p); in koi8_mbc_to_normalize()
119 *lower = *p; in koi8_mbc_to_normalize()
128 const OnigUChar* p = *pp; in koi8_is_mbc_ambiguous() local
132 ONIGENC_IS_MBC_ASCII(p)) || in koi8_is_mbc_ambiguous()
134 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_is_mbc_ambiguous()
135 int v = (EncKOI8_CtypeTable[*p] & in koi8_is_mbc_ambiguous()
H A Dkoi8_r.c110 const UChar* p = *pp; in koi8_r_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in koi8_r_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_r_mbc_to_normalize()
116 *lower = ENC_KOI8_R_TO_LOWER_CASE(*p); in koi8_r_mbc_to_normalize()
119 *lower = *p; in koi8_r_mbc_to_normalize()
128 const UChar* p = *pp; in koi8_r_is_mbc_ambiguous() local
132 ONIGENC_IS_MBC_ASCII(p)) || in koi8_r_is_mbc_ambiguous()
134 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_r_is_mbc_ambiguous()
135 int v = (EncKOI8_R_CtypeTable[*p] & in koi8_r_is_mbc_ambiguous()
H A Diso8859_5.c110 const UChar* p = *pp; in iso_8859_5_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in iso_8859_5_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in iso_8859_5_mbc_to_normalize()
116 *lower = ENC_ISO_8859_5_TO_LOWER_CASE(*p); in iso_8859_5_mbc_to_normalize()
119 *lower = *p; in iso_8859_5_mbc_to_normalize()
130 const UChar* p = *pp; in iso_8859_5_is_mbc_ambiguous() local
134 ONIGENC_IS_MBC_ASCII(p)) || in iso_8859_5_is_mbc_ambiguous()
136 !ONIGENC_IS_MBC_ASCII(p))) { in iso_8859_5_is_mbc_ambiguous()
137 int v = (EncISO_8859_5_CtypeTable[*p] & in iso_8859_5_is_mbc_ambiguous()
/PHP-5.3/ext/standard/
H A Dvar_unserializer.re164 if (**p >= '0' && **p <= '9') {
166 } else if (**p >= 'a' && **p <= 'f') {
168 } else if (**p >= 'A' && **p <= 'F') {
177 (*p)++;
213 p++;
223 p++;
242 p++;
252 p++;
315 (*p)--;
338 datalen = parse_iv2((*p) + 2, p);
[all …]
H A Dvar_unserializer.c166 if (**p >= '0' && **p <= '9') { in unserialize_str()
168 } else if (**p >= 'a' && **p <= 'f') { in unserialize_str()
170 } else if (**p >= 'A' && **p <= 'F') { in unserialize_str()
179 (*p)++; in unserialize_str()
209 p++; in parse_iv2()
219 p++; in parse_iv2()
238 p++; in parse_uiv()
248 p++; in parse_uiv()
311 (*p)--; in process_nested_data()
334 datalen = parse_iv2((*p) + 2, p); in object_custom()
[all …]
/PHP-5.3/ext/spl/tests/
H A DarrayObject_setFlags_basic1.phpt6 public $p = 'object property';
11 var_dump(isset($ao->p));
13 var_dump($ao->p);
15 $ao->p = $ao->p . '.changed';
16 var_dump($ao->p);
19 $ao = new C(array('p'=>'array element'));
26 unset($ao->p);
30 unset($ao->p);
47 Notice: Undefined index: p in %s on line 10
50 Notice: Undefined index: p in %s on line 12
/PHP-5.3/ext/phar/tests/
H A Dphar_setsignaturealgo2.phpt17 $p = new Phar($fname);
18 $p['file1.txt'] = 'hi';
19 var_dump($p->getSignature());
20 $p->setSignatureAlgorithm(Phar::MD5);
21 var_dump($p->getSignature());
22 $p->setSignatureAlgorithm(Phar::SHA1);
23 var_dump($p->getSignature());
25 $p->setSignatureAlgorithm(Phar::SHA256);
26 var_dump($p->getSignature());
32 var_dump($p->getSignature());
[all …]
/PHP-5.3/ext/phar/tests/files/
H A Dnophar.phar.inc4 $p = new Phar($fname);
5 $p['index.php'] = '<?php include "b/c.php";' . "\n";
6 $p['web.php'] = '<?php echo "web\n";';
7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
8 $p['d'] = "in d\n";
9 $p->setStub($p->createDefaultStub('index.php', 'web.php'));
/PHP-5.3/ext/phar/tests/cache_list/files/
H A Dnophar.phar.inc4 $p = new Phar($fname);
5 $p['index.php'] = '<?php include "b/c.php";' . "\n";
6 $p['web.php'] = '<?php echo "web\n";';
7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
8 $p['d'] = "in d\n";
9 $p->setStub($p->createDefaultStub('index.php', 'web.php'));
/PHP-5.3/tests/classes/
H A Dproperty_override_public_private.phpt7 public $p = "A::p";
10 echo $this->p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_public_protected.phpt7 public $p = "A::p";
10 echo $this->p . "\n";
16 protected $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protectedStatic_privateStatic.phpt7 protected static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
H A Dproperty_override_publicStatic_privateStatic.phpt7 public static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_publicStatic_protectedStatic.phpt7 public static $p = "A::p (static)";
10 echo self::$p . "\n";
16 protected static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protected_private.phpt7 protected $p = "A::p";
10 echo $this->p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
/PHP-5.3/ext/zip/lib/
H A Dzip_source_zip.c59 struct read_zip *p; in zip_source_zip() local
85 if ((p=(struct read_zip *)malloc(sizeof(*p))) == NULL) { in zip_source_zip()
92 if (zip_stat_index(srcza, srcidx, flags, &p->st) < 0 in zip_source_zip()
93 || (p->zf=zip_fopen_index(srcza, srcidx, flags)) == NULL) { in zip_source_zip()
94 free(p); in zip_source_zip()
100 p->off = start; in zip_source_zip()
101 p->len = len; in zip_source_zip()
104 p->st.size = p->st.comp_size = len; in zip_source_zip()
105 p->st.comp_method = ZIP_CM_STORE; in zip_source_zip()
106 p->st.crc = 0; in zip_source_zip()
[all …]
/PHP-5.3/ext/phar/tests/tar/
H A Dphar_setsignaturealgo2.phpt18 $p = new Phar($fname);
19 $p['file1.txt'] = 'hi';
20 var_dump($p->getSignature());
21 $p->setSignatureAlgorithm(Phar::MD5);
22 var_dump($p->getSignature());
23 $p->setSignatureAlgorithm(Phar::SHA1);
24 var_dump($p->getSignature());
26 $p->setSignatureAlgorithm(Phar::SHA256);
27 var_dump($p->getSignature());
33 var_dump($p->getSignature());
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Dstrip_tags_basic2.phpt15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
20 "<p>",
21 '<p>',
26 "<html><p><a><?php"
48 string(27) "<p>hello</p>worldOther text"
50 string(27) "<p>hello</p>worldOther text"
60 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
/PHP-5.3/ext/phar/tests/zip/
H A Dphar_setsignaturealgo2.phpt20 $p = new Phar($fname);
21 $p['file1.txt'] = 'hi';
22 var_dump($p->getSignature());
26 $p = new Phar($fname2);
27 var_dump($p->getSignature());
32 $p = new Phar($fname3);
33 var_dump($p->getSignature());
38 $p = new Phar($fname4);
39 var_dump($p->getSignature());
46 $p = new Phar($fname5);
[all …]
/PHP-5.3/
H A D.gdbinit28 if $p[$i] != 0
198 ____print_str $p->arKey $p->nKeyLength
205 set $p = $p->pListNext
228 ____print_str $p->arKey $p->nKeyLength
235 printf "%p\n", (void*)$p->pData
245 set $p = $p->pListNext
296 ____print_str $p->arKey $p->nKeyLength
303 set $p = $p->pListNext
504 while $p
545 set $p = $p->pNext
[all …]
/PHP-5.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c1413 p < q; p += (m = mbtab[*p])); in mbfl_strcut()
1425 for (q = p + length; p < q; p += (m = mbtab[*p])); in mbfl_strcut()
1500 _bk.p = p; in mbfl_strcut()
1517 p = _bk.p; in mbfl_strcut()
1528 bk.p = p; in mbfl_strcut()
1540 p = _bk.p; in mbfl_strcut()
1551 p = bk.p; in mbfl_strcut()
1569 p = bk.p; in mbfl_strcut()
1584 _bk.p = p; in mbfl_strcut()
1593 p = bk.p; in mbfl_strcut()
[all …]
/PHP-5.3/sapi/litespeed/
H A Dlsapilib.c285 if ( !p ) { in allocateIovec()
298 if ( !p ) { in allocateRespHeaderBuf()
405 b = p[0]; in swapIntEndian()
406 p[0] = p[3]; in swapIntEndian()
407 p[3] = b; in swapIntEndian()
408 b = p[1]; in swapIntEndian()
409 p[1] = p[2]; in swapIntEndian()
410 p[2] = b; in swapIntEndian()
436 p[0] = p[1]; in fixHeaderIndexEndian()
830 char * p; in LSAPI_ReqBodyGetLine_r() local
[all …]
/PHP-5.3/Zend/tests/
H A Dbug32799.phpt8 if (!isset($GLOBALS['p'])) {
11 $GLOBALS['p']->c++; // no warning
12 print $GLOBALS['p']->c."\n"; // segfault
13 var_dump($GLOBALS['p']);
17 $p=new test;
18 $p=null; //destroy the object by a new assignment (segfault)

Completed in 83 milliseconds

12345678910>>...27