Home
last modified time | relevance | path

Searched refs:C (Results 151 – 175 of 676) sorted by relevance

12345678910>>...28

/PHP-5.5/Zend/tests/
H A Djump14.phpt10 goto C;
20 C:
H A Dbug68370.phpt5 class C {
11 $c = new C();
H A Dget_class_methods_003.phpt12 class C {
22 class B extends C implements A {
31 var_dump(get_class_methods('C'));
H A Dbug55825.phpt11 class C { use T1; }
12 $c1 = new C;
H A Dbug43200_2.phpt14 class C extends B {
20 $o = new C();
/PHP-5.5/ext/opcache/tests/
H A Dblacklist-win32.phpt25 [0] => C:\path\to\foo
26 [1] => C:\path\to\foo2
27 [2] => C:\path\to\bar
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt43 class C {
49 C::${f()} = g();
50 var_dump(C::$name);
53 C::$a[f()] = g();
54 var_dump(C::$a);
70 C::$string[getOffset()] = newChar();
71 var_dump(C::$string);
H A DreturnByReference.007.phpt7 class C {
21 return C::$functionToCall();
28 $b = &C::returnFunctionCallByRef('returnConstantByValue');
35 $b = &C::returnFunctionCallByRef('returnConstantByRef');
42 $b = &C::returnFunctionCallByRef('returnVariableByRef');
/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlentities21.phpt78 0000C: 262378464646443b 262378464646443b
94 0000C: 262378464646443b 262378464646443b
110 0000C: 0c 0c
126 0000C: 262378464646443b 262378464646443b
142 0000C: 262378464646443b 262378464646443b
158 0000C: 262378464646443b 262378464646443b
174 0000C: 0c 0c
190 0000C: 262378464646443b 262378464646443b
H A Dpack.phpt16 print_r(unpack("C", pack("C", -127)));
17 print_r(unpack("C", pack("C", 127)));
18 print_r(unpack("C", pack("C", 255)));
19 print_r(unpack("C", pack("C", -129)));
/PHP-5.5/tests/basic/
H A Dreq60524-win.phpt4 sys_temp_dir=C:\Windows
13 C:\\Windows
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_hasConstant_001.phpt8 class C {
12 class D extends C {
16 $rc = new ReflectionClass("C");
H A Dbug30856.phpt6 const C = 'test';
7 static $a = bogus::C;
H A DReflectionClass_setStaticPropertyValue_002.phpt8 class C {
12 $rc = new ReflectionClass('C');
56 Class C does not have a property named
57 Class C does not have a property named 1.5
H A DReflectionObject_getConstant_error.phpt5 class C {
9 $rc = new ReflectionObject(new C);
17 var_dump($rc->getConstant(new C));
/PHP-5.5/ext/filter/tests/
H A D027.phpt23 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
26 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
29 string(75) "%3F%3E%3C%21%40%23%24%25%5E%26%2A%28%29%7D%7B%7EQwertyuilfdsasdfgmnbvcxcvbn"
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_uuencode.c126 int A, B, C, D = UUDEC(c); in mbfl_filt_conv_uudec() local
129 C = (filter->cache) & 0xff; in mbfl_filt_conv_uudec()
134 CK((*filter->output_function)( (B << 4) | (C >> 2), filter->data)); in mbfl_filt_conv_uudec()
136 CK((*filter->output_function)( (C << 6) | D, filter->data)); in mbfl_filt_conv_uudec()
/PHP-5.5/tests/classes/
H A Dconstants_error_004.phpt5 class C
10 $a = new C();
H A Dinterface_optional_arg_003.phpt7 class C implements I {
13 $c = new C;
/PHP-5.5/ext/spl/tests/
H A Diterator_013.phpt33 $it->append(new ArrayIterator(array(2 => 'C', 3 => 'D')));
59 2=>C
64 2=>C
H A Diterator_020.phpt33 $it->append(new ArrayIterator(array(2 => 'C', 3 => 'D')));
59 2=>C
64 2=>C
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_010.phpt18 Class C implements Serializable {
28 var_dump(serialize(new C));
36 C::serialize() must return a string or NULL
/PHP-5.5/ext/pgsql/tests/
H A Dlcmess.inc3 function _skip_lc_messages($lc_messages = 'C')
10 function _set_lc_messages($lc_messages = 'C')
/PHP-5.5/ext/standard/tests/file/
H A Dbasename-win32.phpt58 array("C:\\temp\\bar"),
59 array("C:\\temp\\bar", ""),
60 array("C:\\temp\\bar", NULL),
61 array("C:\\temp\\bar", ' '),
62 array("C:\\temp\\bar.tar", ".tar"),
63 array("C:\\temp\\bar.tar", "~"),
64 array("C:\\temp\\bar.tar\\", "~"),
65 array("C:\\temp\\bar.tar\\", ""),
66 array("C:\\temp\\bar.tar", NULL),
67 array("C:\\temp\\bar.tar", ''),
[all …]
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c622 if (C->is_long) { in odbc_stmt_get_col()
631 rc = SQLGetData(S->stmt, colno+1, C->is_unicode ? SQL_C_BINARY : SQL_C_CHAR, C->data, in odbc_stmt_get_col()
632 256, &C->fetched_len); in odbc_stmt_get_col()
652 buf = estrndup(C->data, 256); in odbc_stmt_get_col()
656 C->fetched_len = 0; in odbc_stmt_get_col()
671 used = used + C->fetched_len; in odbc_stmt_get_col()
687 if (C->is_unicode) { in odbc_stmt_get_col()
706 } else if (C->fetched_len >= 0) { in odbc_stmt_get_col()
708 *ptr = C->data; in odbc_stmt_get_col()
709 *len = C->fetched_len; in odbc_stmt_get_col()
[all …]

Completed in 24 milliseconds

12345678910>>...28