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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Parser/
cxx-default-delete.cpp 6 int f() = delete, g; // expected-error{{'= delete' is a function definition}}
7 int o, p() = delete; // expected-error{{'= delete' is a function definition}}
10 // expected-error{{'= default' is a function definition}}
11 int s, t() = default; // expected-error{{'= default' is a function definition}}
  /external/clang/test/Sema/
2009-04-22-UnknownSize.c 3 static struct foo s; // expected-error { tentative definition has type 'struct foo' that is never completed }
var-redecl.c 3 int outer1; // expected-note{{previous definition is here}}
4 extern int outer2; // expected-note{{previous definition is here}}
6 int outer4; // expected-note{{previous definition is here}}
7 int outer5; // expected-note{{previous definition is here}}
8 int outer6(float); // expected-note{{previous definition is here}}
14 extern float outer3; // expected-note{{previous definition is here}}
19 extern int outer8; // expected-note{{previous definition is here}}
22 extern int outer9; // expected-note{{previous definition is here}}
32 extern int outer13; // expected-note{{previous definition is here}}
35 extern int outer11; // expected-note{{previous definition is here}
    [all...]
pragma-weak.c 4 #pragma weak both3 = __both3 // expected-note {{previous definition}}
9 #pragma weak a3 = __a3 // expected-note {{previous definition}}
typedef-redef.c 3 typedef const int x; // expected-note {{previous definition is here}}
9 int y; // expected-note 2 {{previous definition is here}}
incomplete-decl.c 6 struct foo f; // expected-error{{tentative definition has type 'struct foo' that is never completed}}
9 static struct foo g; // expected-warning {{tentative definition of variable with internal linkage has incomplete non-array type 'struct foo'}} \
10 expected-error{{tentative definition has type 'struct foo' that is never completed}}
15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}}
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}}
24 int h[]; // expected-warning {{tentative array definition assumed to have one element}}
  /external/clang/test/SemaObjC/
method-typecheck-2.m 4 - (void) doSomethingInProtocol: (float) x; // expected-note {{previous definition is here}}
5 + (void) doSomethingClassyInProtocol: (float) x; // expected-note {{previous definition is here}}
11 - (void) doSomething: (float) x; // expected-note {{previous definition is here}}
12 + (void) doSomethingClassy: (int) x; // expected-note {{previous definition is here}}
class-proto-1.m 5 @protocol p1,p2,p3; // expected-note {{protocol 'p2' has no definition}} \
6 // expected-note {{protocol 'p3' has no definition}}
18 @interface E1 <p2> @end // expected-warning {{cannot find protocol definition for 'p2'}}
25 @interface E2 <p1,p2,p3> @end // expected-warning {{cannot find protocol definition for 'p3'}}
42 @protocol UndefinedParentProtocol; // expected-note {{protocol 'UndefinedParentProtocol' has no definition}}
47 @interface SomeObject : NSObject <UndefinedProtocol> // expected-warning {{cannot find protocol definition for 'UndefinedProtocol'}}
category-1.m 5 @protocol p1,p2,p3; // expected-note {{protocol 'p1' has no definition}} \
6 // expected-note {{protocol 'p2' has no definition}}
8 @interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol definition for 'p1'}} expected-note {{previous definition is here}}
11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1' on interface 'MyClass1'}}
17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Category4' on interface 'MyClass1'}}
25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Category7' on interface 'MyClass1'}
    [all...]
  /external/llvm/test/MC/AsmParser/
macro-rept-err2.s 7 // CHECK: no matching '.endr' in definition
  /external/qemu/distrib/sdl-1.2.15/src/main/dummy/
SDL_dummy_main.c 2 /* Include the SDL main definition header */
  /prebuilts/misc/common/swig/include/2.0.11/octave/
stl.i 1 /* initial STL definition. extended as needed in each language */
  /prebuilts/misc/common/swig/include/2.0.11/python/
stl.i 1 /* initial STL definition. extended as needed in each language */
  /prebuilts/misc/common/swig/include/2.0.11/r/
