| /src/tests/usr.bin/indent/ |
| edge_cases.c | 9 * Digraphs are replacements for the characters '[', '{' and '#', which are 17 digraphs(void) function 29 digraphs(void) function 45 /* TODO: test trigraphs, which are as unusual as digraphs */ 46 /* TODO: test digraphs and trigraphs in string literals, just for fun */
|
| /src/external/gpl3/gcc/dist/libcpp/include/ |
| cpplib.h | 97 /* Digraphs together, beginning with CPP_FIRST_DIGRAPH. */ \ 98 OP(HASH, "#") /* digraphs */ \ 375 unsigned char digraphs; member in struct:cpp_options
|
| /src/external/gpl3/gcc.old/dist/libcpp/include/ |
| cpplib.h | 95 /* Digraphs together, beginning with CPP_FIRST_DIGRAPH. */ \ 96 OP(HASH, "#") /* digraphs */ \ 364 unsigned char digraphs; member in struct:cpp_options
|
| /src/external/gpl3/gcc/dist/libcpp/ |
| lex.cc | 4123 else if (CPP_OPTION (pfile, digraphs)) 4166 else if (CPP_OPTION (pfile, digraphs)) 4248 else if (*buffer->cur == '>' && CPP_OPTION (pfile, digraphs)) 5214 || (*peek == ':' && CPP_OPTION (pfile, digraphs))) 5233 if (*peek == ':' || (*peek == '>' && CPP_OPTION (pfile, digraphs)))
|
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| lex.cc | 3832 else if (CPP_OPTION (pfile, digraphs)) 3875 else if (CPP_OPTION (pfile, digraphs)) 3957 else if (*buffer->cur == '>' && CPP_OPTION (pfile, digraphs)) 4894 || (*peek == ':' && CPP_OPTION (pfile, digraphs))) 4913 if (*peek == ':' || (*peek == '>' && CPP_OPTION (pfile, digraphs)))
|