/aosp_15_r20/external/python/pyyaml/yaml/ |
D | _yaml.pyx | 281 if PyUnicode_CheckExact(stream) != 0: 868 if PyUnicode_CheckExact(value) != 0: 1005 if PyUnicode_CheckExact(handle): 1011 if PyUnicode_CheckExact(prefix): 1032 if PyUnicode_CheckExact(anchor_object): 1043 if PyUnicode_CheckExact(anchor_object): 1051 if PyUnicode_CheckExact(tag_object): 1057 if PyUnicode_CheckExact(value_object): 1085 if PyUnicode_CheckExact(anchor_object): 1093 if PyUnicode_CheckExact(tag_object): [all …]
|
D | _yaml.pxd | 8 int PyUnicode_CheckExact(object o)
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | dictobject.c | 288 assert(PyUnicode_CheckExact(o)); in unicode_get_hash() 547 if (PyUnicode_CheckExact(key)) { in _PyDict_CheckConsistency() 561 CHECK(PyUnicode_CheckExact(key)); in _PyDict_CheckConsistency() 880 assert(PyUnicode_CheckExact(ep->me_key)); in unicodekeys_lookup_generic() 926 assert(PyUnicode_CheckExact(ep->me_key)); in unicodekeys_lookup_unicode() 941 assert(PyUnicode_CheckExact(ep->me_key)); in unicodekeys_lookup_unicode() 1011 if (!PyUnicode_CheckExact(key) || kind == DICT_KEYS_GENERAL) { in _PyDictKeys_StringLookup() 1052 if (PyUnicode_CheckExact(key)) { in _Py_dict_lookup() 1189 assert(PyUnicode_CheckExact(name)); in insert_into_dictkeys() 1230 if (DK_IS_UNICODE(mp->ma_keys) && !PyUnicode_CheckExact(key)) { in insertdict() [all …]
|
D | setobject.c | 77 if (PyUnicode_CheckExact(startkey) in set_lookkey() 78 && PyUnicode_CheckExact(key) in set_lookkey() 136 if (PyUnicode_CheckExact(startkey) in set_add_entry() 137 && PyUnicode_CheckExact(key) in set_add_entry() 348 if (!PyUnicode_CheckExact(key) || in set_add_key() 362 if (!PyUnicode_CheckExact(key) || in set_contains_key() 376 if (!PyUnicode_CheckExact(key) || in set_discard_key()
|
D | codeobject.c | 43 if (v == NULL || !PyUnicode_CheckExact(v)) { in intern_strings() 59 if (PyUnicode_CheckExact(v)) { in intern_string_constants() 127 if (PyUnicode_CheckExact(item)) { in validate_and_copy_tuple() 2078 || PyUnicode_CheckExact(op) in _PyCode_ConstantKey()
|
D | object.c | 468 if (PyUnicode_CheckExact(v)) { in PyObject_Str() 1163 if (tp->tp_getattro != PyObject_GenericGetAttr || !PyUnicode_CheckExact(name)) { in _PyObject_GetMethod() 1291 if (PyUnicode_CheckExact(name)) { in _PyObject_GenericGetAttrWithDict()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | suggestions.c | 184 if (name == NULL || obj == NULL || !PyUnicode_CheckExact(name)) { in offer_suggestions_for_attribute_error() 206 if (name == NULL || !PyUnicode_CheckExact(name) || in offer_suggestions_for_name_error()
|
D | ast.c | 162 || PyUnicode_CheckExact(value) in validate_constant() 489 PyUnicode_CheckExact(literal)) { in validate_pattern_match_value() 1055 if (e->kind == Constant_kind && PyUnicode_CheckExact(e->v.Constant.value)) { in _PyAST_GetDocString()
|
D | specialize.c | 624 assert(PyUnicode_CheckExact(name)); in specialize_dict_access() 1057 assert(PyUnicode_CheckExact(name)); in _Py_Specialize_LoadGlobal() 1786 if (PyUnicode_CheckExact(lhs)) { in _Py_Specialize_BinaryOp() 1960 if (PyUnicode_CheckExact(lhs)) { in _Py_Specialize_CompareOp()
|
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/ |
D | statement.c | 129 } else if (PyUnicode_CheckExact(parameter)) { in pysqlite_statement_bind_parameter() 210 || PyUnicode_CheckExact(obj) || PyBuffer_Check(obj)) { in _need_adapt()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | unicodeobject.c | 390 if (PyUnicode_CheckExact(unicode) && in unicode_dealloc() 1150 if (PyUnicode_CheckExact(obj)) { in PyUnicode_FromObject() 4146 if (PyUnicode_CheckExact(mapping)) { in PyUnicode_DecodeCharmap() 5507 if (!fixfct(u) && PyUnicode_CheckExact(self)) { in fixup() 5680 if (PyUnicode_CheckExact(item)) { in PyUnicode_Join() 5805 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { in pad() 6011 if (PyUnicode_CheckExact(self)) { in replace() 6125 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_center() 7032 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_ljust() 7087 if (i == 0 && j == len && PyUnicode_CheckExact(self)) { in _PyUnicode_XStrip() [all …]
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | string_parser.c | 1032 assert(PyUnicode_CheckExact(state->last_str)); in FstringParser_check_invariants() 1063 assert(PyUnicode_CheckExact(s)); in make_str_node_and_del() 1091 assert(PyUnicode_CheckExact(str)); in _PyPegen_FstringParser_ConcatAndDel()
|
/aosp_15_r20/external/python/cpython3/Objects/stringlib/ |
D | ucs2lib.h | 22 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
D | ucs4lib.h | 22 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
D | ucs1lib.h | 22 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
D | unicodedefs.h | 24 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
D | asciilib.h | 22 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
/aosp_15_r20/external/python/cpython2/Objects/stringlib/ |
D | unicodedefs.h | 26 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | unicodeobject.h | 66 #define PyUnicode_CheckExact(op) 0 macro 429 #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type) macro
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/ |
D | cursor.c | 547 } else if (PyUnicode_CheckExact(parameter)) { in bind_param() 626 || PyUnicode_CheckExact(obj) || PyByteArray_CheckExact(obj)) { in need_adapt()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 116 #define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 116 #define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) macro
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 116 #define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 116 #define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 116 #define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) macro
|