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

  /xsrc/external/mit/xterm/dist/
xstrings.c 304 while (IsSpace(CharOf(*s)))
312 while (*s != '\0' && !IsSpace(CharOf(*s)))
320 while (IsSpace(CharOf(*s)))
349 if (!IsSpace(CharOf(first[n]))) {
359 if (IsSpace(CharOf(first[n]))) {
482 while (IsSpace(CharOf(*s)))
489 while (s != t && IsSpace(CharOf(s[-1]))) {
514 while (s != t && IsSpace(CharOf(s[-1]))) {
graphics_regis.c 3013 if (ch != ',' && !IsSpace(ch)) {
3517 } else if (!IsSpace(after)) {
3840 } else if (end[0] == '\0' || end[0] == ',' || IsSpace(end[0])) {
3868 while (IsSpace(xpart[0]))
3870 while (IsSpace(ypart[0]))
button.c 337 while (IsSpace(*target))
343 if (IsSpace(ch)) {
359 if (IsSpace(ch)) {
376 if (IsSpace(ch)) {
5856 if (isspace((Char) format[n])) {
5857 first = !isspace((Char) format[n + 1]);
ptyx.h 319 #define IsSpace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n')
  /xsrc/external/mit/MesaLib/dist/src/gtest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
gtest.cc 1694 for (; message_length && IsSpace(error_text[message_length - 1]);
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
gtest.cc 1689 for (; message_length && IsSpace(error_text[message_length - 1]);
  /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))
gtest-internal.h 634 while (IsSpace(*(++comma))) {}
  /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))
gtest-internal.h 599 while (IsSpace(*(++comma))) {}

Completed in 45 milliseconds