Searched refs:oc (Results 1 – 9 of 9) sorted by relevance
/PHP-8.2/ext/reflection/tests/ |
H A D | property_exists.phpt | 21 static function test($oc, $props) 25 echo $oc, '::$' , $p2, "\n"; 26 var_dump(property_exists($oc, $p2)); 35 static function test($oc, $props) 39 echo $oc, '::$' , $p2, "\n"; 40 var_dump(property_exists($oc, $p2)); 49 static function test($oc, $props) 53 echo $oc, '::$' , $p2, "\n"; 54 var_dump(property_exists($oc, $p2));
|
/PHP-8.2/tests/lang/ |
H A D | engine_assignExecutionOrder_001.phpt | 38 $oc = new stdClass; 39 $oc->a[${f()}] = g(); 40 var_dump($oc);
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | chunk_split_variation4.phpt | 98 oc s 153 oc"
|
H A D | str_split_variation5.phpt | 101 string(9) "oc string" 151 string(10) "oc"
|
/PHP-8.2/sapi/cli/ |
H A D | php_cli.c | 533 zend_constant ic, oc, ec; in cli_register_file_handles() local 557 php_stream_to_zval(s_out, &oc.value); in cli_register_file_handles() 564 ZEND_CONSTANT_SET_FLAGS(&oc, CONST_CS, 0); in cli_register_file_handles() 565 oc.name = zend_string_init_interned("STDOUT", sizeof("STDOUT")-1, 0); in cli_register_file_handles() 566 zend_register_constant(&oc); in cli_register_file_handles()
|
/PHP-8.2/sapi/phpdbg/ |
H A D | phpdbg.c | 890 zend_constant ic, oc, ec; in phpdbg_register_file_handles() local 919 oc.value = zout; in phpdbg_register_file_handles() 920 ZEND_CONSTANT_SET_FLAGS(&oc, CONST_CS, 0); in phpdbg_register_file_handles() 921 oc.name = zend_string_init(ZEND_STRL("STDOUT"), 0); in phpdbg_register_file_handles() 922 zend_hash_del(EG(zend_constants), oc.name); in phpdbg_register_file_handles() 923 zend_register_constant(&oc); in phpdbg_register_file_handles()
|
/PHP-8.2/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.2/ext/pcre/pcre2lib/ |
H A D | pcre2_jit_compile.c | 537 } oc; member 3583 bit = c ^ oc; in char_get_othercase_bit() 5816 oc = othercase; in scan_prefix() 5832 oc++; in scan_prefix() 6226 PCRE2_UCHAR oc; in fast_forward_first_char() local 6228 oc = first_char; in fast_forward_first_char() 6497 sljit_u32 oc, bit; in search_requested_char() local 6510 oc = req_char; in search_requested_char() 8986 read_char(common, c < oc ? c : oc, c > oc ? c : oc, NULL, 0); in compile_char1_matchingpath() 9052 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 | 5017 uint32_t oc, od; in add_to_class_internal() local 5022 while ((rc = get_othercase_range(&c, end, &oc, &od)) >= 0) in add_to_class_internal() 5027 PRIV(ucd_caseless_sets) + rc, oc); in add_to_class_internal() 5031 else if (oc >= cb->class_range_start && od <= cb->class_range_end) continue; in add_to_class_internal() 5037 else if (oc < start && od >= start - 1) start = oc; /* Extend downwards */ in add_to_class_internal() 5038 else if (od > end && oc <= end + 1) in add_to_class_internal() 5489 open_capitem *oc; in compile_branch() local 6233 for (oc = cb->open_caps; in compile_branch() 6234 oc != NULL && oc->assert_depth >= cb->assert_depth; in compile_branch() 6235 oc = oc->next) in compile_branch() [all …]
|
Completed in 80 milliseconds