HomeSort by relevance Sort by last modified time
    Searched full:implicit (Results 1 - 25 of 1961) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/YAMLParser/
utf8-implicit.data 3 --- implicit UTF-8
spec-07-12a.data 3 # Implicit document. Root
spec-10-13.data 3 ? explicit key # implicit value
spec-10-11.data 6 ? explicit key3, # Implicit empty
  /frameworks/compile/slang/tests/P_unknown_function/
stderr.txt.expect 1 unknown_function.rs:6:5: warning: implicit declaration of function 'rsgProgramStoreGetDepthFunc' is invalid in C99
  /external/clang/test/CodeGenObjC/
message-arrays.m 4 // This should have an implicit cast
13 // This should also get an implicit cast (for the vararg)
  /external/clang/test/Sema/
conversion.c 11 c = s; // expected-warning {{implicit conversion loses integer precision}}
12 c = i; // expected-warning {{implicit conversion loses integer precision}}
13 c = l; // expected-warning {{implicit conversion loses integer precision}}
16 s = i; // expected-warning {{implicit conversion loses integer precision}}
17 s = l; // expected-warning {{implicit conversion loses integer precision}}
21 i = l; // expected-warning {{implicit conversion loses integer precision}}
45 c = (short) BIG; // expected-warning {{implicit conversion from 'short' to 'char' changes value}}
46 c = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'char' changes value}}
47 c = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'char' changes value}}
50 s = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'short' changes value}
    [all...]
rdr6094103-unordered-compare-promote.c 4 // There needs to be an implicit cast on x here.
constant-conversion.c 8 int x = 0x3ff0000000000000U; // expected-warning {{implicit conversion from 'unsigned long' to 'int' changes value from 4607182418800017408 to 0}}
14 a.i5 = 36; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 36 to 4}}
34 struct A a = { 0, 10 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to -2}}
35 struct A b[] = { 0, 10, 0, 0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to -2}}
36 struct A c[] = {{10, 0}}; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
37 struct A d = (struct A) { 10, 0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
38 struct A e = { .foo = 10 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
46 a.c = 0x101; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 257 to 1}}
54 // Don't warn about this implicit conversion to bool, or at least
72 f.twoBits1 = ~1; // expected-warning {{implicit truncation from 'int' to bitfield changes value from -2 to 2}
    [all...]
conversion-64-32.c 4 return v; // expected-warning {{implicit conversion loses integer precision}}
18 return v / 2; // expected-warning {{implicit conversion loses integer precision: 'long' to 'int'}}
implicit-decl.c 12 if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}} \
13 expected-error {{implicit declaration of function '_CFCalendarDecomposeAbsoluteTimeV' is invalid in C99}}
16 printg("Hello, World!\n"); // expected-error{{implicit declaration of function 'printg' is invalid in C99}} \
30 formatd("Hello, World!\n"); // expected-error{{implicit declaration of function 'formatd' is invalid in C99}} \
sign-conversion.c 6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}}
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 8 int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
11 int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 to 1}}
12 int y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 12.3 to 12}}
14 int y5 = 1.2222; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 1.2222 to 1}}
15 int y6 = 12E-1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 1.2 to 1}}
16 int y7 = 1.23E1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
17 int y8 = (1.23E1); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
20 y8 = 2.22F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 2.22 to 2}
    [all...]
