Home
last modified time | relevance | path

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

/PHP-7.0/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.0/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt38 $oc = new stdClass;
39 $oc->a[${f()}] = g();
40 var_dump($oc);
/PHP-7.0/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.0/sapi/cli/
H A Dphp_cli.c566 zend_constant ic, oc, ec; in cli_register_file_handles() local
597 ZVAL_COPY_VALUE(&oc.value, &zout); in cli_register_file_handles()
598 oc.flags = CONST_CS; in cli_register_file_handles()
599 oc.name = zend_string_init("STDOUT", sizeof("STDOUT")-1, 1); in cli_register_file_handles()
600 oc.module_number = 0; in cli_register_file_handles()
601 zend_register_constant(&oc); in cli_register_file_handles()
/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_compile.c4217 pcre_uint32 oc, od; in add_to_class() local
4237 else if (oc < start && od >= start - 1) start = oc; /* Extend downwards */ in add_to_class()
6596 open_capitem *oc; in compile_branch() local
6603 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
7288 open_capitem *oc; in compile_branch() local
7291 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
7365 open_capitem *oc; in compile_branch() local
7374 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
7996 open_capitem *oc; in compile_branch() local
8015 for (oc = cd->open_caps; oc != NULL; oc = oc->next) in compile_branch()
[all …]
H A Dpcre_jit_compile.c464 } oc; member
2430 oc = c; in char_get_othercase_bit()
2446 bit = c ^ oc; in char_get_othercase_bit()
3514 oc = othercase; in scan_prefix()
3556 oc++; in scan_prefix()
3836 oc = first_char; in fast_forward_first_char()
4067 oc = req_char; in search_requested_char()
5701 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, FALSE); in compile_char1_matchingpath()
5702 bit = c ^ oc; in compile_char1_matchingpath()
5760 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, TRUE); in compile_char1_matchingpath()
[all …]
/PHP-7.0/ext/gd/libgd/
H A Dgd.c1856 int oc; /* old pixel value */ in gdImageFill() local
1880 oc = gdImageGetPixel(im, x, y); in gdImageFill()
1881 if (oc==nc || x<0 || x>wx2 || y<0 || y>wy2) { in gdImageFill()
1894 if (c != oc) { in gdImageFill()
1914 for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) { in gdImageFill()
1928 for (; x<=wx2 && gdImageGetPixel(im,x, y)==oc; x++) { in gdImageFill()
1936 skip: for (x++; x<=x2 && (gdImageGetPixel(im, x, y)!=oc); x++); in gdImageFill()
1951 int oc; /* old pixel value */ in _gdImageFillTiled() local
1974 oc = gdImageGetPixel(im, x, y); in _gdImageFillTiled()
1982 for (x=x1; x>=0 && (!pts[y][x] && gdImageGetPixel(im,x,y)==oc); x--) { in _gdImageFillTiled()
[all …]
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg.c969 zend_constant ic, oc, ec; in phpdbg_register_file_handles() local
999 oc.value = zout; in phpdbg_register_file_handles()
1000 oc.flags = CONST_CS; in phpdbg_register_file_handles()
1001 oc.name = zend_string_init(ZEND_STRL("STDOUT"), 0); in phpdbg_register_file_handles()
1002 oc.module_number = 0; in phpdbg_register_file_handles()
1003 zend_hash_del(EG(zend_constants), oc.name); in phpdbg_register_file_handles()
1004 zend_register_constant(&oc); in phpdbg_register_file_handles()
/PHP-7.0/ext/sqlite3/libsqlite/
H A Dsqlite3.c80850 int oc; /* Opcode */
80867 oc = pOp->opcode;
80908 if( (oc & 0x0001)==(OP_SeekGT & 0x0001) ) oc--;
80917 if( (oc & 0x0001)==(OP_SeekLT & 0x0001) ) oc++;
80954 assert( oc!=OP_SeekGT || r.default_rc==-1 );
80955 assert( oc!=OP_SeekLE || r.default_rc==-1 );
80957 assert( oc!=OP_SeekLT || r.default_rc==+1 );
80979 if( oc>=OP_SeekGE ){ assert( oc==OP_SeekGE || oc==OP_SeekGT );
80980 if( res<0 || (res==0 && oc==OP_SeekGT) ){
80988 assert( oc==OP_SeekLT || oc==OP_SeekLE );
[all …]

Completed in 516 milliseconds