HomeSort by relevance Sort by last modified time
    Searched full:incomplete (Results 51 - 75 of 2139) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
ucn-cstring.c 12 printf("%s\n", "\U00"); // expected-error{{incomplete universal character name}}
13 printf("%s\n", "\U0001"); // expected-error{{incomplete universal character name}}
array-constraint.c 4 struct s* t (struct s z[]) { // expected-error {{array has incomplete element type}}
9 struct s v, *p; // expected-error {{variable has incomplete type 'struct s'}}
14 void *k (void l[2]) { // expected-error {{array has incomplete element type}}
extern-redecl.c 29 int test2v = sizeof(test2_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
34 int x = sizeof(test3_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
43 int x = sizeof(test4_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
79 (void)sizeof(test6_array2); // expected-error {{incomplete type}}
pointer-addition.c 7 b++; // expected-error {{arithmetic on a pointer to an incomplete type}}
8 b += 1; // expected-error {{arithmetic on a pointer to an incomplete type}}
14 b = 1+b; // expected-error {{arithmetic on a pointer to an incomplete type}}
22 e++; // expected-error {{arithmetic on a pointer to an incomplete type}}
  /external/clang/test/CXX/basic/basic.link/
p9.cpp 3 // FIXME: This test is woefully incomplete.
  /external/clang/test/CodeGen/
PR15826.c 18 struct aiocb uaiocb; // expected-error {{field has incomplete type}} expected-note {{forward declaration}}
  /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);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug443.go 8 // incomplete type definition evaluation. Issue 3709.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug443.go 8 // incomplete type definition evaluation. Issue 3709.
  /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/CXX/expr/expr.unary/expr.delete/
p5.cpp 3 // If the object being deleted has incomplete class type at the point of
9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}}
14 struct T1_A { T *x; ~T1_A() { delete x; } }; // expected-warning {{deleting pointer to incomplete type}}
  /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/clang/test/CodeGenCXX/
rtti-layout.cpp 68 struct Incomplete;
167 // Pointers to incomplete classes.
168 CHECK_VTABLE(Incomplete *, pointer);
169 CHECK(to<__pbase_type_info>(typeid(Incomplete *)).__flags == __pbase_type_info::__incomplete_mask);
170 CHECK(to<__pbase_type_info>(typeid(Incomplete **)).__flags == __pbase_type_info::__incomplete_mask);
171 CHECK(to<__pbase_type_info>(typeid(Incomplete ***)).__flags == __pbase_type_info::__incomplete_mask);
174 CHECK_VTABLE(int Incomplete::*, pointer_to_member);
175 CHECK(to<__pbase_type_info>(typeid(int Incomplete::*)).__flags == __pbase_type_info::__incomplete_class_mask);
176 CHECK(to<__pbase_type_info>(typeid(Incomplete Incomplete::*)).__flags == (__pbase_type_info::__incomplete_class_mask | __pbase_type_info::__incomplete_mask (…)
    [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/clang/test/SemaCXX/
alignof.cpp 14 const int test3 = __alignof__(s1); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
22 int test5 = __alignof__(s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
26 const int test7 = __alignof__(S2::s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
37 static const int test9 = __alignof__(s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
40 static const int test12 = __alignof__(S3::s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
57 S1 s; // expected-error {{incomplete type}}
openmp_default_simd_align.cpp 12 const int test3 = __builtin_omp_required_simd_align(decltype(s1)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'decltype(s1)' (aka 'S1')}}
20 int test5 = __builtin_omp_required_simd_align(decltype(s)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'S1'}}
24 const int test7 = __builtin_omp_required_simd_align(decltype(S2::s)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'S1'}}
35 static const int test9 = __builtin_omp_required_simd_align(decltype(s2.s)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'S1'}}
38 static const int test12 = __builtin_omp_required_simd_align(decltype(S3::s2.s)); // expected-error {{invalid application of '__builtin_omp_required_simd_align' to an incomplete type 'S1'}}
55 S1 s; // expected-error {{incomplete type}}
underlying_type.cpp 48 // expected-error@-2 {{variable has incomplete type}}
50 // expected-error@-1 {{cannot determine underlying type of incomplete enumeration type 'PR19966::Invalid'}}
54 // expected-error@-1 {{cannot determine underlying type of incomplete enumeration type 'PR19966::E'}}
array-bound-merge.cpp 11 int d[1][]; // expected-error {{array has incomplete element type 'int []'}}
  /external/llvm/test/Object/
macho-invalid.test 4 RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-incomplete-load-command 2>&1 \
5 RUN: | FileCheck -check-prefix INCOMPLETE-LOADC %s
6 INCOMPLETE-LOADC: Invalid data was encountered while parsing the file.
41 RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-incomplete-segment-load-command 2>&1 | FileCheck -check-prefix INCOMPLETE-SEGMENT-LOADC %s
42 INCOMPLETE-SEGMENT-LOADC: Invalid data was encountered while parsing the file
  /external/clang/test/Modules/
on-demand-build.m 2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fno-objc-infer-related-result-type -Werror -Wno-error=incomplete-umbrella -fmodules-cache-path=%t -F %S/Inputs -I %S/Inputs -verify %s
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fno-objc-infer-related-result-type -Werror -Wno-error=incomplete-umbrella -x objective-c++ -fmodules-cache-path=%t -F %S/Inputs -I %S/Inputs -verify %s
4 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fno-objc-infer-related-result-type -Werror -Wno-error=incomplete-umbrella -fmodules-cache-path=%t -F %S/Inputs -I %S/Inputs -verify %s
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p9-0x.cpp 3 // FIXME: We should catch the case of tag with an incomplete type here (which
  /external/clang/test/SemaTemplate/
class-template-id-2.cpp 14 class C2 : public N::A<float> { }; // expected-error{{base class has incomplete type}}
  /external/icu/icu4c/source/data/translit/
en.txt 17 // This list is currently incomplete, and care should be taken to translate these identifiers.
  /external/jacoco/org.jacoco.agent/
README.TXT 3 the source tree. Which means this bundle is incomplete when directly used in the
  /external/libchrome/base/test/
opaque_ref_counted.h 13 // when the pointed-to type is opaque (i.e., incomplete).

Completed in 1313 milliseconds

1 23 4 5 6 7 8 91011>>