Home
last modified time | relevance | path

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

/third_party/flatbuffers/include/flatbuffers/
Dutil.h58 inline bool is_alpha_char(char c, char alpha) { in is_alpha_char() function
302 if (s[0] == '0' && is_alpha_char(s[1], 'X'))
/third_party/flatbuffers/src/
Didl_parser.cpp529 auto use_hex = dot_lvl && (c == '0') && is_alpha_char(*cursor_, 'X'); in Next()
543 if ((use_hex && is_alpha_char(*cursor_, 'P')) || in Next()
544 is_alpha_char(*cursor_, 'E')) { in Next()
1897 (s[k] == '0' && is_alpha_char(s[k + 1], 'X')) && in TryTypedValue()