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";
465 foreach ($multicp_rows as &$v) { ksort($v); }
466 unset($v);
471 foreach ($multicp_rows as $k => $v) {
474 if (key_exists("default", $v)) {
475 if ($v['default'] == 'GT') /* hack to make > translate to > not GT; */
476 $v['default'] = "gt";
477 echo "\t{ {", sprintf("\"%-21s", $v["default"].'",'),
478 "\t", sprintf("%02d", (count($v) - 1)), ",\t\t",
479 sprintf("% 2d", strlen($v["default"])), '} },', "\n";
482 "\t", sprintf("%02d", count($v)), ",\t\t0} },\n";
484 unset($v["default"]);
485 foreach ($v as $l => $w) {