Home
last modified time | relevance | path

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

12345678910>>...30

/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Deuc_tw.c52 euctw_mbc_enc_len(const UChar* p) in euctw_mbc_enc_len() argument
54 return EncLen_EUCTW[*p]; in euctw_mbc_enc_len()
58 euctw_mbc_to_code(const UChar* p, const UChar* end) in euctw_mbc_to_code() argument
60 return onigenc_mbn_mbc_to_code(ONIG_ENCODING_EUC_TW, p, end); in euctw_mbc_to_code()
91 const UChar *p; in euctw_left_adjust_char_head() local
95 p = s; in euctw_left_adjust_char_head()
97 while (!euctw_islead(*p) && p > start) p--; in euctw_left_adjust_char_head()
98 len = enclen(ONIG_ENCODING_EUC_TW, p); in euctw_left_adjust_char_head()
99 if (p + len > s) return (UChar* )p; in euctw_left_adjust_char_head()
100 p += len; in euctw_left_adjust_char_head()
[all …]
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-5.5/ext/ereg/regex/
H A Dregcomp.ih7 static void p_ere(register struct parse *p, int stop);
8 static void p_ere_exp(register struct parse *p);
9 static void p_str(register struct parse *p);
12 static int p_count(register struct parse *p);
13 static void p_bracket(register struct parse *p);
17 static unsigned char p_b_symbol(register struct parse *p);
20 static void bothcases(register struct parse *p, int ch);
22 static void nonnewline(register struct parse *p);
24 static int seterr(register struct parse *p, int e);
25 static cset *allocset(register struct parse *p);
[all …]
H A Dsplit.c28 p--;
44 *fp++ = p;
68 *fp++ = p;
81 p--;
88 p--;
95 p--;
98 p++;
112 *fp++ = p;
115 c = *p++;
127 c = *p++;
[all …]
/PHP-5.5/ext/standard/
H A Durl.c112 if (!isalpha(*p) && !isdigit(*p) && *p != '+' && *p != '.' && *p != '-') { in php_url_parse_ex()
119 p++; in php_url_parse_ex()
141 if ((*p == '\0' || *p == '/') && (p - e) < 7) { in php_url_parse_ex()
190 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex()
269 for(p = e; p >= s && *p != ':'; p--); in php_url_parse_ex()
272 if (p >= s && *p == ':') { in php_url_parse_ex()
283 memcpy(port_buf, p, (e - p)); in php_url_parse_ex()
341 ret->query = estrndup(p, (pp-p)); in php_url_parse_ex()
347 ret->query = estrndup(p, (ue-p)); in php_url_parse_ex()
357 p++; in php_url_parse_ex()
[all …]
/PHP-5.5/ext/filter/
H A Dfilter_private.h103 #define PHP_FILTER_TRIM_DEFAULT(p, len) PHP_FILTER_TRIM_DEFAULT_EX(p, len, 1); argument
105 #define PHP_FILTER_TRIM_DEFAULT_EX(p, len, return_if_empty) { \ argument
106 while ((len > 0) && (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\v' || *p == '\n')) { \
107 p++; \
114 …while (p[len-1] == ' ' || p[len-1] == '\t' || p[len-1] == '\r' || p[len-1] == '\v' || p[len-1] == …
/PHP-5.5/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");
14 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy));
17 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
/PHP-5.5/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-5.5/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)

Completed in 86 milliseconds

12345678910>>...30