/dflybsd-src/usr.sbin/lpr/chkprintcap/ |
H A D | skimprintcap.c | 82 enum {CMNT_LINE, ENTRY_LINE, TAB_LINE, TABERR_LINE} is_type, had_type; in skim_printcap() local 97 is_type = CMNT_LINE; in skim_printcap() 133 had_type = is_type; in skim_printcap() 134 is_type = CMNT_LINE; in skim_printcap() 142 is_type = TAB_LINE; in skim_printcap() 145 is_type = ENTRY_LINE; in skim_printcap() 173 if ((had_type != CMNT_LINE) || (is_type != CMNT_LINE) || in skim_printcap() 183 if ((had_cont != WILL_CONTINUE) && (is_type != ENTRY_LINE)) { in skim_printcap() 205 if (is_type == ENTRY_LINE) { in skim_printcap() 223 if (is_type == TAB_LINE) { in skim_printcap() [all …]
|
/dflybsd-src/bin/sh/pregenerated/ |
H A D | syntax.h | 45 #define is_alpha(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER)) 46 #define is_name(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER)) 47 #define is_in_name(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT)) 48 #define is_special(c) ((is_type+SYNBASE)[(int)c] & (ISSPECL|ISDIGIT)) 55 extern const char is_type[];
|
H A D | syntax.c | 121 const char is_type[SYNBASE + CHAR_MAX + 1] = { variable
|
/dflybsd-src/contrib/binutils-2.27/libiberty/ |
H A D | cplus-dem.c | 2091 int is_type, int remember) in demangle_template() argument 2101 if (is_type) in demangle_template() 2154 if (!is_type) in demangle_template() 2178 if (!is_type) in demangle_template() 2206 if (!is_type) in demangle_template() 2234 if (!is_type) in demangle_template() 2247 if (!is_type) in demangle_template() 2253 if (!is_type) in demangle_template() 2277 if (is_type && remember) in demangle_template()
|
/dflybsd-src/contrib/gcc-8.0/libiberty/ |
H A D | cplus-dem.c | 2160 int is_type, int remember) in demangle_template() argument 2170 if (is_type) in demangle_template() 2225 if (!is_type) in demangle_template() 2249 if (!is_type) in demangle_template() 2277 if (!is_type) in demangle_template() 2305 if (!is_type) in demangle_template() 2318 if (!is_type) in demangle_template() 2324 if (!is_type) in demangle_template() 2348 if (is_type && remember) in demangle_template()
|
/dflybsd-src/contrib/gcc-4.7/libiberty/ |
H A D | cplus-dem.c | 2071 int is_type, int remember) in demangle_template() argument 2081 if (is_type) in demangle_template() 2134 if (!is_type) in demangle_template() 2158 if (!is_type) in demangle_template() 2186 if (!is_type) in demangle_template() 2214 if (!is_type) in demangle_template() 2227 if (!is_type) in demangle_template() 2233 if (!is_type) in demangle_template() 2257 if (is_type && remember) in demangle_template()
|
/dflybsd-src/contrib/gdb-7/libiberty/ |
H A D | cplus-dem.c | 2071 int is_type, int remember) in demangle_template() argument 2081 if (is_type) in demangle_template() 2134 if (!is_type) in demangle_template() 2158 if (!is_type) in demangle_template() 2186 if (!is_type) in demangle_template() 2214 if (!is_type) in demangle_template() 2227 if (!is_type) in demangle_template() 2233 if (!is_type) in demangle_template() 2257 if (is_type && remember) in demangle_template()
|
/dflybsd-src/contrib/gcc-8.0/gcc/c-family/ |
H A D | c-attribs.c | 1800 bool is_type = false; in common_handle_aligned_attribute() local 1822 is_type = TREE_CODE (*node) == TYPE_DECL; in common_handle_aligned_attribute() 1825 type = node, is_type = true; in common_handle_aligned_attribute() 1844 if (is_type) in common_handle_aligned_attribute()
|
/dflybsd-src/contrib/gcc-4.7/gcc/c-family/ |
H A D | c-common.c | 6774 int is_type = 0; in handle_aligned_attribute() local 6783 is_type = TREE_CODE (*node) == TYPE_DECL; in handle_aligned_attribute() 6786 type = node, is_type = 1; in handle_aligned_attribute() 6790 else if (is_type) in handle_aligned_attribute()
|
/dflybsd-src/contrib/gcc-4.7/gcc/cp/ |
H A D | pt.c | 6094 int is_type, requires_type, is_tmpl_type, requires_tmpl_type; in convert_template_argument() local 6149 is_type = TYPE_P (arg) || is_tmpl_type; in convert_template_argument() 6151 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF in convert_template_argument() 6170 is_type = 1; in convert_template_argument() 6172 if (is_type != requires_type) in convert_template_argument() 6181 if (is_type) in convert_template_argument() 6208 if (is_type) in convert_template_argument()
|
/dflybsd-src/contrib/gcc-8.0/gcc/cp/ |
H A D | pt.c | 7775 int is_type, requires_type, is_tmpl_type, requires_tmpl_type; in convert_template_argument() local 7840 is_type = TYPE_P (arg) || is_tmpl_type; in convert_template_argument() 7842 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF in convert_template_argument() 7861 is_type = 1; in convert_template_argument() 7863 if (is_type != requires_type) in convert_template_argument() 7872 if (is_type) in convert_template_argument() 7907 else if (is_type) in convert_template_argument()
|