Lines Matching refs:v
195 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
261 foreach ($a as $k => $v) {
262 if (is_numeric($v))
265 echo "\t&enc_to_uni_$v,\n";
338 foreach ($map as $v) {
339 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1])
340 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2]));
347 foreach ($mappy as $k => $v) {
348 echo "\t{ ", sprintf("0x%04X", $k), ", ", sprintf("0x%02X", $v[0]), " },\t/* ",
349 $v[1], " */\n";
466 foreach ($multicp_rows as &$v) { ksort($v); }
467 unset($v);
472 foreach ($multicp_rows as $k => $v) {
475 if (key_exists("default", $v)) {
476 if ($v['default'] == 'GT') /* hack to make > translate to > not GT; */
477 $v['default'] = "gt";
478 echo "\t{ {", sprintf("%02d", count($v) - 1),
479 ",\t\t", sprintf("\"%-21s", $v["default"].'",'), "\t",
480 sprintf("% 2d", strlen($v["default"])), '} },', "\n";
482 echo "\t{ {", sprintf("%02d", count($v)),
485 unset($v["default"]);
486 foreach ($v as $l => $w) {