Searched refs:oc (Results 1 – 9 of 9) sorted by relevance
/PHP-8.0/ext/reflection/tests/ |
H A D | property_exists.phpt | 20 static function test($oc, $props) 24 echo $oc, '::$' , $p2, "\n"; 25 var_dump(property_exists($oc, $p2)); 34 static function test($oc, $props) 38 echo $oc, '::$' , $p2, "\n"; 39 var_dump(property_exists($oc, $p2)); 48 static function test($oc, $props) 52 echo $oc, '::$' , $p2, "\n"; 53 var_dump(property_exists($oc, $p2));
|
/PHP-8.0/tests/lang/ |
H A D | engine_assignExecutionOrder_001.phpt | 38 $oc = new stdClass; 39 $oc->a[${f()}] = g(); 40 var_dump($oc);
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | chunk_split_variation4.phpt | 98 oc s 153 oc"
|
H A D | str_split_variation5.phpt | 105 string(9) "oc string" 155 string(10) "oc"
|
/PHP-8.0/sapi/cli/ |
H A D | php_cli.c | 536 zend_constant ic, oc, ec; in cli_register_file_handles() local 558 php_stream_to_zval(s_out, &oc.value); in cli_register_file_handles() 565 ZEND_CONSTANT_SET_FLAGS(&oc, CONST_CS, 0); in cli_register_file_handles() 566 oc.name = zend_string_init_interned("STDOUT", sizeof("STDOUT")-1, 0); in cli_register_file_handles() 567 zend_register_constant(&oc); in cli_register_file_handles()
|
/PHP-8.0/ext/gd/libgd/ |
H A D | gd.c | 1917 int oc; /* old pixel value */ in gdImageFill() local 1941 oc = gdImageGetPixel(im, x, y); in gdImageFill() 1942 if (oc==nc || x<0 || x>wx2 || y<0 || y>wy2) { in gdImageFill() 1955 if (c != oc) { in gdImageFill() 1975 for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) { in gdImageFill() 1989 for (; x<=wx2 && gdImageGetPixel(im,x, y)==oc; x++) { in gdImageFill() 1998 for (x++; x<=x2 && (gdImageGetPixel(im, x, y)!=oc); x++); in gdImageFill() 2013 int oc; /* old pixel value */ in _gdImageFillTiled() local 2036 oc = gdImageGetPixel(im, x, y); in _gdImageFillTiled() 2060 for(; x<wx2 && (!pts[y][x] && gdImageGetPixel(im,x, y)==oc); x++) { in _gdImageFillTiled() [all …]
|
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg.c | 944 zend_constant ic, oc, ec; in phpdbg_register_file_handles() local 973 oc.value = zout; in phpdbg_register_file_handles() 974 ZEND_CONSTANT_SET_FLAGS(&oc, CONST_CS, 0); in phpdbg_register_file_handles() 975 oc.name = zend_string_init(ZEND_STRL("STDOUT"), 0); in phpdbg_register_file_handles() 976 zend_hash_del(EG(zend_constants), oc.name); in phpdbg_register_file_handles() 977 zend_register_constant(&oc); in phpdbg_register_file_handles()
|
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_jit_compile.c | 534 } oc; member 3513 bit = c ^ oc; in char_get_othercase_bit() 5738 oc = othercase; in scan_prefix() 5754 oc++; in scan_prefix() 6148 PCRE2_UCHAR oc; in fast_forward_first_char() local 6150 oc = first_char; in fast_forward_first_char() 6348 sljit_u32 oc, bit; in search_requested_char() local 6361 oc = req_char; in search_requested_char() 8678 read_char(common, c < oc ? c : oc, c > oc ? c : oc, NULL, 0); in compile_char1_matchingpath() 8744 read_char(common, c < oc ? c : oc, c > oc ? c : oc, backtracks, READ_CHAR_UPDATE_STR_PTR); in compile_char1_matchingpath() [all …]
|
H A D | pcre2_compile.c | 4910 uint32_t oc, od; in add_to_class_internal() local 4915 while ((rc = get_othercase_range(&c, end, &oc, &od)) >= 0) in add_to_class_internal() 4920 PRIV(ucd_caseless_sets) + rc, oc); in add_to_class_internal() 4924 else if (oc >= cb->class_range_start && od <= cb->class_range_end) continue; in add_to_class_internal() 4930 else if (oc < start && od >= start - 1) start = oc; /* Extend downwards */ in add_to_class_internal() 4931 else if (od > end && oc <= end + 1) in add_to_class_internal() 5383 open_capitem *oc; in compile_branch() local 6124 for (oc = cb->open_caps; in compile_branch() 6125 oc != NULL && oc->assert_depth >= cb->assert_depth; in compile_branch() 6126 oc = oc->next) in compile_branch() [all …]
|
Completed in 86 milliseconds