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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Modules/
odr.cpp 4 // expected-error@a.h:8 {{'X::n' from module 'a' is not present in definition of 'X' provided earlier}}
5 struct X { // expected-note {{definition has no member 'n'}}
17 // expected-note@a.h:5 {{definition has no member 'e2'}}
19 // expected-note@b.h:1 {{definition has no member 'n'}}
21 // expected-error@b.h:5 {{'E::e2' from module 'b' is not present in definition of 'E' in module 'a'}}
22 // expected-error@a.h:3 {{'Y::f' from module 'a' is not present in definition of 'Y' in module 'b'}}
23 // expected-error@a.h:2 {{'Y::n' from module 'a' is not present in definition of 'Y' in module 'b'}}
  /external/clang/test/SemaObjC/
class-def-test-1.m 3 @protocol SUPER; // expected-note {{protocol 'SUPER' has no definition}}
5 @interface SUPER <SUPER> @end // expected-warning {{cannot find protocol definition for 'SUPER'}}
7 typedef int INTF; // expected-note {{previous definition is here}}
11 @interface OBJECT @end // expected-note {{previous definition is here}}
13 @interface INTF1 : OBJECT @end // expected-note {{previous definition is here}}
15 @interface INTF1 : OBJECT @end // expected-error {{duplicate interface definition for class 'INTF1'}}
19 typedef int OBJECT2; // expected-note 2 {{previous definition is here}}
deprecate_function_containers.m 5 void p_foo() {} // expected-warning {{function definition inside an Objective-C container is deprecated}}
9 void foo() {} // expected-warning {{function definition inside an Objective-C container is deprecated}}
10 inline void v_foo() {} // expected-warning {{function definition inside an Objective-C container is deprecated}}
11 static int s_foo() {return 0; } // expected-warning {{function definition inside an Objective-C container is deprecated}}
12 static inline int si_val() { return 1; } // expected-warning {{function definition inside an Objective-C container is deprecated}}
16 void cat_foo() {} // expected-warning {{function definition inside an Objective-C container is deprecated}}
32 static inline void prototype_observe_moin1(void (^callback)(id)) { // expected-warning {{function definition inside an Objective-C container is deprecated}}
alias-test-2.m 4 @interface Super @end // expected-note {{previous definition is here}}
6 @interface MyWpModule @end // expected-note {{previous definition is here}}
15 @interface MyAlias : AliasForSuper // expected-error {{duplicate interface definition for class 'MyWpModule'}}
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}}
  /external/clang/test/Index/
linkage.c 22 // CHECK: EnumDecl=Baz:3:6 (Definition)linkage=External
23 // CHECK: EnumConstantDecl=Qux:3:12 (Definition)linkage=External
27 // CHECK: FunctionDecl=bar:7:6 (Definition)linkage=External
28 // CHECK: ParmDecl=y:7:14 (Definition)linkage=NoLinkage
29 // CHECK: VarDecl=z:8:14 (Definition)linkage=NoLinkage
30 // CHECK: VarDecl=k:9:7 (Definition)linkage=NoLinkage
33 // CHECK: ParmDecl=:12:22 (Definition)linkage=NoLinkage
35 // CHECK: ParmDecl=dio:14:16 (Definition)linkage=NoLinkage
36 // CHECK: ParmDecl=tria:14:25 (Definition)linkage=NoLinkage
arc-complete.m 10 // CHECK-CC1: macro definition:{TypedText __autoreleasing} (70)
14 // CHECK-CC1: macro definition:{TypedText __strong} (70)
15 // CHECK-CC1: macro definition:{TypedText __unsafe_unretained} (70)
16 // CHECK-CC1: macro definition:{TypedText __weak} (70)
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...]
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 10 friend void ::f1() { } // expected-error{{friend function definition cannot be qualified with '::'}}
11 friend void X::f2() { } // expected-error{{friend function definition cannot be qualified with 'X::'}}
15 friend void T::f() {} // expected-error{{friend function definition cannot be qualified with 'T::'}}
  /external/clang/test/CodeGen/
debug-info-limited.c 3 // Ensure we emit the full definition of 'foo' even though only its declaration
4 // is needed, since C has no ODR to ensure that the definition will be the same
5 // in whatever TU actually uses/requires the definition of 'foo'.
  /external/clang/test/Modules/Inputs/
cxx-irgen-left.h 15 // Trigger declaration, but not definition, of special members.
17 // Trigger definition of copy constructor.
23 // Trigger definition of A::~A() and lookup of operator delete.
  /libcore/luni/src/main/java/org/w3c/dom/
TypeInfo.java 47 * <li> If <b>[member type definition]</b> exists:
50 * namespace} properties of the <b>[member type definition]</b> property;
57 * <li> If the <b>[type definition]</b> property exists:
60 * namespace} properties of the <b>[type definition]</b> property;
67 * <li> If the <b>[member type definition anonymous]</b> exists:
69 * <li>If it is false, then expose <b>[member type definition name]</b> and <b>[member type definition namespace]</b> properties;
76 * <li> If the <b>[type definition anonymous]</b> exists:
78 * <li>If it is false, then expose <b>[type definition name]</b> and <b>[type definition namespace]</b> properties
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p3.cpp 2 void f(int) { } // expected-note {{previous definition is here}}
  /external/clang/test/Modules/Inputs/merge-template-members/
b1.h 3 // Add update record for definition of A<int> and constructors.
b2.h 3 // Add update record for definition of A<int> and constructors.
c.h 7 // Trigger instantiation of definition of A<int>.
  /external/clang/test/Modules/Inputs/redecl-found-building-chains/
d.h 5 #include "c.h" // ensure that our type for A doesn't reference the definition in b
  /external/clang/test/Parser/
argument_redef.c 4 void foo(int A) { /* expected-note {{previous definition is here}} */
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 }
  /external/libxml2/result/schemas/
extension1_0_2.err 1 ./test/schemas/extension1_2.xml:1: element title: Schemas validity error : Element 'title': Element content is not allowed, because the content type is a simple type definition.
  /external/llvm/test/Assembler/
invalid-fwdref2.ll 1 ; RUN: not llvm-as %s -disable-output 2>&1 | grep "forward reference and definition of global have different types"
  /external/llvm/test/MC/AsmParser/
macro-rept-err2.s 7 // CHECK: no matching '.endr' in definition
  /external/shflags/bin/
gen_test_results.flags 3 # Flag definition overrides for the gen_test_results.sh script.
  /prebuilts/misc/common/swig/include/2.0.11/octave/
stl.i 1 /* initial STL definition. extended as needed in each language */

Completed in 297 milliseconds

1 23 4 5 6 7 8 91011>>