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

1 23 4 5 6 7 8 91011>>

  /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/Modules/
on-demand-build.m 2 // RUN: %clang_cc1 -fmodules -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 -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 -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/Sema/
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}}
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/CXX/temp/temp.spec/temp.explicit/
p1.cpp 7 T value; // expected-error{{incomplete}}
31 U member2; // expected-error{{incomplete}}
50 struct Incomplete; // expected-note{{forward declaration}}
63 U member2; // expected-error{{incomplete}}
81 template struct X2<int, Incomplete>::Inner; // expected-note{{instantiation}}
  /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...]
address-space-ref.cpp 14 // For a reference to an incomplete type in an alternate address space, output
26 // For a reference to an incomplete type in addrspace(0), output nonnull.
  /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}}
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 []'}}
exceptions.cpp 13 } catch(void v) { // expected-error {{cannot catch incomplete type 'void'}}
14 } catch(A a) { // expected-error {{cannot catch incomplete type 'A'}}
15 } catch(A *a) { // expected-error {{cannot catch pointer to incomplete type 'A'}}
16 } catch(A &a) { // expected-error {{cannot catch reference to incomplete type 'A'}}
31 throw throw; // expected-error {{cannot throw object of incomplete type 'void'}}
32 throw (A*)0; // expected-error {{cannot throw pointer to object of incomplete type 'A'}}
138 void f() throw (T); // expected-error {{pointer to incomplete type 'Decay::E' is not allowed in exception specification}}
  /libcore/luni/src/main/java/java/lang/annotation/
IncompleteAnnotationException.java 36 * Constructs an instance with the incomplete annotation type and the name
42 * the name of the incomplete element.
62 * Returns the incomplete element's name.
  /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}}
instantiate-overload-candidates.cpp 11 // incomplete types.
12 T t; // expected-error{{field 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/linux-tools-perf/src/tools/perf/
CREDITS 6 Here is an (incomplete!) list of main contributors to those files
  /external/proguard/src/proguard/classfile/
package.html 11 an incomplete representation that can be only be read. It is however
  /external/skia/platform_tools/android/app/jni/
AndroidKeyToSkKey.h 16 // Convert an Android keycode to an SkKey. This is an incomplete list, only
  /external/clang/test/SemaObjC/
exprs.m 40 (void)@encode(Incomplete_ObjC_class); // expected-error {{incomplete type}}
41 (void)@encode(struct Incomplete_struct); // expected-error {{incomplete type}}
  /packages/inputmethods/LatinIME/java/res/xml/
rowkeys_nepali_romanized1.xml 29 render dotted circle for incomplete combining letter of some scripts, different
34 render dotted circle for incomplete combining letter of some scripts, different
43 render dotted circle for incomplete combining letter of some scripts, different
48 render dotted circle for incomplete combining letter of some scripts, different
61 render dotted circle for incomplete combining letter of some scripts, different
72 render dotted circle for incomplete combining letter of some scripts, different
81 render dotted circle for incomplete combining letter of some scripts, different
108 render dotted circle for incomplete combining letter of some scripts, different
117 render dotted circle for incomplete combining letter of some scripts, different
126 render dotted circle for incomplete combining letter of some scripts, differen
    [all...]
rowkeys_nepali_traditional2.xml 35 render dotted circle for incomplete combining letter of some scripts, different
46 render dotted circle for incomplete combining letter of some scripts, different
53 render dotted circle for incomplete combining letter of some scripts, different
62 render dotted circle for incomplete combining letter of some scripts, different
75 render dotted circle for incomplete combining letter of some scripts, different
88 render dotted circle for incomplete combining letter of some scripts, different
95 render dotted circle for incomplete combining letter of some scripts, different

Completed in 408 milliseconds

1 23 4 5 6 7 8 91011>>