Searched refs:MAKE_INTEGER_PARSER (Results 1 – 5 of 5) sorted by relevance
/external/pcre/ |
D | pcrecpparg.h | 146 #define MAKE_INTEGER_PARSER(type, name) \ macro 154 MAKE_INTEGER_PARSER(short, short) /* */ 155 MAKE_INTEGER_PARSER(unsigned short, ushort) /* */ 156 MAKE_INTEGER_PARSER(int, int) /* Don't use semicolons */ 157 MAKE_INTEGER_PARSER(unsigned int, uint) /* after these statement */ 158 MAKE_INTEGER_PARSER(long, long) /* because they can cause */ 159 MAKE_INTEGER_PARSER(unsigned long, ulong) /* compiler warnings if */ 161 MAKE_INTEGER_PARSER(long long, longlong) /* turned up high enough. */ 164 MAKE_INTEGER_PARSER(unsigned long long, ulonglong) /* */ 169 #undef MAKE_INTEGER_PARSER
|
/external/pcre/dist/ |
D | pcrecpparg.h | 146 #define MAKE_INTEGER_PARSER(type, name) \ macro 154 MAKE_INTEGER_PARSER(short, short) /* */ 155 MAKE_INTEGER_PARSER(unsigned short, ushort) /* */ 156 MAKE_INTEGER_PARSER(int, int) /* Don't use semicolons */ 157 MAKE_INTEGER_PARSER(unsigned int, uint) /* after these statement */ 158 MAKE_INTEGER_PARSER(long, long) /* because they can cause */ 159 MAKE_INTEGER_PARSER(unsigned long, ulong) /* compiler warnings if */ 161 MAKE_INTEGER_PARSER(long long, longlong) /* turned up high enough. */ 164 MAKE_INTEGER_PARSER(unsigned long long, ulonglong) /* */ 169 #undef MAKE_INTEGER_PARSER
|
D | pcrecpparg.h.in | 146 #define MAKE_INTEGER_PARSER(type, name) \ macro 154 MAKE_INTEGER_PARSER(short, short) /* */ 155 MAKE_INTEGER_PARSER(unsigned short, ushort) /* */ 156 MAKE_INTEGER_PARSER(int, int) /* Don't use semicolons */ 157 MAKE_INTEGER_PARSER(unsigned int, uint) /* after these statement */ 158 MAKE_INTEGER_PARSER(long, long) /* because they can cause */ 159 MAKE_INTEGER_PARSER(unsigned long, ulong) /* compiler warnings if */ 161 MAKE_INTEGER_PARSER(long long, longlong) /* turned up high enough. */ 164 MAKE_INTEGER_PARSER(unsigned long long, ulonglong) /* */ 169 #undef MAKE_INTEGER_PARSER
|
/external/regex-re2/util/ |
D | pcre.h | 660 #define MAKE_INTEGER_PARSER(type, name) \ macro 668 MAKE_INTEGER_PARSER(short, short); 669 MAKE_INTEGER_PARSER(unsigned short, ushort); 670 MAKE_INTEGER_PARSER(int, int); 671 MAKE_INTEGER_PARSER(unsigned int, uint); 672 MAKE_INTEGER_PARSER(long, long); 673 MAKE_INTEGER_PARSER(unsigned long, ulong); 674 MAKE_INTEGER_PARSER(long long, longlong); 675 MAKE_INTEGER_PARSER(unsigned long long, ulonglong); 677 #undef MAKE_INTEGER_PARSER
|
/external/regex-re2/re2/ |
D | re2.h | 832 #define MAKE_INTEGER_PARSER(type, name) \ macro 840 MAKE_INTEGER_PARSER(short, short); 841 MAKE_INTEGER_PARSER(unsigned short, ushort); 842 MAKE_INTEGER_PARSER(int, int); 843 MAKE_INTEGER_PARSER(unsigned int, uint); 844 MAKE_INTEGER_PARSER(long, long); 845 MAKE_INTEGER_PARSER(unsigned long, ulong); 846 MAKE_INTEGER_PARSER(long long, longlong); 847 MAKE_INTEGER_PARSER(unsigned long long, ulonglong); 849 #undef MAKE_INTEGER_PARSER
|