@@ -14,23 +14,18 @@ expression E;
14
14
- ((E == 1) ? "" : "s")
15
15
+ str_plural(E)
16
16
|
17
- - ((E != 1) ? "s" : "")
18
- + str_plural(E)
19
- |
20
17
- ((E > 1) ? "s" : "")
21
18
+ str_plural(E)
22
19
)
23
20
24
- @str_plural_r depends on !patch exists @
21
+ @str_plural_r depends on !patch@
25
22
expression E;
26
23
position P;
27
24
@@
28
25
(
29
- * (( E@P == 1) ? "" : "s")
26
+ * (E@P == 1) ? "" : "s"
30
27
|
31
- * ((E@P != 1) ? "s" : "")
32
- |
33
- * ((E@P > 1) ? "s" : "")
28
+ * (E@P > 1) ? "s" : ""
34
29
)
35
30
36
31
@script:python depends on report@
@@ -40,17 +35,17 @@ e << str_plural_r.E;
40
35
41
36
coccilib.report.print_report(p[0 ], " opportunity for str_plural(%s )" % e)
42
37
43
- @str_up_down depends on patch@
38
+ @str_up_down depends on patch disable neg_if_exp @
44
39
expression E;
45
40
@@
46
41
- ((E) ? "up" : "down")
47
42
+ str_up_down(E)
48
43
49
- @str_up_down_r depends on !patch exists @
44
+ @str_up_down_r depends on !patch disable neg_if_exp @
50
45
expression E;
51
46
position P;
52
47
@@
53
- * (( E@P) ? "up" : "down")
48
+ * E@P ? "up" : "down"
54
49
55
50
@script:python depends on report@
56
51
p << str_up_down_r.P;
@@ -59,17 +54,17 @@ e << str_up_down_r.E;
59
54
60
55
coccilib.report.print_report(p[0 ], " opportunity for str_up_down(%s )" % e)
61
56
62
- @str_down_up depends on patch@
57
+ @str_down_up depends on patch disable neg_if_exp @
63
58
expression E;
64
59
@@
65
60
- ((E) ? "down" : "up")
66
61
+ str_down_up(E)
67
62
68
- @str_down_up_r depends on !patch exists @
63
+ @str_down_up_r depends on !patch disable neg_if_exp @
69
64
expression E;
70
65
position P;
71
66
@@
72
- * (( E@P) ? "down" : "up")
67
+ * E@P ? "down" : "up"
73
68
74
69
@script:python depends on report@
75
70
p << str_down_up_r.P;
@@ -78,17 +73,17 @@ e << str_down_up_r.E;
78
73
79
74
coccilib.report.print_report(p[0 ], " opportunity for str_down_up(%s )" % e)
80
75
81
- @str_true_false depends on patch@
76
+ @str_true_false depends on patch disable neg_if_exp @
82
77
expression E;
83
78
@@
84
79
- ((E) ? "true" : "false")
85
80
+ str_true_false(E)
86
81
87
- @str_true_false_r depends on !patch exists @
82
+ @str_true_false_r depends on !patch disable neg_if_exp @
88
83
expression E;
89
84
position P;
90
85
@@
91
- * (( E@P) ? "true" : "false")
86
+ * E@P ? "true" : "false"
92
87
93
88
@script:python depends on report@
94
89
p << str_true_false_r.P;
@@ -97,17 +92,17 @@ e << str_true_false_r.E;
97
92
98
93
coccilib.report.print_report(p[0 ], " opportunity for str_true_false(%s )" % e)
99
94
100
- @str_false_true depends on patch@
95
+ @str_false_true depends on patch disable neg_if_exp @
101
96
expression E;
102
97
@@
103
98
- ((E) ? "false" : "true")
104
99
+ str_false_true(E)
105
100
106
- @str_false_true_r depends on !patch exists @
101
+ @str_false_true_r depends on !patch disable neg_if_exp @
107
102
expression E;
108
103
position P;
109
104
@@
110
- * (( E@P) ? "false" : "true")
105
+ * E@P ? "false" : "true"
111
106
112
107
@script:python depends on report@
113
108
p << str_false_true_r.P;
@@ -116,21 +111,17 @@ e << str_false_true_r.E;
116
111
117
112
coccilib.report.print_report(p[0 ], " opportunity for str_false_true(%s )" % e)
118
113
119
- @str_hi_lo depends on patch@
114
+ @str_hi_lo depends on patch disable neg_if_exp @
120
115
expression E;
121
116
@@
122
- (
123
117
- ((E) ? "hi" : "lo")
124
118
+ str_hi_lo(E)
125
- )
126
119
127
- @str_hi_lo_r depends on !patch exists @
120
+ @str_hi_lo_r depends on !patch disable neg_if_exp @
128
121
expression E;
129
122
position P;
130
123
@@
131
- (
132
- * ((E@P) ? "hi" : "lo")
133
- )
124
+ * E@P ? "hi" : "lo"
134
125
135
126
@script:python depends on report@
136
127
p << str_hi_lo_r.P;
@@ -139,17 +130,17 @@ e << str_hi_lo_r.E;
139
130
140
131
coccilib.report.print_report(p[0 ], " opportunity for str_hi_lo(%s )" % e)
141
132
142
- @str_high_low depends on patch@
133
+ @str_high_low depends on patch disable neg_if_exp @
143
134
expression E;
144
135
@@
145
136
- ((E) ? "high" : "low")
146
137
+ str_high_low(E)
147
138
148
- @str_high_low_r depends on !patch exists @
139
+ @str_high_low_r depends on !patch disable neg_if_exp @
149
140
expression E;
150
141
position P;
151
142
@@
152
- * (( E@P) ? "high" : "low")
143
+ * E@P ? "high" : "low"
153
144
154
145
@script:python depends on report@
155
146
p << str_high_low_r.P;
@@ -158,17 +149,17 @@ e << str_high_low_r.E;
158
149
159
150
coccilib.report.print_report(p[0 ], " opportunity for str_high_low(%s )" % e)
160
151
161
- @str_lo_hi depends on patch@
152
+ @str_lo_hi depends on patch disable neg_if_exp @
162
153
expression E;
163
154
@@
164
155
- ((E) ? "lo" : "hi")
165
156
+ str_lo_hi(E)
166
157
167
- @str_lo_hi_r depends on !patch exists @
158
+ @str_lo_hi_r depends on !patch disable neg_if_exp @
168
159
expression E;
169
160
position P;
170
161
@@
171
- * (( E@P) ? "lo" : "hi")
162
+ * E@P ? "lo" : "hi"
172
163
173
164
@script:python depends on report@
174
165
p << str_lo_hi_r.P;
@@ -177,17 +168,17 @@ e << str_lo_hi_r.E;
177
168
178
169
coccilib.report.print_report(p[0 ], " opportunity for str_lo_hi(%s )" % e)
179
170
180
- @str_low_high depends on patch@
171
+ @str_low_high depends on patch disable neg_if_exp @
181
172
expression E;
182
173
@@
183
174
- ((E) ? "low" : "high")
184
175
+ str_low_high(E)
185
176
186
- @str_low_high_r depends on !patch exists @
177
+ @str_low_high_r depends on !patch disable neg_if_exp @
187
178
expression E;
188
179
position P;
189
180
@@
190
- * (( E@P) ? "low" : "high")
181
+ * E@P ? "low" : "high"
191
182
192
183
@script:python depends on report@
193
184
p << str_low_high_r.P;
@@ -202,11 +193,11 @@ expression E;
202
193
- ((E) ? "enable" : "disable")
203
194
+ str_enable_disable(E)
204
195
205
- @str_enable_disable_r depends on !patch exists @
196
+ @str_enable_disable_r depends on !patch@
206
197
expression E;
207
198
position P;
208
199
@@
209
- * (( E@P) ? "enable" : "disable")
200
+ * E@P ? "enable" : "disable"
210
201
211
202
@script:python depends on report@
212
203
p << str_enable_disable_r.P;
@@ -221,11 +212,11 @@ expression E;
221
212
- ((E) ? "enabled" : "disabled")
222
213
+ str_enabled_disabled(E)
223
214
224
- @str_enabled_disabled_r depends on !patch exists @
215
+ @str_enabled_disabled_r depends on !patch@
225
216
expression E;
226
217
position P;
227
218
@@
228
- * (( E@P) ? "enabled" : "disabled")
219
+ * E@P ? "enabled" : "disabled"
229
220
230
221
@script:python depends on report@
231
222
p << str_enabled_disabled_r.P;
@@ -234,17 +225,17 @@ e << str_enabled_disabled_r.E;
234
225
235
226
coccilib.report.print_report(p[0 ], " opportunity for str_enabled_disabled(%s )" % e)
236
227
237
- @str_read_write depends on patch@
228
+ @str_read_write depends on patch disable neg_if_exp @
238
229
expression E;
239
230
@@
240
231
- ((E) ? "read" : "write")
241
232
+ str_read_write(E)
242
233
243
- @str_read_write_r depends on !patch exists @
234
+ @str_read_write_r depends on !patch disable neg_if_exp @
244
235
expression E;
245
236
position P;
246
237
@@
247
- * (( E@P) ? "read" : "write")
238
+ * E@P ? "read" : "write"
248
239
249
240
@script:python depends on report@
250
241
p << str_read_write_r.P;
@@ -253,17 +244,17 @@ e << str_read_write_r.E;
253
244
254
245
coccilib.report.print_report(p[0 ], " opportunity for str_read_write(%s )" % e)
255
246
256
- @str_write_read depends on patch@
247
+ @str_write_read depends on patch disable neg_if_exp @
257
248
expression E;
258
249
@@
259
250
- ((E) ? "write" : "read")
260
251
+ str_write_read(E)
261
252
262
- @str_write_read_r depends on !patch exists @
253
+ @str_write_read_r depends on !patch disable neg_if_exp @
263
254
expression E;
264
255
position P;
265
256
@@
266
- * (( E@P) ? "write" : "read")
257
+ * E@P ? "write" : "read"
267
258
268
259
@script:python depends on report@
269
260
p << str_write_read_r.P;
@@ -278,11 +269,11 @@ expression E;
278
269
- ((E) ? "on" : "off")
279
270
+ str_on_off(E)
280
271
281
- @str_on_off_r depends on !patch exists @
272
+ @str_on_off_r depends on !patch@
282
273
expression E;
283
274
position P;
284
275
@@
285
- * (( E@P) ? "on" : "off")
276
+ * E@P ? "on" : "off"
286
277
287
278
@script:python depends on report@
288
279
p << str_on_off_r.P;
@@ -297,11 +288,11 @@ expression E;
297
288
- ((E) ? "yes" : "no")
298
289
+ str_yes_no(E)
299
290
300
- @str_yes_no_r depends on !patch exists @
291
+ @str_yes_no_r depends on !patch@
301
292
expression E;
302
293
position P;
303
294
@@
304
- * (( E@P) ? "yes" : "no")
295
+ * E@P ? "yes" : "no"
305
296
306
297
@script:python depends on report@
307
298
p << str_yes_no_r.P;
0 commit comments