HomeSort by: relevance | last modified time | path
    Searched defs:IsSpace (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
gtest-port.h 246 #include <ctype.h> // for isspace, etc
1906 // isspace(int ch) and friends accept an unsigned char or EOF. char
1909 // isspace(), etc.
1923 inline bool IsSpace(char ch) {
1924 return isspace(static_cast<unsigned char>(ch)) != 0;
1946 while (it != str.begin() && IsSpace(*--it))
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
gtest-port.h 259 #include <ctype.h> // for isspace, etc
2246 // isspace(int ch) and friends accept an unsigned char or EOF. char
2249 // isspace(), etc.
2263 inline bool IsSpace(char ch) {
2264 return isspace(static_cast<unsigned char>(ch)) != 0;
2286 while (it != str.begin() && IsSpace(*--it))
  /xsrc/external/mit/xterm/dist/
ptyx.h 319 #define IsSpace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n')

Completed in 14 milliseconds