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