HomeSort by relevance Sort by last modified time
    Searched full:incomplete (Results 26 - 50 of 1629) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4.cpp 46 struct Incomplete; // expected-note{{forward declaration of 'Incomplete'}}
48 auto l1 = [] () -> Incomplete { }; // expected-error{{incomplete result type 'Incomplete' in lambda expression}}
  /external/clang/test/SemaCXX/
qualified-names-diag.cpp 19 struct incomplete; // expected-note{{forward declaration of 'bar::incomplete'}}
29 (void)sizeof(bar::incomplete); // expected-error{{invalid application of 'sizeof' to an incomplete type 'bar::incomplete'}}
auto-subst-failure.cpp 4 auto a = f(); // expected-error {{variable has incomplete type 'void'}}
8 auto d(f()); // expected-error {{variable has incomplete type 'void'}}
12 (void)new auto(f()); // expected-error {{allocation of incomplete type 'void'}}
typeid.cpp 20 (void)typeid(X); // expected-error{{'typeid' of incomplete type 'X'}}
21 (void)typeid(X&); // expected-error{{'typeid' of incomplete type 'X'}}
22 (void)typeid(x); // expected-error{{'typeid' of incomplete type 'X'}}
conversion-incomplete-type.cpp 12 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
20 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
PR6618.cpp 4 bar g; // expected-error {{field has incomplete type}}
static-cast-complete-type.cpp 12 (void)static_cast<T>(10); // expected-error{{'T' is an incomplete type}}
  /external/clang/test/ASTMerge/Inputs/
struct1.c 38 // Incomplete type
41 // Incomplete type
44 // Incomplete type
struct2.c 35 // Incomplete type
38 // Incomplete type
41 // Incomplete type
  /external/clang/test/CodeGenCXX/
expr.cpp 32 // Incomplete type in conditional operator.
33 // Check operations on incomplete types.
thunks-available-externally.cpp 6 struct Incomplete;
10 virtual void g(Incomplete);
18 virtual void g(Incomplete);
28 virtual void g(Incomplete);
  /external/clang/test/Sema/
offsetof.c 53 struct incomplete; // expected-note 2 {{forward declaration of 'struct incomplete'}}
54 int test1[__builtin_offsetof(struct incomplete, foo)]; // expected-error {{offsetof of incomplete type 'struct incomplete'}}
56 int test2[__builtin_offsetof(struct incomplete[10], [4].foo)]; // expected-error {{array has incomplete element type 'struct incomplete'}}
ucn-cstring.c 12 printf("%s\n", "\U00"); // expected-error{{incomplete universal character name}}
13 printf("%s\n", "\U0001"); // expected-error{{incomplete universal character name}}
pointer-addition.c 7 b++; // expected-error {{arithmetic on a pointer to an incomplete type}}
8 b += 1; // expected-error {{arithmetic on a pointer to an incomplete type}}
14 b = 1+b; // expected-error {{arithmetic on a pointer to an incomplete type}}
22 e++; // expected-error {{arithmetic on a pointer to an incomplete type}}
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 26 extern struct Incomplete incomplete; // expected-note 4{{forward decl}}
48 auto new2 = new int[1][incomplete]; // expected-error {{incomplete}}
56 enum2 = incomplete, // expected-error {{incomplete}}
65 alignas(incomplete) int alignas2; // expected-error {{incomplete}}
74 int array2[incomplete]; // expected-error {{non-integer type}}
82 int bitfield2 : incomplete; // expected-error {{incomplete}
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p3.cpp 11 int value1 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
13 int value2 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
21 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
28 int value = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
35 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
45 int y = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
61 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
73 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
86 int y = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
88 int z = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}
    [all...]
  /external/clang/test/CodeGen/
functions.c 51 // PR6911 - incomplete function types
52 struct Incomplete;
53 void f8_callback(struct Incomplete);
54 void f8_user(void (*callback)(struct Incomplete));
PR15826.c 18 struct aiocb uaiocb; // expected-error {{field has incomplete type}} expected-note {{forward declaration}}
  /external/clang/test/SemaTemplate/
nested-incomplete-class.cpp 8 // Should not get errors about bar being incomplete here.
  /external/clang/test/VFS/Inputs/
vfsoverlay.yaml 33 { 'name': 'Incomplete.framework', 'type': 'directory',
37 { 'name': 'Incomplete.h', 'type': 'file',
38 'external-contents': 'INPUT_DIR/Incomplete.h'
46 'external-contents': 'INPUT_DIR/incomplete-umbrella.modulemap'
  /ndk/tests/device/test-stlport_shared-exception/jni/
spec5.cpp 1 // Test for extension to allow incomplete types in an
  /ndk/tests/device/test-stlport_static-exception/jni/
spec5.cpp 1 // Test for extension to allow incomplete types in an
  /external/clang/test/Modules/
Werror.m 7 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
13 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella
18 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
19 // RUN: -Werror -Wno-incomplete-umbrella
25 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
26 // RUN: -Werror=header-guard -Wno-incomplete-umbrella
31 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
37 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
38 // RUN: -Werror -Wno-incomplete-umbrella
46 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella
    [all...]
  /external/clang/test/Parser/
typeof.c 13 void ary[7] fff; // expected-error{{array has incomplete element type 'void'}} expected-error{{expected ';' at end of declaration}}
14 typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-note {{to match this '('}} expected-error {{variable has incomplete type 'typeof(void)' (aka 'void')}}
  /external/clang/test/CXX/basic/basic.link/
p9.cpp 3 // FIXME: This test is woefully incomplete.

Completed in 1024 milliseconds

12 3 4 5 6 7 8 91011>>