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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/VFS/Inputs/
incomplete-umbrella.modulemap 1 framework module Incomplete {
2 umbrella header "Incomplete.h"
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
incomplete_type_helper.h 7 struct Incomplete;
12 typedef Holder<NS::Incomplete> IncompleteHolder;
  /external/clang/test/Sema/
cast-incomplete.c 9 (enum x)1; // expected-error {{cast to incomplete type}}
10 (struct y)a; // expected-error {{cast to incomplete type}}
11 (union z)b; // expected-error {{cast to incomplete type}}
12 (union z)1; // expected-error {{cast to incomplete type}}
incomplete-call.c 10 a(); // expected-error{{calling 'a' with incomplete return type 'struct foo'}}
11 b(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
12 c(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
incomplete-decl.c 5 void b; // expected-error {{variable has incomplete type 'void'}}
8 static void c; // expected-error {{variable has incomplete type 'void'}}
9 static struct foo g; // expected-warning {{tentative definition of variable with internal linkage has incomplete non-array type 'struct foo'}} \
16 struct foo bary[]; // expected-error {{array has incomplete element type 'struct foo'}}
20 void b; // expected-error {{variable has incomplete type 'void'}}
21 struct foo f; // expected-error {{variable has incomplete type 'struct foo'}}
25 int (*i)[] = &h+1; // expected-error {{arithmetic on a pointer to an incomplete type 'int []'}}
27 struct bar j = {1}; // expected-error {{variable has incomplete type 'struct bar'}} \
variadic-incomplete-arg-type.c 11 junk(1, *error, (void)0); // expected-error {{argument type 'struct __CFError' is incomplete}} \
12 // expected-error {{argument type 'void' is incomplete}}
  /external/ply/ply/example/ansic/
README 1 This example is incomplete. Was going to specify an ANSI C parser.
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_MapIncompleteSize.pbtxt 3 summary: "Op returns the number of incomplete elements in the underlying container."
api_def_OrderedMapIncompleteSize.pbtxt 3 summary: "Op returns the number of incomplete elements in the underlying container."
api_def_Betainc.pbtxt 3 summary: "Compute the regularized incomplete beta integral \\\\(I_x(a, b)\\\\)."
5 The regularized incomplete beta integral is defined as:
16 is the incomplete beta function and \\(B(a, b)\\) is the *complete*
api_def_BarrierIncompleteSize.pbtxt 12 The number of incomplete elements (i.e. those with some of their value
16 summary: "Computes the number of incomplete elements in the given barrier."
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointMatch.java 6 Incomplete,
  /external/clang/test/CXX/except/except.spec/
p2-dynamic-types.cpp 5 struct Incomplete; // expected-note 3 {{forward declaration}}
7 // Exception spec must not have incomplete types, or pointers to them, except
9 void ic1() throw(void); // expected-error {{incomplete type 'void' is not allowed in exception specification}}
10 void ic2() throw(Incomplete); // expected-error {{incomplete type 'Incomplete' is not allowed in exception specification}}
12 void ic4() throw(Incomplete*); // expected-error {{pointer to incomplete type 'Incomplete' is not allowed in exception specification}}
13 void ic5() throw(Incomplete&); // expected-error {{reference to incomplete type 'Incomplete' is not allowed in exception speci (…)
    [all...]
  /external/libcxx/
TODO.TXT 23 * INCOMPLETE - US 25: has_filename() is equivalent to just !empty()
24 * INCOMPLETE - US 31: Everything is defined in terms of one implicit host system
25 * INCOMPLETE - US 32: Meaning of 27.10.2.1 unclear
26 * INCOMPLETE - US 33: Definition of canonical path problematic
27 * INCOMPLETE - US 34: Are there attributes of a file that are not an aspect of the file system?
28 * INCOMPLETE - US 35: What synchronization is required to avoid a file system race?
29 * INCOMPLETE - US 36: Symbolic links themselves are attached to a directory via (hard) links
30 * INCOMPLETE - US 37: The term ?redundant current directory (dot) elements? is not defined
31 * INCOMPLETE - US 38: Duplicates §17.3.16
32 * INCOMPLETE - US 39: Remove note: Dot and dot-dot are not directorie
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/
TODO.TXT 23 * INCOMPLETE - US 25: has_filename() is equivalent to just !empty()
24 * INCOMPLETE - US 31: Everything is defined in terms of one implicit host system
25 * INCOMPLETE - US 32: Meaning of 27.10.2.1 unclear
26 * INCOMPLETE - US 33: Definition of canonical path problematic
27 * INCOMPLETE - US 34: Are there attributes of a file that are not an aspect of the file system?
28 * INCOMPLETE - US 35: What synchronization is required to avoid a file system race?
29 * INCOMPLETE - US 36: Symbolic links themselves are attached to a directory via (hard) links
30 * INCOMPLETE - US 37: The term ?redundant current directory (dot) elements? is not defined
31 * INCOMPLETE - US 38: Duplicates §17.3.16
32 * INCOMPLETE - US 39: Remove note: Dot and dot-dot are not directorie
    [all...]
  /external/clang/test/VFS/
incomplete-umbrella.m 2 // RUN: mkdir -p %t/Incomplete.framework/Headers
3 // RUN: echo '// IncompleteReal.h' > %t/Incomplete.framework/Headers/IncompleteReal.h
9 @import Incomplete;
10 // CHECK: umbrella header for module 'Incomplete' {{.*}}IncompleteVFS.h
11 // CHECK: umbrella header for module 'Incomplete' {{.*}}IncompleteReal.h
12 // CHECK: could not build module 'Incomplete'
  /external/clang/test/SemaCXX/
PR10243.cpp 6 S s; // expected-error{{field has incomplete type 'S'}}
11 S s; // expected-error{{field has incomplete type 'S'}}
16 S s; // expected-error{{field has incomplete type 'S'}}
21 S s; // expected-error{{field has incomplete type 'S'}}
incomplete-call.cpp 18 f(); // expected-error {{calling 'f' with incomplete return type 'A'}}
22 fp(); // expected-error {{calling function with incomplete return type 'A'}}
23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
26 b.f(); // expected-error {{calling 'f' with incomplete return type 'A'}}
28 b.operator()(); // expected-error {{calling 'operator()' with incomplete return type 'A'}}
29 b.operator A(); // expected-error {{calling 'operator A' with incomplete return type 'A'}}
30 b.operator!(); // expected-error {{calling 'operator!' with incomplete return type 'A'}}
32 !b; // expected-error {{calling 'operator!' with incomplete return type 'A'}}
33 b(); // expected-error {{calling 'operator()' with incomplete return type 'A'}}
34 b++; // expected-error {{calling 'operator++' with incomplete return type 'A'}
    [all...]
type-traits-incomplete.cpp 6 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}}
7 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}}
  /external/skqp/docs/
