Home
last modified time | relevance | path

Searched refs:IS_WHITESPACE (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/
D_json.c114 #define IS_WHITESPACE(c) (((c) == ' ') || ((c) == '\t') || ((c) == '\n') || ((c) == '\r')) macro
709 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind,str, idx))) idx++; in _parse_object_unicode()
734 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_object_unicode()
740 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_object_unicode()
768 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_object_unicode()
780 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_object_unicode()
834 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_array_unicode()
852 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_array_unicode()
864 while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++; in _parse_array_unicode()
/third_party/iowow/src/json/
Diwjser.c11 #define IS_WHITESPACE(c_) ((unsigned char) (c_) <= (unsigned char) ' ') macro
214 while (*p && IS_WHITESPACE(*p)) p++; in _jbl_parse_key()
222 } else if (IS_WHITESPACE(c) || (c == ',')) { in _jbl_parse_key()