| /netbsd-src/external/gpl2/groff/dist/src/preproc/html/ |
| H A D | pushback.cpp | 154 static int isWhite (char ch) in isWhite() function 178 while ((isWhite(putPB(getPB())) || (putPB(getPB()) == '#')) && (! eofFound)) { in skipUntilToken() 248 while (isWhite(ch)) { in readInt() 317 while (isWhite(ch)) { in readString() 320 while ((i < MAXPUSHBACKSTACK) && (! isWhite(ch)) && (! eofFound)) { in readString()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
| H A D | searching.d | 184 import std.ascii : isWhite; 185 assert( all!(any!isWhite)(["a a", "b b"])); 186 assert(!any!(all!isWhite)(["a a", "b b"])); 974 import std.uni : isWhite; 976 assert(countUntil!(isWhite)("hello world") == 5); 2838 import std.ascii : isWhite; 2840 assert(findSkip!isWhite(s) && s == "abc"); 2841 assert(!findSkip!isWhite(s) && s == "abc"); 2844 assert(findSkip!isWhite(s) == 2); 2849 import std.ascii : isWhite; [all …]
|
| H A D | iteration.d | 5742 import std.ascii : isWhite; 5747 assert(str.splitter!(isWhite).equal(["Hello", "World!"])); 6287 import std.uni : isWhite; 6295 splitter!(isWhite)("là dove terminava quella valle"), 6317 `splitter!(std.uni.isWhite)`, runs of whitespace will be merged together 6344 import std.uni : isWhite; 6355 if (isWhite(_s[i])) 6365 auto r = find!(isWhite)(_s.save); 6384 if (std.ascii.isWhite(c)) 6392 if (std.uni.isWhite(dc))
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | xml.d | 1068 import std.ascii : isWhite; in this() 1080 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1089 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1092 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1101 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 2235 import std.ascii : isWhite; in checkSpace() 2239 ptrdiff_t i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in checkSpace() 2240 if (i == -1 && s.length > 0 && isWhite(s[0])) in checkSpace()
|
| H A D | string.d | 3048 Strips leading whitespace (as defined by $(REF isWhite, std,uni)) or 3085 if (!std.uni.isWhite(input[i])) 3094 if (!std.uni.isWhite(input.front)) 3111 if (!std.ascii.isWhite(c)) break; 3128 if (!std.uni.isWhite(decode!(UseReplacementDchar.yes)(input, index))) 3140 if (!std.ascii.isWhite(c)) 3148 if (!std.uni.isWhite(dc)) 3249 Strips trailing whitespace (as defined by $(REF isWhite, std,uni)) or 3270 import std.uni : isWhite; 3280 if (!isWhite(c)) [all …]
|
| H A D | json.d | 965 bool isWhite(dchar c) 972 import std.ascii : isWhite; 974 return c == 0 || isWhite(c); 1029 !isWhite(c.get))
|
| H A D | functional.d | 654 import std.uni : isWhite; 656 assert(find!(not!isWhite)(a) == "Hello, world!");
|
| H A D | array.d | 1933 import std.uni : isWhite; 1934 if (isWhite(c)) 1959 import std.uni : isWhite; 1961 assert("Learning D is fun".split!isWhite == ["Learning", "D", "is", "fun"]);
|
| H A D | conv.d | 4000 import std.ascii : isWhite; 4006 if (!isWhite(c)) 4033 for (; !r.empty && isWhite(r.front); r.popFront(), ++i)
|
| H A D | traits.d | 473 import std.ascii : isWhite; 474 static assert(packageName!(isWhite) == "std"); 537 import std.ascii : isWhite; 538 static assert(moduleName!(isWhite) == "std.ascii");
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | xml.d | 1060 import std.ascii : isWhite; in this() 1072 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1081 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1084 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 1093 i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in this() 2226 import std.ascii : isWhite; in checkSpace() 2230 ptrdiff_t i = s.byCodeUnit.countUntil!(a => !isWhite(a)); in checkSpace() 2231 if (i == -1 && s.length > 0 && isWhite(s[0])) in checkSpace()
|
| H A D | array.d | 1426 import std.uni : isWhite; 1427 if (isWhite(c)) 1465 import std.ascii : isWhite; 1470 assert(str.splitter!(isWhite).equal(["Hello", "World!"])); 1579 import std.uni : isWhite; 1581 assert("Learning D is fun".split!isWhite == ["Learning", "D", "is", "fun"]);
|
| H A D | string.d | 2816 Strips leading whitespace (as defined by $(REF isWhite, std,uni)). 2843 if (!std.ascii.isWhite(c)) 2851 if (!std.uni.isWhite(dc)) 2891 Strips trailing whitespace (as defined by $(REF isWhite, std,uni)). 2908 import std.uni : isWhite; 2917 if (!isWhite(c)) 2930 if (isWhite(str[i])) 2939 if (isWhite(c2)) 2950 if (isWhite(c)) 2967 if (isWhite(cx)) [all …]
|
| H A D | functional.d | 637 import std.uni : isWhite; 639 assert(find!(not!isWhite)(a) == "Hello, world!");
|
| H A D | json.d | 706 import std.ascii : isWhite, isDigit, isHexDigit, toUpper, toLower; 768 while (isWhite(peekChar())) next = 0; in skipWhitespace()
|
| H A D | uni.d | 145 sets like $(LREF isWhite). 5777 static bool pred(dchar c) {return !c.isWhite && c != '-' && c != '_';} in pred() 8080 @safe pure nothrow @nogc public bool isWhite(dchar c) in version() 8082 import std.ascii : isWhite; in version() 8083 return isWhite(c) || in version() 8120 public bool isWhite(dchar c) in isWhite() function 9489 For commonly used less strict semantics see $(LREF isWhite).
|
| H A D | conv.d | 3352 import std.ascii : isWhite; in skipWS() 3358 if (!isWhite(c)) in skipWS() 3369 for (; !r.empty && isWhite(r.front); r.popFront()) in skipWS()
|
| H A D | format.d | 1453 import std.ascii : isLower, isWhite; 1503 while (!r.empty && isWhite(r.front)) r.popFront();
|
| /netbsd-src/external/gpl2/groff/dist/src/devices/grops/ |
| H A D | psfig.diff | 97 #define isWhite(ch) ((ch) == ' ' || (ch) == '\t' || (ch) == '\n')
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/ |
| H A D | spec.d | 508 import std.ascii : isLower, isWhite; 560 while (!r.empty && isWhite(r.front)) r.popFront();
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| H A D | searching.d | 182 import std.ascii : isWhite; 183 assert( all!(any!isWhite)(["a a", "b b"])); 184 assert(!any!(all!isWhite)(["a a", "b b"])); 960 import std.uni : isWhite; 962 assert(countUntil!(std.uni.isWhite)("hello world") == 5); 3984 import std.ascii : isWhite; 3990 assert(s2.skipOver!isWhite && s2 == "value"); 3991 assert(!s3.skipOver!isWhite); 3992 assert(s4.skipOver!isWhite && s3.empty);
|
| H A D | iteration.d | 4445 import std.uni : isWhite; 4453 splitter!(std.uni.isWhite)("là dove terminava quella valle"), 4463 $(D splitter!(std.uni.isWhite)), runs of whitespace will be merged together 4486 import std.uni : isWhite; in getFirst() 4488 auto r = find!(isWhite)(_s); in getFirst()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
| H A D | parser.d | 579 while (!empty && isWhite(front)) _popFront(); in skipSpace()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/ |
| H A D | package.d | 146 sets like $(LREF isWhite). 5780 static bool pred(dchar c) {return !c.isWhite && c != '-' && c != '_';} 8866 @safe pure nothrow @nogc public bool isWhite(dchar c) 8868 import std.ascii : isWhite; 8869 return isWhite(c) || 8907 public bool isWhite(dchar c) 10366 For commonly used less strict semantics see $(LREF isWhite).
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/ |
| H A D | parser.d | 661 while (isWhite(current) && _next()){ } in skipSpace()
|