Home
last modified time | relevance | path

Searched refs:p (Results 26 – 50 of 739) sorted by relevance

12345678910>>...30

/PHP-7.0/ext/mbstring/oniguruma/enc/
H A Dbig5.c52 big5_mbc_enc_len(const UChar* p) in big5_mbc_enc_len() argument
54 return EncLen_BIG5[*p]; in big5_mbc_enc_len()
117 const UChar *p; in big5_left_adjust_char_head() local
121 p = s; in big5_left_adjust_char_head()
123 if (BIG5_ISMB_TRAIL(*p)) { in big5_left_adjust_char_head()
124 while (p > start) { in big5_left_adjust_char_head()
125 if (! BIG5_ISMB_FIRST(*--p)) { in big5_left_adjust_char_head()
126 p++; in big5_left_adjust_char_head()
132 if (p + len > s) return (UChar* )p; in big5_left_adjust_char_head()
133 p += len; in big5_left_adjust_char_head()
[all …]
H A Deuc_kr.c52 euckr_mbc_enc_len(const UChar* p) in euckr_mbc_enc_len() argument
54 return EncLen_EUCKR[*p]; in euckr_mbc_enc_len()
58 euckr_mbc_to_code(const UChar* p, const UChar* end) in euckr_mbc_to_code() argument
60 return onigenc_mbn_mbc_to_code(ONIG_ENCODING_EUC_KR, p, end); in euckr_mbc_to_code()
100 const UChar *p; in euckr_left_adjust_char_head() local
104 p = s; in euckr_left_adjust_char_head()
106 while (!euckr_islead(*p) && p > start) p--; in euckr_left_adjust_char_head()
107 len = enclen(ONIG_ENCODING_EUC_KR, p); in euckr_left_adjust_char_head()
108 if (p + len > s) return (UChar* )p; in euckr_left_adjust_char_head()
109 p += len; in euckr_left_adjust_char_head()
[all …]
/PHP-7.0/ext/filter/
H A Dfilter_private.h106 #define PHP_FILTER_TRIM_DEFAULT(p, len) PHP_FILTER_TRIM_DEFAULT_EX(p, len, 1); argument
108 #define PHP_FILTER_TRIM_DEFAULT_EX(p, len, return_if_empty) { \ argument
109 while ((len > 0) && (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\v' || *p == '\n')) { \
110 p++; \
117 …while (p[len-1] == ' ' || p[len-1] == '\t' || p[len-1] == '\r' || p[len-1] == '\v' || p[len-1] == …
/PHP-7.0/ext/pcre/tests/
H A Drecursion_limit.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
6 die("skip no support for \p support PCRE library");
15 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy));
18 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
/PHP-7.0/ext/spl/tests/
H A Dbug45622.phpt7 public $p = 'object property';
14 var_dump(isset($ao->p));
15 var_dump($ao->p);
18 unset($ao->p);
19 var_dump(isset($ao->p));
20 var_dump($ao->p);
23 unset($ao->p);
24 var_dump(isset($ao->p));
25 var_dump($ao->p);
29 var_dump(isset($ao->p));
[all …]
/PHP-7.0/ext/standard/
H A Durl.c109 p = s; in php_url_parse_ex()
112 if (!isalpha(*p) && !isdigit(*p) && *p != '+' && *p != '.' && *p != '-') { in php_url_parse_ex()
123 p++; in php_url_parse_ex()
141 while (p < ue && isdigit(*p)) { in php_url_parse_ex()
145 if ((p == ue || *p == '/') && (p - e) < 7) { in php_url_parse_ex()
187 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex()
266 memcpy(port_buf, p, (e - p)); in php_url_parse_ex()
308 p++; in php_url_parse_ex()
310 ret->fragment = estrndup(p, (e - p)); in php_url_parse_ex()
318 p++; in php_url_parse_ex()
[all …]
/PHP-7.0/tests/classes/
H A Dproperty_override_private_private.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 A::p
34 B::p
H A Dproperty_override_private_protected.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 protected $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 A::p
34 B::p
H A Dproperty_override_private_public.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 public $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 A::p
34 B::p
H A Dproperty_override_protected_protected.phpt7 protected $p = "A::p";
10 echo $this->p . "\n";
16 protected $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 B::p
34 B::p
H A Dproperty_override_protected_public.phpt7 protected $p = "A::p";
10 echo $this->p . "\n";
16 public $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 B::p
34 B::p
H A Dproperty_override_public_public.phpt7 public $p = "A::p";
10 echo $this->p . "\n";
16 public $p = "B::p";
19 echo $this->p . "\n";
32 A::p
33 B::p
34 B::p
H A Dproperty_override_privateStatic_private.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
31 A::p (static)
32 A::p (static)
33 B::p
H A Dproperty_override_privateStatic_privateStatic.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
H A Dproperty_override_privateStatic_protected.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 protected $p = "B::p";
19 echo $this->p . "\n";
31 A::p (static)
32 A::p (static)
33 B::p
H A Dproperty_override_privateStatic_protectedStatic.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 protected static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
H A Dproperty_override_privateStatic_public.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 public $p = "B::p";
19 echo $this->p . "\n";
31 A::p (static)
32 A::p (static)
33 B::p
H A Dproperty_override_privateStatic_publicStatic.phpt7 private static $p = "A::p (static)";
10 echo self::$p . "\n";
16 public static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
H A Dproperty_override_private_privateStatic.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
32 A::p
33 A::p
34 B::p (static)
H A Dproperty_override_private_protectedStatic.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 protected static $p = "B::p (static)";
19 echo self::$p . "\n";
32 A::p
33 A::p
34 B::p (static)
H A Dproperty_override_private_publicStatic.phpt7 private $p = "A::p";
10 echo $this->p . "\n";
16 public static $p = "B::p (static)";
19 echo self::$p . "\n";
32 A::p
33 A::p
34 B::p (static)
H A Dproperty_override_protectedStatic_protectedStatic.phpt7 protected static $p = "A::p (static)";
10 echo self::$p . "\n";
16 protected static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
H A Dproperty_override_protectedStatic_publicStatic.phpt7 protected static $p = "A::p (static)";
10 echo self::$p . "\n";
16 public static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
H A Dproperty_override_publicStatic_publicStatic.phpt7 public static $p = "A::p (static)";
10 echo self::$p . "\n";
16 public static $p = "B::p (static)";
19 echo self::$p . "\n";
30 A::p (static)
31 A::p (static)
32 B::p (static)
/PHP-7.0/ext/fileinfo/libmagic/
H A Dsoftmagic.c854 p->fld = ~p->fld \
942 p->s[sizeof(p->s) - 1] = '\0'; in mconvert()
967 p->h = (short)((p->hs[0]<<8)|(p->hs[1])); in mconvert()
974 ((p->hl[0]<<24)|(p->hl[1]<<16)|(p->hl[2]<<8)|(p->hl[3])); in mconvert()
989 p->h = (short)((p->hs[1]<<8)|(p->hs[0])); in mconvert()
996 ((p->hl[3]<<24)|(p->hl[2]<<16)|(p->hl[1]<<8)|(p->hl[0])); in mconvert()
1014 ((p->hl[1]<<24)|(p->hl[0]<<16)|(p->hl[3]<<8)|(p->hl[2])); in mconvert()
1021 p->l = ((uint32_t)p->hl[0]<<24)|((uint32_t)p->hl[1]<<16)| in mconvert()
1026 p->l = ((uint32_t)p->hl[3]<<24)|((uint32_t)p->hl[2]<<16)| in mconvert()
1034 p->q = ((uint64_t)p->hq[0]<<56)|((uint64_t)p->hq[1]<<48)| in mconvert()
[all …]

Completed in 59 milliseconds

12345678910>>...30