Searched refs:incomplete (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/Sema/
H A Dmemset-invalid-1.c7 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'}} \
H A Dtypecheck-binop.c3 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'}} */
H A Doffsetof.c53 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'}}
H A Dconditional-expr.c5 *(0 ? (double *)0 : (void *)(int *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}}
6 *(0 ? (double *)0 : (void *)(double *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}}
7 *(0 ? (double *)0 : (int *)(void *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} expected-warning {{pointer type mismatch ('double *' and 'int *')}}
9 *((void *) 0) = 0; // expected-error {{incomplete type 'void' is not assignable}}
69 int (*incomplete)[];
71 sizeof(*(test0 ? incomplete : complete)); // expected-warning {{expression result unused}}
72 sizeof(*(test0 ? complete : incomplete)); // expected-warning {{expression result unused}}
H A Datomic-ops.c48 struct Incomplete *incomplete; variable in typeref:struct:Incomplete
69 _Static_assert(__atomic_always_lock_free(1, incomplete), "");
70 _Static_assert(!__atomic_always_lock_free(2, incomplete), "");
71 _Static_assert(!__atomic_always_lock_free(4, incomplete), "");
/external/clang/test/SemaCXX/
H A Dqualified-names-diag.cpp19 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'}}
H A Dexpression-traits.cpp464 void expr_unary_op_1(int* pointer, struct incomplete* pointerToIncompleteType)
474 // [Note: a pointer to an incomplete type
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp26 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/bison/lib/
H A Dmbrtowc.c113 /* mbtowc does not distinguish between invalid and incomplete multibyte
141 goto incomplete;
146 goto incomplete;
154 goto incomplete;
160 goto incomplete;
170 goto incomplete;
176 goto incomplete;
196 goto incomplete;
207 goto incomplete;
224 goto incomplete;
[all...]
/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior.cpp300 extern int incomplete[];
304 return incomplete[n];
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp94 extern int incomplete[];
95 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}}
98 for (auto &a : also_incomplete) // expected-error {{cannot use incomplete type 'struct Incomplete [2]' as a range}}
179 for (auto a : *also_incomplete) { // expected-error {{cannot use incomplete type 'struct Incomplete' as a range}}
/external/clang/test/CodeGen/
H A Datomic-ops.c198 int lock_free(struct Incomplete *incomplete) { argument
211 __atomic_is_lock_free(4, incomplete);
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp6.cpp86 alignas(4) struct Incomplete incomplete; // expected-error {{incomplete type}} expected-note {{forward declaration}} variable in typeref:struct:Incomplete
/external/junit/src/org/junit/experimental/theories/
H A DTheories.java107 protected void runWithIncompleteAssignment(Assignments incomplete) argument
110 for (PotentialAssignment source : incomplete
112 runWithAssignment(incomplete.assignNext(source));
/external/clang/test/CXX/basic/basic.types/
H A Dp10.cpp28 constexpr Incomplete incomplete = {}; // expected-error {{constexpr variable cannot have non-literal type 'const Incomplete'}} expected-note {{incomplete type 'const Incomplete' is not a literal type}} variable
29 constexpr Incomplete incomplete2[] = {}; // expected-error {{constexpr variable cannot have non-literal type 'Incomplete const[]'}} expected-note {{incomplete type 'Incomplete const[]' is not a literal type}}
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Ddelphi.php17 * - Updated the very incomplete keyword and type lists
H A Dpowershell.php256 //Highlighting of the keywords will be incomplete or incorrect!
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dprinting.py296 incomplete = total - expected - unexpected
297 if incomplete:
299 incomplete_str = " (%d didn't run)" % incomplete
/external/grub/stage2/
H A Ddisk_io.c932 static int incomplete, disk_choice; variable
966 incomplete = 0;
1097 incomplete = 1;
1362 if (*buf == '/' || (ptr = set_device (buf)) || incomplete)
1366 if (*buf == '(' && (incomplete || ! *ptr))
/external/webkit/Tools/android/flex-2.5.4a/
H A Dscan.l203 synerr( _( "incomplete name definition" ) );
/external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DASCIIMathPHP-2.0.class.php40 * -- Fixed bug that stopped script execution for incomplete expressions
452 * Used when an expression is incomplete
/external/speex/libspeex/
H A Djitter.c469 int incomplete = 0; local
574 incomplete = 1;
575 /*fprintf (stderr, "incomplete: %d %d %d %d\n", jitter->packets[i].timestamp, jitter->pointer_timestamp, chunk_size, jitter->packets[i].span);*/
/external/bison/data/
H A Dglr.c922 YYFPRINTF (stderr, "%s incomplete ", yymsg);
/external/jpeg/
H A Dconfigure1222 echo $ac_n "checking for broken incomplete types""... $ac_c" 1>&6
1223 echo "configure:1224: checking for broken incomplete types" >&5
/external/qemu/distrib/jpeg-6b/
H A Dconfigure1222 echo $ac_n "checking for broken incomplete types""... $ac_c" 1>&6
1223 echo "configure:1224: checking for broken incomplete types" >&5

Completed in 1576 milliseconds

12