Lines Matching refs:tmp
13 $tmp = NULL;
23 if (false !== ($tmp = @$res->data_seek(0)))
24 printf("[002] Expecting false, got %s/%s\n", gettype($tmp), $tmp);
29 if (NULL !== ($tmp = @$res->data_seek()))
30 printf("[004] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
32 if (NULL !== ($tmp = @$res->data_seek($link)))
33 printf("[005] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
35 if (NULL !== ($tmp = @$res->data_seek($link, $link)))
36 printf("[006] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
38 if (true !== ($tmp = $res->data_seek(3)))
39 printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
45 if (true !== ($tmp = $res->data_seek(0)))
46 printf("[009] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
52 if (false !== ($tmp = $res->data_seek(4)))
53 printf("[011] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
55 if (false !== ($tmp = $res->data_seek(-1)))
56 printf("[012] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
63 if (false !== ($tmp = $res->data_seek(3)))
64 printf("[014] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
68 if (false !== ($tmp = $res->data_seek(1)))
69 printf("[015] Expecting false, got %s/%s\n", gettype($tmp), $tmp);