Home
last modified time | relevance | path

Searched refs:oc (Results 1 – 10 of 10) sorted by relevance

/PHP-7.2/ext/reflection/tests/
H A Dproperty_exists.phpt20 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-7.2/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt38 $oc = new stdClass;
39 $oc->a[${f()}] = g();
40 var_dump($oc);
/PHP-7.2/ext/standard/tests/strings/
H A Dchunk_split_variation4.phpt104 oc s
159 oc"
H A Dstr_split_variation5.phpt113 string(9) "oc string"
163 string(10) "oc"
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_compile.c4220 pcre_uint32 oc, od; in add_to_class() local
4240 else if (oc < start && od >= start - 1) start = oc; /* Extend downwards */ in add_to_class()
6665 open_capitem *oc; in compile_branch() local
6672 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
7380 open_capitem *oc; in compile_branch() local
7383 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
7457 open_capitem *oc; in compile_branch() local
7466 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
8056 open_capitem *oc; in compile_branch() local
8075 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
[all …]
H A Dpcre_jit_compile.c482 } oc; member
2644 oc = c; in char_get_othercase_bit()
2660 bit = c ^ oc; in char_get_othercase_bit()
3851 oc++; in scan_prefix()
4537 pcre_uchar oc; in fast_forward_first_char() local
4539 oc = first_char; in fast_forward_first_char()
4743 oc = req_char; in search_requested_char()
6493 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, FALSE); in compile_char1_matchingpath()
6494 bit = c ^ oc; in compile_char1_matchingpath()
6553 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, TRUE); in compile_char1_matchingpath()
[all …]
/PHP-7.2/sapi/cli/
H A Dphp_cli.c570 zend_constant ic, oc, ec; in cli_register_file_handles() local
592 php_stream_to_zval(s_out, &oc.value); in cli_register_file_handles()
600 oc.flags = CONST_CS; in cli_register_file_handles()
601 oc.name = zend_string_init("STDOUT", sizeof("STDOUT")-1, 1); in cli_register_file_handles()
602 oc.module_number = 0; in cli_register_file_handles()
603 zend_register_constant(&oc); in cli_register_file_handles()
/PHP-7.2/ext/gd/libgd/
H A Dgd.c1913 int oc; /* old pixel value */ in gdImageFill() local
1937 oc = gdImageGetPixel(im, x, y); in gdImageFill()
1938 if (oc==nc || x<0 || x>wx2 || y<0 || y>wy2) { in gdImageFill()
1951 if (c != oc) { in gdImageFill()
1971 for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) { in gdImageFill()
1985 for (; x<=wx2 && gdImageGetPixel(im,x, y)==oc; x++) { in gdImageFill()
1993 skip: for (x++; x<=x2 && (gdImageGetPixel(im, x, y)!=oc); x++); in gdImageFill()
2008 int oc; /* old pixel value */ in _gdImageFillTiled() local
2031 oc = gdImageGetPixel(im, x, y); in _gdImageFillTiled()
2039 for (x=x1; x>=0 && (!pts[y][x] && gdImageGetPixel(im,x,y)==oc); x--) { in _gdImageFillTiled()
[all …]
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg.c998 zend_constant ic, oc, ec; in phpdbg_register_file_handles() local
1028 oc.value = zout; in phpdbg_register_file_handles()
1029 oc.flags = CONST_CS; in phpdbg_register_file_handles()
1030 oc.name = zend_string_init(ZEND_STRL("STDOUT"), 0); in phpdbg_register_file_handles()
1031 oc.module_number = 0; in phpdbg_register_file_handles()
1032 zend_hash_del(EG(zend_constants), oc.name); in phpdbg_register_file_handles()
1033 zend_register_constant(&oc); in phpdbg_register_file_handles()
/PHP-7.2/ext/sqlite3/libsqlite/
H A Dsqlite3.c87505 int oc; /* Opcode */
87522 oc = pOp->opcode;
87564 if( (oc & 0x0001)==(OP_SeekGT & 0x0001) ) oc--;
87573 if( (oc & 0x0001)==(OP_SeekLT & 0x0001) ) oc++;
87610 assert( oc!=OP_SeekGT || r.default_rc==-1 );
87611 assert( oc!=OP_SeekLE || r.default_rc==-1 );
87612 assert( oc!=OP_SeekGE || r.default_rc==+1 );
87634 if( oc>=OP_SeekGE ){ assert( oc==OP_SeekGE || oc==OP_SeekGT );
87635 if( res<0 || (res==0 && oc==OP_SeekGT) ){
87650 assert( oc==OP_SeekLT || oc==OP_SeekLE );
[all …]

Completed in 531 milliseconds