Home
last modified time | relevance | path

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

/external/flatbuffers/include/flatbuffers/
Dutil.h54 inline bool is_alpha_char(char c, char alpha) { in is_alpha_char() function
290 if (s[0] == '0' && is_alpha_char(s[1], 'X'))
/external/flatbuffers/src/
Didl_parser.cpp440 auto use_hex = dot_lvl && (c == '0') && is_alpha_char(*cursor_, 'X'); in Next()
454 if ((use_hex && is_alpha_char(*cursor_, 'P')) || in Next()
455 is_alpha_char(*cursor_, 'E')) { in Next()
1293 (s.at(k) == '0' && is_alpha_char(s.at(k + 1), 'X')) && in TryTypedValue()