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

1 2 3

  /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}}
atomic-ops.c 48 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/
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...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
mbrtowc.c 112 /* mbtowc does not distinguish between invalid and incomplete multibyte
140 goto incomplete;
145 goto incomplete;
153 goto incomplete;
159 goto incomplete;
169 goto incomplete;
175 goto incomplete;
194 goto incomplete;
205 goto incomplete;
219 goto incomplete;
    [all...]
  /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 86 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]
catch-undef-behavior.cpp 300 extern int incomplete[];
304 return incomplete[n];
  /external/chromium_org/chrome/browser/nacl_host/test/
gdb_rsp.py 51 'incomplete reply message: %r' % reply)
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 94 extern int incomplete[];
95 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}}
97 extern struct Incomplete also_incomplete[2]; // expected-note {{forward declaration}}
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/
atomic-ops.c 198 int lock_free(struct Incomplete *incomplete) {
211 __atomic_is_lock_free(4, incomplete);
  /external/chromium_org/third_party/lcov-1.9/bin/
geninfo 2585 incomplete: label
2772 incomplete: label
3024 incomplete: label
    [all...]
  /external/chromium/testing/gmock/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/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/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/chromium_org/third_party/mesa/src/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/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...]
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_trace.spec 35 valid (but possibly incomplete) C code and can be compiled and
  /external/mesa3d/docs/OLD/
MESA_trace.spec 35 valid (but possibly incomplete) C code and can be compiled and
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
HTMLParser.py 17 incomplete = re.compile('&[a-zA-Z#]') variable
209 match = incomplete.match(rawdata, i)
214 # incomplete
330 # or -1 if incomplete.
362 # Internal -- parse endtag, return end or -1 if incomplete

Completed in 858 milliseconds

1 2 3