Home
last modified time | relevance | path

Searched refs:PyUnicode_CompareWithASCIIString (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Modules/
Dunicodedata.c887 if (PyUnicode_CompareWithASCIIString(form, "NFC") == 0) { in unicodedata_UCD_is_normalized_impl()
890 else if (PyUnicode_CompareWithASCIIString(form, "NFKC") == 0) { in unicodedata_UCD_is_normalized_impl()
894 else if (PyUnicode_CompareWithASCIIString(form, "NFD") == 0) { in unicodedata_UCD_is_normalized_impl()
897 else if (PyUnicode_CompareWithASCIIString(form, "NFKD") == 0) { in unicodedata_UCD_is_normalized_impl()
950 if (PyUnicode_CompareWithASCIIString(form, "NFC") == 0) { in unicodedata_UCD_normalize_impl()
958 if (PyUnicode_CompareWithASCIIString(form, "NFKC") == 0) { in unicodedata_UCD_normalize_impl()
966 if (PyUnicode_CompareWithASCIIString(form, "NFD") == 0) { in unicodedata_UCD_normalize_impl()
974 if (PyUnicode_CompareWithASCIIString(form, "NFKD") == 0) { in unicodedata_UCD_normalize_impl()
D_testmultiphase.c235 PyUnicode_CompareWithASCIIString( in _StateAccessType_increment_count_noclinic()
D_testcapimodule.c3185 result = PyUnicode_CompareWithASCIIString(py_s, "str"); in test_unicode_compare_with_ascii()
/third_party/python/Python/
Dsuggestions.c155 if (PyUnicode_CompareWithASCIIString(name, item_str) == 0) { in calculate_suggestions()
Dpylifecycle.c2662 && PyUnicode_CompareWithASCIIString(key, "stdlib_module_names") == 0) { in _Py_DumpExtensionModules()
2977 (PyUnicode_CompareWithASCIIString(filename, "<stdin>") == 0) || in _Py_FdIsInteractive()
2978 (PyUnicode_CompareWithASCIIString(filename, "???") == 0); in _Py_FdIsInteractive()
Dpythonrun.c434 if (PyUnicode_CompareWithASCIIString(filename, "<stdin>") != 0 && in _PyRun_SimpleFileObject()
Dspecialize.c583 if (PyUnicode_CompareWithASCIIString(name, "__class__") == 0) { in analyze_descriptor()
/third_party/python/Include/
Dunicodeobject.h992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
/third_party/python/Modules/_decimal/
D_decimal.c1123 if (PyUnicode_CompareWithASCIIString(name, "traps") == 0) { in context_getattr()
1128 if (PyUnicode_CompareWithASCIIString(name, "flags") == 0) { in context_getattr()
1148 if (PyUnicode_CompareWithASCIIString(name, "traps") == 0) { in context_setattr()
1151 if (PyUnicode_CompareWithASCIIString(name, "flags") == 0) { in context_setattr()
2499 if (PyUnicode_CompareWithASCIIString(tmp, "F") == 0) { in dectuple_as_str()
2503 else if (PyUnicode_CompareWithASCIIString(tmp, "n") == 0) { in dectuple_as_str()
2506 else if (PyUnicode_CompareWithASCIIString(tmp, "N") == 0) { in dectuple_as_str()
/third_party/python/Modules/_sqlite/
Dmodule.c75 if (PyUnicode_CompareWithASCIIString(item, "factory") == 0) { in module_connect()
/third_party/python/Parser/
Dpegen.c893 PyUnicode_CompareWithASCIIString(filename_ob, "<stdin>") == 0) { in _PyPegen_run_parser_from_file_pointer()
Daction_helpers.c1066 if (PyUnicode_CompareWithASCIIString(name->v.Name.id, candidates[i]) == 0) { in _PyPegen_check_legacy_stmt()
/third_party/python/PC/
Dpython3dll.c639 EXPORT_FUNC(PyUnicode_CompareWithASCIIString)
/third_party/python/Doc/data/
Dstable_abi.dat721 function,PyUnicode_CompareWithASCIIString,3.2,,
Drefcounts.dat2651 PyUnicode_CompareWithASCIIString:int:::
2652 PyUnicode_CompareWithASCIIString:PyObject*:uni:0:
2653 PyUnicode_CompareWithASCIIString:const char*:string::
/third_party/python/Programs/
D_testembed.c1152 if (PyUnicode_CompareWithASCIIString(path, "$$test-filename") == 0) { in _open_code_hook()
/third_party/python/Misc/
Dstable_abi.toml1560 [function.PyUnicode_CompareWithASCIIString]
DNEWS25999 - bpo-28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
28384 - bpo-28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
32487 - bpo-28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
DHISTORY13085 - Make PyUnicode_CompareWithASCIIString return not equal if the Python string
/third_party/python/Doc/c-api/
Dunicode.rst1498 .. c:function:: int PyUnicode_CompareWithASCIIString(PyObject *uni, const char *string)
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/pipeline/jit/pi/graph_capture/
Dgraph_build.cc3326 return !PyUnicode_CompareWithASCIIString(k, "sens_param"); in GetGradSens()
/third_party/python/Doc/whatsnew/
D3.2.rst2579 * The :c:func:`PyUnicode_CompareWithASCIIString` function now returns *not
/third_party/python/Objects/
Dunicodeobject.c11198 PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str) in PyUnicode_CompareWithASCIIString() function