warn-string-conversion.cpp 7 bool b0 = "hi"; // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
8 b0 = ""; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
10 assert("error"); // expected-warning{{implicit conversion turns string literal into bool: 'const char [6]' to 'bool'}}
13 while("hi") {} // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
14 do {} while("hi"); // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
15 for (;"hi";); // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
16 if("hi") {} // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
warn-implicit-conversion-floating-point-to-bool.cpp 17 b = foof(c < 1); // expected-warning {{implicit conversion turns floating-point number into bool: 'float' to 'bool'}}
19 b = food(e < 2); // expected-warning {{implicit conversion turns floating-point number into bool: 'double' to 'bool'}}
21 foo(c, b); // expected-warning {{implicit conversion turns floating-point number into bool: 'float' to 'bool'}}
implicit-virtual-member-functions.cpp 12 void B::f() { // expected-note {{implicit default destructor for 'B' first required here}}
20 C::C() { } // expected-note {{implicit default destructor for 'C' first required here}}
27 new D; // expected-note {{implicit default destructor for 'D' first required here}}
conversion.cpp 19 return (E - I); // expected-warning {{implicit conversion loses integer precision}}
27 return x; // expected-warning {{implicit conversion loses integer precision}}
53 A() : x(10) {} // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
61 int a = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
63 b = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
65 int c = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
67 d = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
68 bool bl = NULL; // expected-warning {{implicit conversion of NULL constant to 'bool'}}
69 char ch = NULL; // expected-warning {{implicit conversion of NULL constant to 'char'}}
70 unsigned char uch = NULL; // expected-warning {{implicit conversion of NULL constant to 'unsigned char'}
    [all...]
attr-format.cpp 12 expected-error{{implicit this argument as the format string}}
16 expected-error{{invalid for the implicit this argument}}
27 // PR8625: correctly interpret static member calls as not having an implicit
39 // Make sure we interpret member operator calls as having an implicit
  /external/clang/test/Driver/
flags.c 2 // RUN: grep '"-no-implicit-float"' %t.log
5 // RUN: grep '"-no-implicit-float"' %t.log | count 0
8 // RUN: grep '"-no-implicit-float"' %t.log
10 // RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float %s 2> %t.log
11 // RUN: grep '"-no-implicit-float"' %t.log
14 // RUN: grep '"-no-implicit-float"' %t.log
17 // RUN: grep '"-no-implicit-float"' %t.log | count 0
19 // RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2> %t.log
20 // RUN: grep '"-no-implicit-float"' %t.log
  /external/clang/test/Frontend/
warning-mapping-2.c 4 void f0() { f1(); } // expected-error {{implicit declaration of function}}
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 16 int &use_X0_int(X0<int> x0i, // expected-note{{implicit instantiation first required here}}
18 x0i.f(); // expected-note{{implicit instantiation first required here}}
19 x0i.g(i); // expected-note{{implicit instantiation first required here}}
20 X0<int>::Nested nested; // expected-note{{implicit instantiation first required here}}
21 return X0<int>::member; // expected-note{{implicit instantiation first required here}}
  /external/clang/test/CXX/special/class.copy/
p20.cpp 18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment operator}}
22 struct ImplicitNonConstCopy2 { // expected-note{{the implicit copy assignment operator}}
27 struct ImplicitNonConstCopy3 { // expected-note{{the implicit copy assignment operator}}
  /external/clang/test/SemaObjCXX/
ivar-construct.mm 15 X<Y> x; // expected-note{{implicit default destructor}}
20 @implementation A // expected-note{{implicit default constructor}}
35 Incomplete<int> a[4][4][4]; // expected-error{{implicit instantiation of undefined template 'Incomplete<int>'}}
  /external/clang/test/Analysis/
auto-obj-dtors-cfg-output.cpp 188 // CHECK: 11: [B1.10].~A() (Implicit destructor)
189 // CHECK: 12: [B1.2].~A() (Implicit destructor)
201 // CHECK: 5: [B1.2].~A() (Implicit destructor)
215 // CHECK: 7: [B1.6].~A() (Implicit destructor)
216 // CHECK: 8: [B1.4].~A() (Implicit destructor)
219 // CHECK: 11: [B1.10].~A() (Implicit destructor)
220 // CHECK: 12: [B1.2].~A() (Implicit destructor)
230 // CHECK: 3: [B1.2].~A() (Implicit destructor)
231 // CHECK: 4: [B3.4].~A() (Implicit destructor)
232 // CHECK: 5: [B3.2].~A() (Implicit destructor
    [all...]
  /external/clang/test/Index/
complete-memfunc-cvquals.cpp 61 // Check implicit member access expressions.
62 // RUN: c-index-test -code-completion-at=%s:29:2 %s | FileCheck -check-prefix=CHECK-IMPLICIT-NOQUALS %s
63 // CHECK-IMPLICIT-NOQUALS: CXXMethod:{ResultType void}{TypedText babble}{LeftParen (}{RightParen )}{Informative const volatile} (35)
64 // CHECK-IMPLICIT-NOQUALS: CXXMethod:{ResultType void}{TypedText bar}{LeftParen (}{RightParen )} (34)
65 // CHECK-IMPLICIT-NOQUALS: CXXMethod:{ResultType void}{TypedText baz}{LeftParen (}{RightParen )}{Informative const} (35)
66 // CHECK-IMPLICIT-NOQUALS: CXXMethod:{ResultType void}{TypedText bingo}{LeftParen (}{RightParen )}{Informative volatile} (35)
68 // RUN: c-index-test -code-completion-at=%s:33:1 %s | FileCheck -check-prefix=CHECK-IMPLICIT-CONST %s
69 // CHECK-IMPLICIT-CONST: CXXMethod:{ResultType void}{TypedText babble}{LeftParen (}{RightParen )}{Informative const volatile} (35)
70 // CHECK-IMPLICIT-CONST-NOT: bar
71 // CHECK-IMPLICIT-CONST: CXXMethod:{ResultType void}{TypedText baz}{LeftParen (}{RightParen )}{Informative const} ( (…)
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>