Home
last modified time | relevance | path

Searched refs:is_normalized (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_unicodedata.py379 self.assertTrue(unicodedata.is_normalized("NFC", c2))
380 self.assertTrue(unicodedata.is_normalized("NFC", c4))
382 self.assertTrue(unicodedata.is_normalized("NFD", c3))
383 self.assertTrue(unicodedata.is_normalized("NFD", c5))
385 self.assertTrue(unicodedata.is_normalized("NFKC", c4))
386 self.assertTrue(unicodedata.is_normalized("NFKD", c5))
/external/python/cpython2/Modules/
Dunicodedata.c743 is_normalized(PyObject *self, PyObject *input, int nfc, int k) in is_normalized() function
797 if (is_normalized(self, input, 1, 0)) { in unicodedata_normalize()
804 if (is_normalized(self, input, 1, 1)) { in unicodedata_normalize()
811 if (is_normalized(self, input, 0, 0)) { in unicodedata_normalize()
818 if (is_normalized(self, input, 0, 1)) { in unicodedata_normalize()
/external/mesa3d/src/mesa/main/
Dformat_parser.py429 def is_normalized(self): member in Format
/external/python/cpython3/Doc/library/
Dunicodedata.rst136 .. function:: is_normalized(form, unistr)
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc6004 const bool is_normalized = true; in ConvertCombinedNMS() local
6037 nvinfer1::PluginField{"isNormalized", &is_normalized, in ConvertCombinedNMS()
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1350 New function :func:`~unicodedata.is_normalized` can be used to verify a string
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst529 The implementation of :func:`~unicodedata.is_normalized` has been greatly
D3.8.0a1.rst1686 New function unicodedata.is_normalized, which can check whether a string is