• Home
  • Raw
  • Download

Lines Matching refs:direct

39 …if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
40 …if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
41 …if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined b…
42 …if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
44 …if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined b…
45 …if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefin…
46 …if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined …
47 …if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined…
48 …if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has un…
49 …if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefi…
63 …if ([BaseObject new] == @"") return; // expected-warning{{direct comparison of a string literal ha…
65 …if ([BadEqualReturnString new] == @"") return; // expected-warning{{direct comparison of a string …
66 …if ([BadEqualArgString new] == @"") return; // expected-warning{{direct comparison of a string lit…
68 …if (@"" < @"") return; // expected-warning{{direct comparison of a string literal has undefined be…
69 …if (@"" > @"") return; // expected-warning{{direct comparison of a string literal has undefined be…
70 …if (@"" <= @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
71 …if (@"" >= @"") return; // expected-warning{{direct comparison of a string literal has undefined b…
82 …if (obj == @1) return; // expected-warning{{direct comparison of a numeric literal has undefined b…
83 …if (@1 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined b…
102 …return c == @""; // expected-warning{{direct comparison of a string literal has undefined behavior…