/external/clang/test/VFS/Inputs/ |
incomplete-umbrella.modulemap | 1 framework module Incomplete { 2 umbrella header "Incomplete.h"
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/ |
PasspointMatch.java | 6 Incomplete,
|
/external/clang/test/Sema/ |
cast-incomplete.c | 9 (enum x)1; // expected-error {{cast to incomplete type}} 10 (struct y)a; // expected-error {{cast to incomplete type}} 11 (union z)b; // expected-error {{cast to incomplete type}} 12 (union z)1; // expected-error {{cast to incomplete type}}
|
incomplete-call.c | 10 a(); // expected-error{{calling 'a' with incomplete return type 'struct foo'}} 11 b(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}} 12 c(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
|
incomplete-decl.c | 5 void b; // expected-error {{variable has incomplete type 'void'}} 8 static void c; // expected-error {{variable has incomplete type 'void'}} 9 static struct foo g; // expected-warning {{tentative definition of variable with internal linkage has incomplete non-array type 'struct foo'}} \ 16 struct foo bary[]; // expected-error {{array has incomplete element type 'struct foo'}} 20 void b; // expected-error {{variable has incomplete type 'void'}} 21 struct foo f; // expected-error {{variable has incomplete type 'struct foo'}} 25 int (*i)[] = &h+1; // expected-error {{arithmetic on a pointer to an incomplete type 'int []'}} 27 struct bar j = {1}; // expected-error {{variable has incomplete type 'struct bar'}} \
|
variadic-incomplete-arg-type.c | 11 junk(1, *error, (void)0); // expected-error {{argument type 'struct __CFError' is incomplete}} \ 12 // expected-error {{argument type 'void' is incomplete}}
|
typecheck-binop.c | 3 struct incomplete; // expected-note{{forward declaration of 'struct incomplete'}} 9 void *sub2(struct incomplete *P) { 10 return P-4; /* expected-error{{arithmetic on a pointer to an incomplete type 'struct incomplete'}} */
|
memset-invalid-1.c | 7 typedef struct __incomplete *incomplete; typedef in typeref:struct:__incomplete 11 incomplete query = 0; 12 memset(query, 0, sizeof(query)); // expected-warning {{'memset' call operates on objects of type 'struct __incomplete' while the size is based on a different type 'incomplete'}} \
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
PasspointMatch.java | 6 Incomplete,
|
/external/clang/test/CXX/except/except.spec/ |
p2-dynamic-types.cpp | 5 struct Incomplete; // expected-note 3 {{forward declaration}} 7 // Exception spec must not have incomplete types, or pointers to them, except 9 void ic1() throw(void); // expected-error {{incomplete type 'void' is not allowed in exception specification}} 10 void ic2() throw(Incomplete); // expected-error {{incomplete type 'Incomplete' is not allowed in exception specification}} 12 void ic4() throw(Incomplete*); // expected-error {{pointer to incomplete type 'Incomplete' is not allowed in exception specification}} 13 void ic5() throw(Incomplete&); // expected-error {{reference to incomplete type 'Incomplete' is not allowed in exception speci (…) [all...] |
/external/clang/test/VFS/ |
incomplete-umbrella.m | 2 // RUN: mkdir -p %t/Incomplete.framework/Headers 3 // RUN: echo '// IncompleteReal.h' > %t/Incomplete.framework/Headers/IncompleteReal.h 9 @import Incomplete; 10 // CHECK: umbrella header for module 'Incomplete' {{.*}}IncompleteVFS.h 11 // CHECK: umbrella header for module 'Incomplete' {{.*}}IncompleteReal.h 12 // CHECK: could not build module 'Incomplete'
|
/external/clang/test/SemaCXX/ |
PR10243.cpp | 6 S s; // expected-error{{field has incomplete type 'S'}} 11 S s; // expected-error{{field has incomplete type 'S'}} 16 S s; // expected-error{{field has incomplete type 'S'}} 21 S s; // expected-error{{field has incomplete type 'S'}}
|
incomplete-call.cpp | 18 f(); // expected-error {{calling 'f' with incomplete return type 'A'}} 22 fp(); // expected-error {{calling function with incomplete return type 'A'}} 23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}} 26 b.f(); // expected-error {{calling 'f' with incomplete return type 'A'}} 28 b.operator()(); // expected-error {{calling 'operator()' with incomplete return type 'A'}} 29 b.operator A(); // expected-error {{calling 'operator A' with incomplete return type 'A'}} 30 b.operator!(); // expected-error {{calling 'operator!' with incomplete return type 'A'}} 32 !b; // expected-error {{calling 'operator!' with incomplete return type 'A'}} 33 b(); // expected-error {{calling 'operator()' with incomplete return type 'A'}} 34 b++; // expected-error {{calling 'operator++' with incomplete return type 'A'} [all...] |
type-traits-incomplete.cpp | 6 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}} 7 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}}
|
devirtualize-vtable-marking.cpp | 6 static_assert(sizeof(T) > 0, "incomplete T"); 12 struct Incomplete; 21 OwnPtr<Incomplete> m_sqlError; 34 struct Incomplete; 44 OwnPtr<Incomplete> m_sqlError;
|
vla.cpp | 12 struct incomplete; // expected-note {{forward declaration}} 17 incomplete c[n]; // expected-error {{incomplete}}
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/ |
p9.cpp | 9 g(a); // expected-error {{argument type 'S' is incomplete}} 10 f(); // expected-error {{calling 'f' with incomplete return type 'S'}}
|
/frameworks/compile/slang/tests/F_reduce_general_bad_accumulator/ |
reduce_general_bad_accumulator.rs | 8 // accumulator cannot be incomplete array 11 typedef int IntA[]; // incomplete (unknown element count) 22 // accumulator cannot be incomplete struct 25 struct Incomplete; 28 static void AccumStructIncomplete(struct Incomplete *accum, int val) { } 29 static void CombStructIncomplete(struct Incomplete *accum, const struct Incomplete *other) { } 34 static void OutStructIncomplete(int *out, const struct Incomplete *val) { }
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
p4.cpp | 20 struct Incomplete; // expected-note {{forward declaration of 'Incomplete'}} 22 Incomplete i; // expected-error {{field has incomplete type 'Incomplete'}}
|
/external/clang/test/SemaObjC/ |
ivar-sem-check-1.m | 9 int arr[]; // expected-error {{field has incomplete type}} 10 struct S IC; // expected-error {{field has incomplete type}} 17 char ch[]; // expected-error {{field has incomplete type}}
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p10.cpp | 7 X<int> x; // expected-error{{incomplete type}}
|
/external/clang/test/SemaObjCXX/ |
ivar-construct.mm | 24 Z z; // expected-error{{incomplete type}} 32 template<typename T> struct Incomplete; // expected-note{{declared here}} 35 Incomplete<int> a[4][4][4]; // expected-error{{implicit instantiation of undefined template 'Incomplete<int>'}}
|
contextual-convert-to-id.mm | 34 struct Incomplete; // expected-note{{forward declaration}} 36 void methodCallToIncomplete(Incomplete &incomplete) { 37 [incomplete knownMethod]; // expected-error{{incomplete receiver type 'Incomplete'}}
|
/external/clang/test/SemaTemplate/ |
instantiate-exception-spec.cpp | 5 template<typename T> void f1(T*) throw(T); // expected-error{{incomplete type 'Incomplete' is not allowed in exception specification}} 6 struct Incomplete; // expected-note{{forward}} 8 void test_f1(Incomplete *incomplete_p, int *int_p) {
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/ |
p1.cpp | 8 volatile void ar2[10]; // expected-error {{incomplete element type 'volatile void'}} 22 // An array with unknown bound is incomplete. 24 // So is an array with an incomplete element type. 25 struct Incomplete; // expected-note {{forward declaration}} 26 Incomplete ar9[10]; // expected-error {{incomplete type}} 29 void fun(int p1[], Incomplete p2[10]); 31 extern Incomplete ear2[10];
|