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

1 2 3 4 5 6 7 8 91011>>

  /art/test/128-reg-spilling-on-implicit-nullcheck/
info.txt 1 This is a compiler reggression test for missing reg spilling on implicit nullcheck.
  /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
  /external/clang/test/SemaCXX/
template-implicit-vars.cpp 11 // CHECK: VarDecl {{.*}} implicit used __range
12 // CHECK: VarDecl {{.*}} implicit used __range
13 // CHECK: VarDecl {{.*}} implicit used __begin
14 // CHECK: VarDecl {{.*}} implicit used __end
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'}}
9 b0 = 0 || ""; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
10 b0 = "" || 0; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
13 assert("error"); // expected-warning{{implicit conversion turns string literal into bool: 'const char [6]' to 'bool'}}
14 assert(0 || "error"); // expected-warning{{implicit conversion turns string literal into bool: 'const char [6]' to 'bool'}}
15 assert("error" || 0); // expected-warning{{implicit conversion turns string literal into bool: 'const char [6]' to 'bool'}}
19 while("hi") {} // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
20 do {} while("hi"); // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}}
21 for (;"hi";); // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}
    [all...]
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-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'}}
virtual-base-used.cpp 23 // expected-note@+3 {{implicit default constructor for 'B' first required here}}
24 // expected-note@+2 {{implicit destructor for 'B' first required here}}
31 D d; // expected-note {{implicit default constructor for 'D' first required here}}
33 void D::foo() { // expected-note {{implicit destructor for 'B' first required here}}
44 // expected-note@+2 {{implicit default constructor for 'E' first required here}}
46 struct F : public E { // expected-note {{implicit destructor for 'E' first required here}}
49 // expected-note@+2 {{implicit default constructor for 'F' first required here}}
56 G g; // expected-note {{implicit default constructor for 'G' first required here}}
58 void G::foo() { // expected-note {{implicit destructor for 'F' first required here}}
70 // expected-error@+3 {{implicit default constructor for 'I' must explicitly initialize the base class 'H' which does not have a de (…)
    [all...]
  /frameworks/compile/slang/tests/P_unknown_function/
stderr.txt.expect 1 unknown_function.rs:6:5: warning: implicit declaration of function 'bar' is invalid in C99
  /prebuilts/misc/common/swig/include/2.0.11/octave/
implicit.i 2 %include <typemaps/implicit.swg>
4 #warning "This file provides the %implicit directive, which is an old and fragile"
5 #warning "way to implement the C++ implicit conversion mechanism."
  /prebuilts/misc/common/swig/include/2.0.11/python/
implicit.i 2 %include <typemaps/implicit.swg>
4 #warning "This file provides the %implicit directive, which is an old and fragile"
5 #warning "way to implement the C++ implicit conversion mechanism."
  /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...]
  /external/clang/test/Driver/
flags.c 2 // TEST1: "-no-implicit-float"
5 // TEST2-NOT: "-no-implicit-float"
8 // TEST3: "-no-implicit-float"
10 // RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST4 %s
11 // TEST4: "-no-implicit-float"
13 // RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float -mimplicit-float %s 2>&1 | FileCheck -check-prefix=TEST4A %s
14 // TEST4A-NOT: "-no-implicit-float"
17 // TEST5: "-no-implicit-float"
20 // TEST6-NOT: "-no-implicit-float"
22 // RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST7 %
    [all...]
  /external/clang/test/Profile/
cxx-implicit.cpp 1 // Ensure that implicit methods aren't instrumented.
3 // RUN: %clang_cc1 -x c++ %s -triple %itanium_abi_triple -main-file-name cxx-implicit.cpp -o - -emit-llvm -fprofile-instr-generate | FileCheck %s
5 // An implicit constructor is generated for Base. We should not emit counters
  /external/clang/test/Frontend/
warning-mapping-2.c 4 void f0() { f1(); } // expected-error {{implicit declaration of function}}
  /external/clang/test/SemaObjCXX/
warn-objc-literal-conversion.mm 24 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
29 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
31 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
33 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
35 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
40 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
42 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
44 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
46 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}}
51 // expected-warning@-1{{implicit boolean conversion of Objective-C object literal always evaluates to true}
    [all...]
  /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/SemaObjC/
sign-conversion.m 26 [x setUint:sint]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'}}
27 x.uint = sint; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'}}
35 (void)((NSObject*)array[si]).hash; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'}}
37 (void)[((NSObject*)array[si]) hash]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'}}
38 (void)array[si]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'}}
  /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/Preprocessor/
pp-modules.c 6 // CHECK: @import Module; /* clang -E: implicit import for "{{.*Headers[/\\]Module.h}}" */
10 // CHECK: @import Module; /* clang -E: implicit import for "{{.*Headers[/\\]Module.h}}" */
14 // CHECK: @import Module; /* clang -E: implicit import for "{{.*}}Module.h" */{{$}}

Completed in 448 milliseconds

1 2 3 4 5 6 7 8 91011>>