HomeSort by relevance Sort by last modified time
    Searched refs:incomplete (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/clang/test/Sema/
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'}} \
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'}} */
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'}}
conditional-expr.c 5 *(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/clang/test/SemaCXX/
vla.cpp 12 struct incomplete; // expected-note {{forward declaration}}
17 incomplete c[n]; // expected-error {{incomplete}}
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'}}
  /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/bison/lib/
mbrtowc.c 113 /* 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/
graph.cc 47 bool incomplete) {
48 Node* node = NewNodeUnchecked(op, input_count, inputs, incomplete);
55 Node** inputs, bool incomplete) {
57 Node::New(zone(), NextNodeId(), op, input_count, inputs, incomplete);
bytecode-graph-builder.h 67 Node* NewNode(const Operator* op, bool incomplete = false) {
68 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
112 bool incomplete);
  /external/autotest/frontend/client/src/autotest/common/
StatusSummary.java 12 public int incomplete = 0; field in class:StatusSummary
23 summary.incomplete = getField(group, incompleteCountField);
64 return incomplete;
  /external/clang/test/Analysis/
out-of-bounds.c 158 extern struct incomplete incomplete;
159 int *p = (int *)&incomplete;
  /external/clang/test/CodeGenCXX/
debug-info.cpp 107 // CHECK: [[INCTYPE:![0-9]*]] = !DICompositeType(tag: DW_TAG_structure_type, name: "incomplete"
130 struct incomplete;
131 incomplete (*x)[3];
catch-undef-behavior.cpp 323 extern int incomplete[];
327 return incomplete[n];
  /external/strace/
print_sigevent.c 85 # warning unfamiliar struct sigevent => incomplete SIGEV_THREAD_ID decoding
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_emit.c 48 int32_t viddec_emit_contr_tag(viddec_emitter *emit, viddec_input_buffer_t *ibuf, uint8_t incomplete, uint32_t using_next)
55 if(!incomplete)
  /external/clang/tools/clang-format/
clang-format.py 103 print 'clang-format: incomplete (syntax errors)'
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/
Android.mk 8 # mm_camera_interface.c has incomplete field initializer.
  /external/clang/test/CodeGen/
big-atomic-ops.c 198 int lock_free(struct Incomplete *incomplete) {
211 __atomic_is_lock_free(4, incomplete);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
unwind-bad.l 5 .*:16: Warning: Previous .save incomplete
10 .*:28: Warning: Previous .save incomplete
15 .*:40: Warning: Previous .save incomplete
35 .*:90: Warning: Previous .save incomplete
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p6.cpp 86 alignas(4) struct Incomplete incomplete; // expected-error {{incomplete type}} expected-note {{forward declaration}} variable in typeref:struct:Incomplete
  /external/google-breakpad/src/testing/scripts/
gmock_doctor.py 221 clang_regex1 = (r'error: field has incomplete type '
228 clang_regex2 = (r'error: field has incomplete type '
256 r'\'sizeof\' to incomplete type \'(?P<type>.*)\'')
259 r'\'sizeof\' to an incomplete type '
272 return _GenericDiagnoser('IBRA', 'Incomplete By-Reference Argument Type',
  /external/junit/src/org/junit/experimental/theories/
Theories.java 107 protected void runWithIncompleteAssignment(Assignments incomplete)
110 for (PotentialAssignment source : incomplete
112 runWithAssignment(incomplete.assignNext(source));
  /external/mesa3d/src/mesa/main/
texobj.c 394 * 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(t, BASE, "base level = %d is invalid", baseLevel)
    [all...]
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 31 struct Incomplete; // expected-note 2{{forward declaration of 'Incomplete'}}
34 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}
    [all...]

Completed in 4016 milliseconds

1 2 3 4