Lines Matching full:adding
31 …consume("foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string}… in f()
32 …consume("foo" + index); // expected-warning {{adding 'int' to a string does not append to the str… in f()
33 …consume("foo" + kMyEnum); // expected-warning {{adding 'MyEnum' to a string does not append to th… in f()
34 …consume("foo" + kMySmallEnum); // expected-warning {{adding 'MyEnum' to a string does not append t… in f()
36 …consume(5 + "foo"); // expected-warning {{adding 'int' to a string does not append to the string}… in f()
37 …consume(index + "foo"); // expected-warning {{adding 'int' to a string does not append to the str… in f()
38 …consume(kMyEnum + "foo"); // expected-warning {{adding 'MyEnum' to a string does not append to th… in f()
39 …consume(kMySmallEnum + "foo"); // expected-warning {{adding 'MyEnum' to a string does not append t… in f()
42 …consumeChar(*("foo" + 5)); // expected-warning {{adding 'int' to a string does not append to the … in f()
43 …consumeChar(*(5 + "foo")); // expected-warning {{adding 'int' to a string does not append to the … in f()
45 …consume(L"foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string… in f()
46 …consume(L"foo" + 2); // expected-warning {{adding 'int' to a string does not append to the string}… in f()
48 …consume("foo" + 3); // expected-warning {{adding 'int' to a string does not append to the string}… in f()
49 …consume("foo" + 4); // expected-warning {{adding 'int' to a string does not append to the string}… in f()
50 …consume("\pfoo" + 4); // expected-warning {{adding 'int' to a string does not append to the strin… in f()