Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 176) sorted by relevance

12345678

/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_config.c81 *((int *)where) = 0; in pcre_config()
85 *((int *)where) = 1; in pcre_config()
87 *((int *)where) = 0; in pcre_config()
94 *((int *)where) = 0; in pcre_config()
98 *((int *)where) = 1; in pcre_config()
100 *((int *)where) = 0; in pcre_config()
107 *((int *)where) = 0; in pcre_config()
111 *((int *)where) = 1; in pcre_config()
113 *((int *)where) = 0; in pcre_config()
120 *((int *)where) = 1; in pcre_config()
[all …]
H A Dpcre_fullinfo.c69 int what, void *where) in pcre_fullinfo() argument
73 int what, void *where) in pcre_fullinfo()
77 int what, void *where) in pcre_fullinfo()
117 *((size_t *)where) = in pcre_fullinfo()
123 *((size_t *)where) = 0; in pcre_fullinfo()
136 *((int *)where) = in pcre_fullinfo()
142 *((pcre_uint32 *)where) = in pcre_fullinfo()
147 *((int *)where) = in pcre_fullinfo()
162 *((int *)where) = in pcre_fullinfo()
174 *((int *)where) = in pcre_fullinfo()
[all …]
/PHP-7.1/ext/fileinfo/libmagic/
H A Dis_tar.c133 from_oct(int digs, const char *where) in from_oct() argument
137 while (isspace((unsigned char)*where)) { /* Skip spaces */ in from_oct()
138 where++; in from_oct()
143 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */ in from_oct()
144 value = (value << 3) | (*where++ - '0'); in from_oct()
148 if (digs > 0 && *where && !isspace((unsigned char)*where)) in from_oct()
/PHP-7.1/ext/com_dotnet/
H A Dcom_dotnet.c129 char *where = ""; in dotnet_init() local
137 where = "CoCreateInstance"; in dotnet_init()
145 where = "ICorRuntimeHost_Start\n"; in dotnet_init()
155 where = "QI: System._AppDomain"; in dotnet_init()
177 *p_where = where; in dotnet_init()
197 char *where = ""; in PHP_FUNCTION() local
205 hr = dotnet_init(&where); in PHP_FUNCTION()
231 where = "QI: System._AppDomain"; in PHP_FUNCTION()
266 where = "CreateInstance"; in PHP_FUNCTION()
277 where = "QI: IObjectHandle"; in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/pdo_mysql/tests/
H A Dbug_61207.phpt19 select * from test where id = ?;
20 update test set id = 2 where id = ?;');
34 $handle2 = $db->prepare('select * from test where id = ?;
35 update test set id = 1 where id = ?;');
50 $handle3 = $db->prepare('update test set id = 2 where id = ?;
51 select * from test where id = ?;');
67 update test set id = 2 where id = ?;
68 select * from test where id = ?;');
/PHP-7.1/ext/interbase/tests/
H A D006.phpt57 $sel = ibase_query("select * from test6 where iter = ?", $iter);
133 "select iter from test6 where v_char = ?", $v_char)) ||
139 "select iter from test6 where v_date = ?", $v_date)) ||
145 "select iter from test6 where v_decimal = ?", $v_decimal)) ||
151 "select iter from test6 where v_integer = ?", $v_integer)) ||
157 "select iter from test6 where v_numeric = ?", $v_numeric)) ||
163 "select iter from test6 where v_smallint = ?", $v_smallint)) ||
169 "select iter from test6 where v_varchar = ?", $v_varchar)) ||
198 where v_integer between ? and ?");
H A D007.phpt72 $sel = ibase_query("select * from test7 where iter = $iter");
135 "select iter from test7 where v_char[$iter] LIKE ?", $v_char[$iter]."%")) ||
142 "select iter from test7 where v_date[$iter] = ?", $v_date[$iter])) ||
148 "select iter from test7 where v_decimal[$iter] = ?", $v_decimal[$iter])) ||
154 "select iter from test7 where v_integer[$iter] = ?", $v_integer[$iter])) ||
160 "select iter from test7 where v_numeric[$iter] = ?", $v_numeric[$iter])) ||
166 "select iter from test7 where v_smallint[$iter] = ?", $v_smallint[$iter])) ||
/PHP-7.1/ext/dba/libcdb/
H A Dcdb_make.c146 uint32 where; in cdb_make_finish() local
204 where = (hp->h >> 8) % len; in cdb_make_finish()
205 while (c->hash[where].p) in cdb_make_finish()
206 if (++where == len) in cdb_make_finish()
207 where = 0; in cdb_make_finish()
208 c->hash[where] = *hp++; in cdb_make_finish()
/PHP-7.1/ext/oci8/tests/
H A Dbind_query.phpt27 $s = oci_parse($c, "select ename from bind_query_tab where empno = :eno");
35 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
46 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
H A Ddefine5.phpt24 $stmt = oci_parse($c, "select string from define5_tab where id = 1");
33 $stmt = oci_parse($c, "select string from define5_tab where id = 1");
42 $stmt = oci_parse($c, "select string from define5_tab where id = 2");
H A Dimp_res_2.phpt28 open c1 for select * from dual where 1 = 0;
37 open c1 for select * from dual where 1 = 0;
44 open c1 for select * from dual where 1 = 0;
H A Dfetch_all4.phpt24 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
33 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
H A Dxmltype_02.phpt29 $s = oci_parse($c, "delete from xmltype_02_tab where warehouse_id = :id");
63 from xmltype_02_tab where warehouse_id = :id');
84 where warehouse_id = :id');
94 from xmltype_02_tab where warehouse_id = :id');
H A Dbind_long.phpt31 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 1");
49 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 2");
H A Dbind_rowid.phpt32 $s = oci_parse($c, 'select rowid, address from rid_tab where id = :l_bv for update');
44 $s = oci_parse($c,'update rid_tab set address = :a_bv where rowid = :r_bv');
H A Dconn_attr.inc53 $sel_stmt="select " .$attr. " from v\$session where sid =
54 (select sid from v\$session where audsid =
129 $sel_stmt="select " .$attr. " from v\$session where sid =
130 (select sid from v\$session where audsid = sys_context('userenv','sessionid')) order by 1";
H A Dlob_001.phpt42 $s = oci_parse($c, "select b1 from lob_001_tab where id = 1");
54 $s = oci_parse($c, "select b1 from lob_001_tab where id = 2");
/PHP-7.1/tests/lang/
H A Dbug21961.phpt17 function getdrunk($where)
19 $this->bars[] = new bar($where);
/PHP-7.1/Zend/tests/generators/
H A Dthrow_uncaught.phpt2 Generator::throw() where the exception is not caught in the generator
H A Dthrow_caught.phpt2 Generator::throw() where the exception is caught in the generator
/PHP-7.1/sapi/phpdbg/
H A Dxml.md280 - &lt;literal id="" />: where id is the internal identifier of the literal
304 - &lt;classsource /> where the class was defined, if there are no attributes, location is unknown, …
323 …- current: this attribute is set to "current" if that line is the line where the executor currentl…
362 - then comes a &lt;printoplineinfo type="" /> where type is either "User" or "Internal"
368 - startline: the first line of code where the method or function is defined
369 - endline: the lastt line of code where the method or function is defined
370 - file: the file of code where the method or function is defined
515 - a general error is type="wrongargs" where a wrong argument was passed to a subcommand; tag is the…
554 - if no further argument is passed, it emits current state in a &lt;setoplog active="" /> where act…
559 - if the boolean switch is omitted, it emits current state in a &lt;setquiet active="" /> where act…
[all …]
/PHP-7.1/ext/spl/tests/
H A Diterator_071.phpt2 SPL: RecursiveIteratorIterator - Test where the case is RS_SELF and mode is CHILD_FIRST
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_prepare.phpt68 $where = 2;
69 if (!mysqli_stmt_bind_param($stmt, 'ii', $id, $where) || !mysqli_stmt_execute($stmt))
76 $where = 3;
77 if (!mysqli_stmt_bind_param($stmt, 'i', $where) || !mysqli_stmt_execute($stmt))
/PHP-7.1/ext/standard/tests/url/
H A Dbug52327.phpt11 string(51) "The '=' symbols aren't allowed where i put them o.O"
/PHP-7.1/ext/pcre/tests/
H A Dpreg_match_variation1.phpt10 //test passing in the same variable where 1 is by value, the other is a different

Completed in 83 milliseconds

12345678