Searched refs:PyUnicode_CompareWithASCIIString (Results 1 – 25 of 29) sorted by relevance
12
/aosp_15_r20/external/python/cpython3/Modules/ |
D | unicodedata.c | 887 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.c | 235 PyUnicode_CompareWithASCIIString( in _StateAccessType_increment_count_noclinic()
|
D | _testcapimodule.c | 3185 result = PyUnicode_CompareWithASCIIString(py_s, "str"); in test_unicode_compare_with_ascii()
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0rc1.rst | 102 PyUnicode_CompareWithASCIIString() now never raises exceptions.
|
D | 3.5.3rc1.rst | 1797 PyUnicode_CompareWithASCIIString() now never raises exceptions.
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | suggestions.c | 155 if (PyUnicode_CompareWithASCIIString(name, item_str) == 0) { in calculate_suggestions()
|
D | pylifecycle.c | 2662 && 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()
|
D | pythonrun.c | 434 if (PyUnicode_CompareWithASCIIString(filename, "<stdin>") != 0 && in _PyRun_SimpleFileObject()
|
D | specialize.c | 583 if (PyUnicode_CompareWithASCIIString(name, "__class__") == 0) { in analyze_descriptor()
|
/aosp_15_r20/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 1123 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()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 992 PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/ |
D | module.c | 75 if (PyUnicode_CompareWithASCIIString(item, "factory") == 0) { in module_connect()
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | pegen.c | 893 PyUnicode_CompareWithASCIIString(filename_ob, "<stdin>") == 0) { in _PyPegen_run_parser_from_file_pointer()
|
D | action_helpers.c | 1066 if (PyUnicode_CompareWithASCIIString(name->v.Name.id, candidates[i]) == 0) { in _PyPegen_check_legacy_stmt()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2651 PyUnicode_CompareWithASCIIString:int::: 2652 PyUnicode_CompareWithASCIIString:PyObject*:uni:0: 2653 PyUnicode_CompareWithASCIIString:const char*:string::
|
D | stable_abi.dat | 721 function,PyUnicode_CompareWithASCIIString,3.2,,
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 639 EXPORT_FUNC(PyUnicode_CompareWithASCIIString)
|
/aosp_15_r20/external/python/cpython3/Programs/ |
D | _testembed.c | 1152 if (PyUnicode_CompareWithASCIIString(path, "$$test-filename") == 0) { in _open_code_hook()
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1560 [function.PyUnicode_CompareWithASCIIString]
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 1498 .. c:function:: int PyUnicode_CompareWithASCIIString(PyObject *uni, const char *string)
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 2579 * The :c:func:`PyUnicode_CompareWithASCIIString` function now returns *not
|
12