Lines Matching refs:v
192 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
258 foreach ($a as $k => $v) {
259 if (is_numeric($v))
262 echo "\t&enc_to_uni_$v,\n";
335 foreach ($map as $v) {
336 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1])
337 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2]));
344 foreach ($mappy as $k => $v) {
345 echo "\t{ ", sprintf("0x%04X", $k), ", ", sprintf("0x%02X", $v[0]), " },\t/* ",
346 $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("%02d", count($v) - 1),
476 ",\t\t", sprintf("\"%-21s", $v["default"].'",'), "\t",
477 sprintf("% 2d", strlen($v["default"])), '} },', "\n";
479 echo "\t{ {", sprintf("%02d", count($v)),
482 unset($v["default"]);
483 foreach ($v as $l => $w) {