stl.i 1 /* initial STL definition. extended as needed in each language */
  /external/clang/test/CXX/temp/temp.spec/
no-body.cpp 28 // Should recover as if definition
31 template void g0(int) { } // expected-error {{function cannot be defined in an explicit instantiation; if this declaration is meant to be a function definition, remove the 'template' keyword}}
33 template struct y0 { }; // expected-error {{class cannot be defined in an explicit instantiation; if this declaration is meant to be a class definition, remove the 'template' keyword}}
51 template void f1<int>(int) { } // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
53 template struct x1<int> { }; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
62 template void f2<int>(int) { } // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}}
63 template struct x2<int> { }; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keywo (…)
    [all...]
  /external/clang/test/Index/
print-type-size.cpp 7 // CHECK64: VarDecl=v:[[@LINE+2]]:6 (Definition) [type=void] [typekind=Void]
8 // CHECK32: VarDecl=v:[[@LINE+1]]:6 (Definition) [type=void] [typekind=Void]
11 // CHECK64: VarDecl=v1:[[@LINE+2]]:7 (Definition) [type=void *] [typekind=Pointer] [sizeof=8] [alignof=8]
12 // CHECK32: VarDecl=v1:[[@LINE+1]]:7 (Definition) [type=void *] [typekind=Pointer] [sizeof=4] [alignof=4]
16 // CHECK64: StructDecl=simple:[[@LINE+2]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=48] [alignof=8]
17 // CHECK32: StructDecl=simple:[[@LINE+1]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=36] [alignof=4]
21 // CHECK64: FieldDecl=c:[[@LINE+1]]:7 (Definition) [type=int] [typekind=Int] [sizeof=4] [alignof=4] [offsetof=40] [BitFieldSize=3]
25 // CHECK64: FieldDecl=f:[[@LINE+1]]:7 (Definition) [type=int] [typekind=Int] [sizeof=4] [alignof=4] [offsetof=133] [BitFieldSize=4]
27 // CHECK64: FieldDecl=g:[[@LINE+2]]:13 (Definition) [type=long long] [typekind=LongLong] [sizeof=8] [alignof=8] [offsetof=192]
28 // CHECK32: FieldDecl=g:[[@LINE+1]]:13 (Definition) [type=long long] [typekind=LongLong] [sizeof=8] [alignof=4] [offsetof=128
    [all...]
load-decls.c 12 // CHECK: load-decls.c:1:6: EnumDecl=Color:1:6 (Definition) Extent=[1:1 - 7:2]
13 // CHECK: load-decls.c:2:3: EnumConstantDecl=Red:2:3 (Definition) Extent=[2:3 - 2:6]
14 // CHECK: load-decls.c:3:3: EnumConstantDecl=Green:3:3 (Definition) Extent=[3:3 - 3:8]
15 // CHECK: load-decls.c:4:3: EnumConstantDecl=Blue:4:3 (Definition) Extent=[4:3 - 4:7]
16 // CHECK: load-decls.c:6:3: EnumConstantDecl=Rouge:6:3 (Definition) Extent=[6:3 - 6:14]
20 // CHECK: load-decls.c:9:21: ParmDecl=:9:21 (Definition) Extent=[9:14 - 9:27]
21 // CHECK: load-decls.c:9:26: ParmDecl=:9:26 (Definition) Extent=[9:23 - 9:26]
22 // CHECK: load-decls.c:9:34: ParmDecl=:9:34 (Definition) Extent=[9:29 - 9:34]
annotate-tokens-pp.c 49 // CHECK: Identifier: "STILL_NOTHING" [2:9 - 2:22] macro definition=STILL_NOTHING
51 // CHECK: Punctuation: "(" [2:30 - 2:31] macro definition=STILL_NOTHING
52 // CHECK: Identifier: "honk" [2:31 - 2:35] macro definition=STILL_NOTHING
53 // CHECK: Punctuation: "," [2:35 - 2:36] macro definition=STILL_NOTHING
54 // CHECK: Identifier: "warble" [2:36 - 2:42] macro definition=STILL_NOTHING
55 // CHECK: Punctuation: ")" [2:42 - 2:43] macro definition=STILL_NOTHING
58 // CHECK: Identifier: "BAR" [3:9 - 3:12] macro definition=BAR
59 // CHECK: Identifier: "baz" [3:13 - 3:16] macro definition=BAR
62 // CHECK: Identifier: "WIBBLE" [4:9 - 4:15] macro definition=WIBBLE
63 // CHECK: Punctuation: "(" [4:15 - 4:16] macro definition=WIBBL
    [all...]
