Lines Matching refs:v
193 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
259 foreach ($a as $k => $v) {
260 if (is_numeric($v))
263 echo "\t&enc_to_uni_$v,\n";
336 foreach ($map as $v) {
337 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1])
338 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2]));
345 foreach ($mappy as $k => $v) {
346 echo "\t{ ", sprintf("0x%04X", $k), ", ", sprintf("0x%02X", $v[0]), " },\t/* ",
347 $v[1], " */\n";
463 foreach ($multicp_rows as &$v) { ksort($v); }
464 unset($v);
469 foreach ($multicp_rows as $k => $v) {
472 if (key_exists("default", $v)) {
473 if ($v['default'] == 'GT') /* hack to make > translate to > not GT; */
474 $v['default'] = "gt";
475 echo "\t{ {", sprintf("\"%-21s", $v["default"].'",'),
476 "\t", sprintf("%02d", (count($v) - 1)), ",\t\t",
477 sprintf("% 2d", strlen($v["default"])), '} },', "\n";
480 "\t", sprintf("%02d", count($v)), ",\t\t0} },\n";
482 unset($v["default"]);
483 foreach ($v as $l => $w) {