Home
last modified time | relevance | path

Searched refs:PyString_CheckExact (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Utility/
DFunctionArguments.c138 if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key))) in __Pyx_CheckKeywordStrings()
209 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { in __Pyx_ParseOptionalKeywords()
DOptimize.c169 if (PyString_CheckExact(key) || PyUnicode_CheckExact(key) || PyInt_CheckExact(key)) { in __Pyx_PyDict_GetItemDefault()
207 (PyUnicode_CheckExact(key) || PyString_CheckExact(key) || PyLong_CheckExact(key)))) {
218 …(PyString_CheckExact(key) || PyUnicode_CheckExact(key) || PyInt_CheckExact(key) || PyLong_CheckExa…
DModuleSetupCode.c187 #define PyString_CheckExact PyUnicode_CheckExact macro
194 #define PyBytes_CheckExact PyString_CheckExact
213 #define __Pyx_PyBaseString_Check(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj) || \
215 #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj))
DStringTools.c153 if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { in __Pyx_PyUnicode_Equals()
159 } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { in __Pyx_PyUnicode_Equals()
DBuiltins.c203 if (!(likely(PyString_CheckExact(s)))) { in __Pyx_Intern()
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
Dstring.pxd23 bint PyString_CheckExact(object o)
/external/chromium_org/third_party/bintrees/bintrees/
Dqavltree.c138 #define PyString_CheckExact PyUnicode_CheckExact macro
144 #define PyBytes_CheckExact PyString_CheckExact
2257 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { in __Pyx_ParseOptionalKeywords()
Dqrbtree.c138 #define PyString_CheckExact PyUnicode_CheckExact macro
144 #define PyBytes_CheckExact PyString_CheckExact
2254 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { in __Pyx_ParseOptionalKeywords()
Dqbintree.c138 #define PyString_CheckExact PyUnicode_CheckExact macro
144 #define PyBytes_CheckExact PyString_CheckExact
2252 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { in __Pyx_ParseOptionalKeywords()
Dcwalker.c138 #define PyString_CheckExact PyUnicode_CheckExact macro
144 #define PyBytes_CheckExact PyString_CheckExact
2855 if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key))) in __Pyx_CheckKeywordStrings()
/external/chromium_org/third_party/cython/src/Cython/Includes/Deprecated/
Dpython2.5.pxd545 … int PyString_CheckExact (object) # Always succeeds.