Home
last modified time | relevance | path

Searched defs:IsSpace (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/utils/
Dostreams.cc125 bool IsSpace(uint16_t c) { return (0x9 <= c && c <= 0xD) || c == 0x20; } in IsSpace() function
/third_party/sqlite/src/
Dshell.c232 #define IsSpace(X) isspace((unsigned char)X) macro