Searched refs:eaw (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_unicodedata.py | 218 eaw = self.db.east_asian_width 219 self.assertRaises(TypeError, eaw, b'a') 220 self.assertRaises(TypeError, eaw, bytearray()) 221 self.assertRaises(TypeError, eaw, '') 222 self.assertRaises(TypeError, eaw, 'ra') 223 self.assertEqual(eaw('\x1e'), 'N') 224 self.assertEqual(eaw('\x20'), 'Na') 225 self.assertEqual(eaw('\uC894'), 'W') 226 self.assertEqual(eaw('\uFF66'), 'H') 227 self.assertEqual(eaw('\uFF1 [all...] |
/third_party/node/deps/npm/node_modules/eastasianwidth/ |
H A D | eastasianwidth.js | 1 var eaw = {}; 4 window.eastasianwidth = eaw; 6 module.exports = eaw; 9 eaw.eastAsianWidth = function(character) { 262 eaw.characterLength = function(character) { 276 eaw.length = function(string) { 285 eaw.slice = function(text, start, end) { 286 textLen = eaw.length(text) 300 var charLen = eaw.length(char);
|
/third_party/rust/crates/unicode-width/scripts/ |
H A D | unicode.py | 107 with fetch_open("EastAsianWidth.txt") as eaw: 121 for line in eaw.readlines():
|
/third_party/node/src/ |
H A D | node_i18n.cc | 786 const int eaw = u_getIntPropertyValue(codepoint, UCHAR_EAST_ASIAN_WIDTH); in GetColumnWidth() local 787 switch (eaw) { in GetColumnWidth()
|
Completed in 5 milliseconds