SkImageInfo_Reference.bmh 16 #Line # incomplete ##
20 #Line # incomplete ##
51 // incomplete
54 #SeeAlso incomplete
61 #Line # incomplete ##
67 #Line # incomplete ##
117 // incomplete
120 #SeeAlso incomplete
127 #Line # incomplete ##
153 // incomplete
    [all...]
  /external/clang/test/CXX/class/class.static/class.static.data/
p2.cpp 5 static inline struct B b; // expected-error {{incomplete type}} expected-note {{forward decl}}
6 static inline struct C c = {}; // expected-error {{incomplete type}} expected-note {{forward decl}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp 9 g(a); // expected-error {{argument type 'S' is incomplete}}
10 f(); // expected-error {{calling 'f' with incomplete return type 'S'}}
  /external/v8/tools/clang/plugins/tests/
class_with_incomplete_type.txt 2 ./class_with_incomplete_type.h:15:5: error: field has incomplete type 'B'
3 B incomplete;
  /frameworks/compile/slang/tests/F_reduce_general_bad_accumulator/
reduce_general_bad_accumulator.rs 8 // accumulator cannot be incomplete array
11 typedef int IntA[]; // incomplete (unknown element count)
22 // accumulator cannot be incomplete struct
25 struct Incomplete;
28 static void AccumStructIncomplete(struct Incomplete *accum, int val) { }
29 static void CombStructIncomplete(struct Incomplete *accum, const struct Incomplete *other) { }
34 static void OutStructIncomplete(int *out, const struct Incomplete *val) { }
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p4.cpp 20 struct Incomplete; // expected-note {{forward declaration of 'Incomplete'}}
22 Incomplete i; // expected-error {{field has incomplete type 'Incomplete'}}

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>