Lines Matching +full:0 +full:e
11 expression E;
14 - ((E == 1) ? "" : "s")
15 + str_plural(E)
17 - ((E > 1) ? "s" : "")
18 + str_plural(E)
22 expression E;
26 * (E@P == 1) ? "" : "s"
28 * (E@P > 1) ? "s" : ""
33 e << str_plural_r.E;
36 coccilib.report.print_report(p[0], "opportunity for str_plural(%s)" % e)
39 expression E;
41 - ((E) ? "up" : "down")
42 + str_up_down(E)
45 expression E;
48 * E@P ? "up" : "down"
52 e << str_up_down_r.E;
55 coccilib.report.print_report(p[0], "opportunity for str_up_down(%s)" % e)
58 expression E;
60 - ((E) ? "down" : "up")
61 + str_down_up(E)
64 expression E;
67 * E@P ? "down" : "up"
71 e << str_down_up_r.E;
74 coccilib.report.print_report(p[0], "opportunity for str_down_up(%s)" % e)
77 expression E;
79 - ((E) ? "true" : "false")
80 + str_true_false(E)
83 expression E;
86 * E@P ? "true" : "false"
90 e << str_true_false_r.E;
93 coccilib.report.print_report(p[0], "opportunity for str_true_false(%s)" % e)
96 expression E;
98 - ((E) ? "false" : "true")
99 + str_false_true(E)
102 expression E;
105 * E@P ? "false" : "true"
109 e << str_false_true_r.E;
112 coccilib.report.print_report(p[0], "opportunity for str_false_true(%s)" % e)
115 expression E;
117 - ((E) ? "hi" : "lo")
118 + str_hi_lo(E)
121 expression E;
124 * E@P ? "hi" : "lo"
128 e << str_hi_lo_r.E;
131 coccilib.report.print_report(p[0], "opportunity for str_hi_lo(%s)" % e)
134 expression E;
136 - ((E) ? "high" : "low")
137 + str_high_low(E)
140 expression E;
143 * E@P ? "high" : "low"
147 e << str_high_low_r.E;
150 coccilib.report.print_report(p[0], "opportunity for str_high_low(%s)" % e)
153 expression E;
155 - ((E) ? "lo" : "hi")
156 + str_lo_hi(E)
159 expression E;
162 * E@P ? "lo" : "hi"
166 e << str_lo_hi_r.E;
169 coccilib.report.print_report(p[0], "opportunity for str_lo_hi(%s)" % e)
172 expression E;
174 - ((E) ? "low" : "high")
175 + str_low_high(E)
178 expression E;
181 * E@P ? "low" : "high"
185 e << str_low_high_r.E;
188 coccilib.report.print_report(p[0], "opportunity for str_low_high(%s)" % e)
191 expression E;
193 - ((E) ? "enable" : "disable")
194 + str_enable_disable(E)
197 expression E;
200 * E@P ? "enable" : "disable"
204 e << str_enable_disable_r.E;
207 coccilib.report.print_report(p[0], "opportunity for str_enable_disable(%s)" % e)
210 expression E;
212 - ((E) ? "enabled" : "disabled")
213 + str_enabled_disabled(E)
216 expression E;
219 * E@P ? "enabled" : "disabled"
223 e << str_enabled_disabled_r.E;
226 coccilib.report.print_report(p[0], "opportunity for str_enabled_disabled(%s)" % e)
229 expression E;
231 - ((E) ? "read" : "write")
232 + str_read_write(E)
235 expression E;
238 * E@P ? "read" : "write"
242 e << str_read_write_r.E;
245 coccilib.report.print_report(p[0], "opportunity for str_read_write(%s)" % e)
248 expression E;
250 - ((E) ? "write" : "read")
251 + str_write_read(E)
254 expression E;
257 * E@P ? "write" : "read"
261 e << str_write_read_r.E;
264 coccilib.report.print_report(p[0], "opportunity for str_write_read(%s)" % e)
267 expression E;
269 - ((E) ? "on" : "off")
270 + str_on_off(E)
273 expression E;
276 * E@P ? "on" : "off"
280 e << str_on_off_r.E;
283 coccilib.report.print_report(p[0], "opportunity for str_on_off(%s)" % e)
286 expression E;
288 - ((E) ? "yes" : "no")
289 + str_yes_no(E)
292 expression E;
295 * E@P ? "yes" : "no"
299 e << str_yes_no_r.E;
302 coccilib.report.print_report(p[0], "opportunity for str_yes_no(%s)" % e)