Lines Matching refs:ToUnicodeCodepoint

276 char32 ToUnicodeCodepoint(const char* unicode_char) {
377 make_pair(ToUnicodeCodepoint("-"), '-'));
379 make_pair(ToUnicodeCodepoint("\xEF\xBC\x8D" /* "-" */), '-'));
381 make_pair(ToUnicodeCodepoint("\xE2\x80\x90" /* "‐" */), '-'));
383 make_pair(ToUnicodeCodepoint("\xE2\x80\x91" /* "‑" */), '-'));
385 make_pair(ToUnicodeCodepoint("\xE2\x80\x92" /* "‒" */), '-'));
387 make_pair(ToUnicodeCodepoint("\xE2\x80\x93" /* "–" */), '-'));
389 make_pair(ToUnicodeCodepoint("\xE2\x80\x94" /* "—" */), '-'));
391 make_pair(ToUnicodeCodepoint("\xE2\x80\x95" /* "―" */), '-'));
393 make_pair(ToUnicodeCodepoint("\xE2\x88\x92" /* "−" */), '-'));
395 make_pair(ToUnicodeCodepoint("/"), '/'));
397 make_pair(ToUnicodeCodepoint("\xEF\xBC\x8F" /* "/" */), '/'));
399 make_pair(ToUnicodeCodepoint(" "), ' '));
401 make_pair(ToUnicodeCodepoint("\xE3\x80\x80" /* " " */), ' '));
403 make_pair(ToUnicodeCodepoint("\xE2\x81\xA0"), ' '));
405 make_pair(ToUnicodeCodepoint("."), '.'));
407 make_pair(ToUnicodeCodepoint("\xEF\xBC\x8E" /* "." */), '.'));
410 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("A"), '2'));
411 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("B"), '2'));
412 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("C"), '2'));
413 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("D"), '3'));
414 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("E"), '3'));
415 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("F"), '3'));
416 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("G"), '4'));
417 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("H"), '4'));
418 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("I"), '4'));
419 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("J"), '5'));
420 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("K"), '5'));
421 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("L"), '5'));
422 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("M"), '6'));
423 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("N"), '6'));
424 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("O"), '6'));
425 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("P"), '7'));
426 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("Q"), '7'));
427 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("R"), '7'));
428 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("S"), '7'));
429 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("T"), '8'));
430 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("U"), '8'));
431 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("V"), '8'));
432 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("W"), '9'));
433 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("X"), '9'));
434 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("Y"), '9'));
435 alpha_mappings_.insert(make_pair(ToUnicodeCodepoint("Z"), '9'));