Home
last modified time | relevance | path

Searched refs:ascii_table (Results 1 – 5 of 5) sorted by relevance

/third_party/glib/glib/
Dupdate-gtranslit.py327 ascii_table = ""
358 existing = ascii_table.find(value)
360 start = len(ascii_table)
362 ascii_table += value
363 ascii_range = encode_range(start, len(ascii_table))
400 ", ".join(str(ord(c)) for c in ascii_table),
Dgtranslit-data.h5 static const gchar ascii_table[] = { 40, 67, 41, 60, 60, 40, 82, 41, 62, 62, 32, 49, 47, 52, 32, 32… variable
Dgtranslit.c114 return get_ascii_item(ascii_table, hit->ascii); in lookup_in_mapping()
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/
Drtmputils.c260 static const gchar ascii_table[128] = { variable
316 if (G_LIKELY (c < G_N_ELEMENTS (ascii_table))) { in gst_rtmp_string_print_escaped()
317 if (ascii_table[c]) { in gst_rtmp_string_print_escaped()
/third_party/python/Objects/
Dunicodeobject.c9351 Py_UCS1 ascii_table[128], ch, ch2; in unicode_fast_translate() local
9359 memset(ascii_table, 0xff, 128); in unicode_fast_translate()
9370 ch2 = ascii_table[ch]; in unicode_fast_translate()
9373 ascii_table); in unicode_fast_translate()
9378 ch2 = ascii_table[ch]; in unicode_fast_translate()