Lines Matching refs:v
190 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
256 foreach ($a as $k => $v) {
257 if (is_numeric($v))
260 echo "\t&enc_to_uni_$v,\n";
333 foreach ($map as $v) {
334 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1])
335 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2]));
342 foreach ($mappy as $k => $v) {
343 echo "\t{ ", sprintf("0x%04X", $k), ", ", sprintf("0x%02X", $v[0]), " },\t/* ",
344 $v[1], " */\n";
460 foreach ($multicp_rows as &$v) { ksort($v); }
461 unset($v);
466 foreach ($multicp_rows as $k => $v) {
469 if (key_exists("default", $v)) {
470 if ($v['default'] == 'GT') /* hack to make > translate to > not GT; */
471 $v['default'] = "gt";
472 echo "\t{ {", sprintf("\"%-21s", $v["default"].'",'),
473 "\t", sprintf("%02d", (count($v) - 1)), ",\t\t",
474 sprintf("% 2d", strlen($v["default"])), '} },', "\n";
477 "\t", sprintf("%02d", count($v)), ",\t\t0} },\n";
479 unset($v["default"]);
480 foreach ($v as $l => $w) {