Searched refs:incomplete (Results 1 - 25 of 44) 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'}}
/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/Analysis/
H A Dout-of-bounds.c158 extern struct incomplete incomplete;
159 int *p = (int *)&incomplete;
/external/clang/test/CodeGenCXX/
H A Ddebug-info.cpp86 struct incomplete;
87 incomplete (*x)[3];
90 // CHECK: [[INCARRAY]] = {{.*}}metadata [[INCTYPE:![0-9]*]], metadata {{![0-9]*}}, i32 0, i32 0} ; [ DW_TAG_array_type ] [line 0, size 0, align 0, offset 0] [from incomplete]
91 // CHECK: [[INCTYPE]] = {{.*}} ; [ DW_TAG_structure_type ] [incomplete]{{.*}} [decl]
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/chromium_org/third_party/lcov-1.9/bin/
H A Dgeninfo2550 goto incomplete if (!defined($value));
2555 goto incomplete if (!defined($filename));
2564 goto incomplete if (!defined($function));
2585 incomplete: label
2727 goto incomplete if (!defined($word));
2733 graph_skip(*HANDLE, 4, "version") or goto incomplete;
2737 goto incomplete if (!defined($tag));
2740 goto incomplete if (!defined($tag));
2746 goto incomplete if (!defined($function));
2750 or goto incomplete;
2772 incomplete: label
3024 incomplete: label
[all...]
/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/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexobj.c394 * Mark a texture object as incomplete. There are actually three kinds of
396 * 1. "base incomplete": the base level of the texture is invalid so no
398 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
401 * sampler state renders the texture incomplete.
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
405 * \param fmt... string describing why it's incomplete (for debugging).
408 incomplete(struct gl_texture_object *t, enum base_mipmap bm, function
419 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
454 * they would be incomplete (no BO attached) is actually specced to be
464 incomplete(
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexobj.c394 * Mark a texture object as incomplete. There are actually three kinds of
396 * 1. "base incomplete": the base level of the texture is invalid so no
398 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
401 * sampler state renders the texture incomplete.
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
405 * \param fmt... string describing why it's incomplete (for debugging).
408 incomplete(struct gl_texture_object *t, enum base_mipmap bm, function
419 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
454 * they would be incomplete (no BO attached) is actually specced to be
464 incomplete(
[all...]
/external/clang/test/CXX/basic/basic.types/
H A Dp10.cpp34 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
35 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/chromium_org/third_party/mesa/src/docs/OLD/
H A DMESA_trace.spec35 valid (but possibly incomplete) C code and can be compiled and
/external/mesa3d/docs/OLD/
H A DMESA_trace.spec35 valid (but possibly incomplete) C code and can be compiled and
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting.py293 incomplete = total - expected - unexpected
295 if incomplete:
297 incomplete_str = " (%d didn't run)" % incomplete

Completed in 633 milliseconds

12