redeclarations.cpp 9 // CHECK: redeclarations.h:1:7: ClassDecl=X:1:7 (Definition) Extent=[1:1 - 4:2]
10 // CHECK: redeclarations.h:8:7: ClassTemplate=B:8:7 (Definition) Extent=[7:1 - 10:2]
11 // CHECK: redeclarations.h:7:20: TemplateTypeParameter=T1:7:20 (Definition) Extent=[7:11 - 7:22]
12 // CHECK: redeclarations.h:7:33: TemplateTypeParameter=T2:7:33 (Definition) Extent=[7:24 - 7:35]
13 // CHECK: redeclarations.h:13:8: ClassTemplate=C:13:8 (Definition) Extent=[12:1 - 15:2]
14 // CHECK: redeclarations.h:12:17: TemplateTypeParameter=T:12:17 (Definition) Extent=[12:11 - 12:18]
15 // CHECK: redeclarations.h:17:7: ClassDecl=D:17:7 (Definition) Extent=[17:1 - 21:2]
17 // CHECK: redeclarations.h:19:19: FieldDecl=x:19:19 (Definition) Extent=[19:5 - 19:20]
21 // CHECK: redeclarations.cpp:3:7: ClassDecl=A:3:7 (Definition) Extent=[3:1 - 5:2]
  /external/chromium_org/tools/clang/plugins/tests/
weak_ptr_factory.txt 1 weak_ptr_factory.cpp:35:38: warning: [chromium-style] WeakPtrFactory members which refer to their outer class must be the last member in the outer class definition.
4 weak_ptr_factory.cpp:41:39: warning: [chromium-style] WeakPtrFactory members which refer to their outer class must be the last member in the outer class definition.
  /external/clang/test/CXX/stmt.stmt/stmt.select/
p3.cpp 6 if (int x = f()) { // expected-note 2{{previous definition}}
15 if (int x = f()) // expected-note 2{{previous definition}}
  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp 3 void func1(int i) { // expected-note{{previous definition is here}}
7 void func2(int i) try { // expected-note{{previous definition is here}}
12 void func3(int i) try { // expected-note {{previous definition is here}}
16 void func4(int i) try { // expected-note{{previous definition is here}}
28 } catch (int i) { // expected-note{{previous definition is here}}
34 } catch (int i) { // expected-note{{previous definition is here}}
  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
13 void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('unsigned int' vs 'unsigned int *')}}
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
typedef-redecl.cpp 3 typedef INT REALLY_INT; // expected-note {{previous definition is here}}
9 typedef int result_type; // expected-note {{previous definition is here}}
13 struct Y; // expected-note{{previous definition is here}}
17 struct Y2; // expected-error{{definition of type 'Y2' conflicts with typedef of the same name}}
19 void f(); // expected-note{{previous definition is here}}
22 typedef int f2; // expected-note{{previous definition is here}}
59 typedef T f(T t) { return t; } // expected-error {{function definition declared 'typedef'}}
70 typedef int q[C == 1 ? 1 : -1]; // expected-note{{previous definition is here}}
82 typedef int q[1]; // expected-note{{previous definition is here}}
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassReference.java 27 private final IClassDefinition definition; field in class:SigClassReference
29 public SigClassReference(IClassDefinition definition) {
30 this.definition = definition;
34 return definition;

Completed in 1487 milliseconds

1 23 4 5 6 7 8 91011>>