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

123

/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}}
/external/v8/tools/clang/plugins/tests/
H A Dclass_with_incomplete_type.h6 // of a class that has fields of incomplete type.
15 B incomplete; member in struct:A
/external/clang/test/SemaCXX/
H A Dvla.cpp12 struct incomplete; // expected-note {{forward declaration}}
17 incomplete c[n]; // expected-error {{incomplete}}
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/v8/src/compiler/
H A Dgraph.cc47 bool incomplete) {
48 Node* node = NewNodeUnchecked(op, input_count, inputs, incomplete);
54 Node* const* inputs, bool incomplete) {
56 Node::New(zone(), NextNodeId(), op, input_count, inputs, incomplete);
46 NewNode(const Operator* op, int input_count, Node* const* inputs, bool incomplete) argument
53 NewNodeUnchecked(const Operator* op, int input_count, Node* const* inputs, bool incomplete) argument
H A Dbytecode-graph-builder.h63 Node* NewNode(const Operator* op, bool incomplete = false) {
64 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
108 bool incomplete);
H A Dast-graph-builder.h167 Node* NewNode(const Operator* op, bool incomplete = false) {
168 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
203 bool incomplete = false) {
204 return MakeNode(op, value_input_count, value_inputs, incomplete);
219 bool incomplete);
/external/autotest/frontend/client/src/autotest/common/
H A DStatusSummary.java12 public int incomplete = 0; field in class:StatusSummary
23 summary.incomplete = getField(group, incompleteCountField);
64 return incomplete;
/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.cpp20 // CHECK: ![[INCTYPE]] = !DICompositeType(tag: DW_TAG_structure_type, name: "incomplete"
134 struct incomplete;
135 incomplete (*x)[3];
H A Dcatch-undef-behavior.cpp323 extern int incomplete[];
327 return incomplete[n];
/external/mesa3d/src/mesa/main/
H A Ddlist.h60 bool incomplete; /**< Did we fail to construct this atlas? */ member in struct:gl_bitmap_atlas
H A Dtexobj.c601 * Mark a texture object as incomplete. There are actually three kinds of
603 * 1. "base incomplete": the base level of the texture is invalid so no
605 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
608 * sampler state renders the texture incomplete.
611 * \param bm either BASE or MIPMAP to indicate what's incomplete
612 * \param fmt... string describing why it's incomplete (for debugging).
615 incomplete(struct gl_texture_object *t, enum base_mipmap bm, function
626 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
661 * they would be incomplete (no BO attached) is actually specced to be
671 incomplete(
[all...]
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp108 extern int incomplete[];
109 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}}
112 for (auto &a : also_incomplete) // expected-error {{cannot use incomplete type 'struct Incomplete [2]' as a range}}
198 for (auto a : *also_incomplete) { // expected-error {{cannot use incomplete type 'struct Incomplete' as a range}}
/external/clang/test/CodeGen/
H A Dbig-atomic-ops.c198 int lock_free(struct Incomplete *incomplete) { argument
211 __atomic_is_lock_free(4, incomplete);
H A Datomic-ops.c329 int lock_free(struct Incomplete *incomplete) { argument
342 __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/main/java/org/junit/experimental/theories/
H A DTheories.java208 protected void runWithIncompleteAssignment(Assignments incomplete) argument
210 for (PotentialAssignment source : incomplete
212 runWithAssignment(incomplete.assignNext(source));
/external/deqp/framework/common/
H A DtcuTestCase.hpp190 static TestStatus incomplete (void) { return TestStatus(QP_TEST_RESULT_LAST, ""); } function in class:tcu::TestStatus
/external/mesa3d/docs/specs/OLD/
H A DMESA_trace.spec35 valid (but possibly incomplete) C code and can be compiled and

Completed in 621 milliseconds

123