Home
last modified time | relevance | path

Searched refs:definition (Results 1 – 25 of 1502) sorted by relevance

12345678910>>...61

/external/clang/test/SemaObjC/
Dcheck-dup-objc-decls-1.m3 @interface Foo // expected-note {{previous definition is here}}
8 @class Bar; // expected-note {{previous definition is here}}
16 typedef int OBJECT; // expected-note {{previous definition is here}}
21 typedef int Gorf; // expected-note {{previous definition is here}}
23 …{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
32 @interface A<P> @end // expected-note {{previous definition is here}}
33 @interface A<Q> @end // expected-error {{duplicate interface definition for class 'A'}}
35 @protocol PP<P> @end // expected-note {{previous definition is here}}
36 @protocol PP<Q> @end // expected-warning {{duplicate protocol definition of 'PP'}}
38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}}
[all …]
Dcategory-1.m5 @protocol p1,p2,p3; // expected-note {{protocol 'p1' has no definition}} \
6 // expected-note {{protocol 'p2' has no definition}}
8 …<p1> // expected-warning {{cannot find protocol definition for 'p1'}} expected-note {{previous def…
11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'…
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 'Catego…
25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Catego…
26 @interface MyClass1 (Category8) @end // expected-warning {{duplicate definition of category 'Catego…
[all …]
Ddeprecate_function_containers.m5 void p_foo() {} // expected-warning {{function definition inside an Objective-C container is deprec…
9 void foo() {} // expected-warning {{function definition inside an Objective-C container is deprecat…
10 inline void v_foo() {} // expected-warning {{function definition inside an Objective-C container is…
11 static int s_foo() {return 0; } // expected-warning {{function definition inside an Objective-C con…
12 static inline int si_val() { return 1; } // expected-warning {{function definition inside an Object…
16 void cat_foo() {} // expected-warning {{function definition inside an Objective-C container is depr…
32 …e_observe_moin1(void (^callback)(id)) { // expected-warning {{function definition inside an Object…
Dclass-def-test-1.m3 @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}}
Dclass-proto-1.m5 @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 … UndefinedParentProtocol; // expected-note {{protocol 'UndefinedParentProtocol' has no definition}}
47 …SObject <UndefinedProtocol> // expected-warning {{cannot find protocol definition for 'UndefinedPr…
Dmethod-undefined-warn-1.m11 @implementation INTF // expected-warning {{method definition for 'int_meth' not found}} \
12 // expected-warning {{method definition for 'cls_meth' not found}} \
13 // expected-warning {{method definition for 'cls_meth1:' not found}}
27 @implementation INTF1 // expected-warning {{method definition for 'int_meth' not found}} \
28 // expected-warning {{method definition for 'cls_meth' not found}} \
29 // expected-warning {{method definition for 'cls_meth1:' not found}}
Dmethod-typecheck-1.m4 - (void) setMoo: (int) x; // expected-note {{previous definition is here}}
5 - (int) setMoo1: (int) x; // expected-note {{previous definition is here}}
18 + (void) cMoo: (int) x; // expected-note 2 {{previous definition is here}}
28 - (void) setCat: (int) x; // expected-note 2 {{previous definition is here}}
29 + (void) cCat: (int) x; // expected-note {{previous definition is here}}
44 - (float)returnCGFloat; // expected-note {{previous definition is here}}
Divar-lookup.m54 int IVAR; // expected-note 4 {{previous definition is here}}
61 int PIVAR; // expected-note {{previous definition is here}}
137 int d; // expected-note {{previous definition is here}}
138 NSString *e_strong; // expected-note {{previous definition is here}}
139 NSData *f_weak; // expected-note {{previous definition is here}}
140 int g; // expected-note 2 {{previous definition is here}}
145 int g; // expected-note {{previous definition is here}} \
Dmethod-typecheck-2.m4 - (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}}
Dmethod-conflict-1.m15 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}}
30 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
31 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
47 - (void) test1:(A*) object; // broken-note {{previous definition is here}}
58 - (void) test1:(id) object; // broken-note {{previous definition is here}}
68 - (B*) test2; // broken-note {{previous definition is here}}
Dalias-test-2.m4 @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 'My…
/external/r8/src/main/java/com/android/tools/r8/ir/regalloc/
DRegisterMove.java17 Instruction definition; field in RegisterMove
25 public RegisterMove(int dst, MoveType type, Instruction definition) { in RegisterMove() argument
29 assert definition.isConstInstruction(); in RegisterMove()
30 this.definition = definition; in RegisterMove()
62 return src + dst * 3 + type.hashCode() * 5 + (definition == null ? 0 : definition.hashCode()); in hashCode()
71 return o.src == src && o.dst == dst && o.type == type && o.definition == definition; in equals()
/external/libxml2/result/
Dsvg2.rdr60 4 3 #text 0 1 Java Font definition:Dialog 0
71 4 3 #text 0 1 Java Font definition:Helvetica 0
99 4 3 #text 0 1 Java Font definition:Dialog 0
110 4 3 #text 0 1 Java Font definition:Helvetica 700
159 4 3 #text 0 1 Java Font definition:Dialog 700
170 4 3 #text 0 1 Java Font definition:Dialog 700
Dsvg2.rde60 4 3 #text 0 1 Java Font definition:Dialog 0
71 4 3 #text 0 1 Java Font definition:Helvetica 0
99 4 3 #text 0 1 Java Font definition:Dialog 0
110 4 3 #text 0 1 Java Font definition:Helvetica 700
159 4 3 #text 0 1 Java Font definition:Dialog 700
170 4 3 #text 0 1 Java Font definition:Dialog 700
/external/libxml2/result/schemas/
Dderivation-ok-restriction-2-1-1_0_0.err1 …th the corresponding 'required' attribute use of the base complex type definition '{http://FOO}typ…
2 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ…
3 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ…
4 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ…
5 …attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typ…
6 …use for the 'required' attribute use 'barB_3' of the base complex type definition '{http://FOO}typ…
Dderivation-ok-restriction-4-1-err_0_0.err1 …omplex type 'type.A': The complex type definition has an attribute wildcard, but the base complex …
2 …ildcard is not a valid subset of the wildcard in the base complex type definition '{http://FOO}bas…
3 …the attribute wildcard is weaker than the one in the base complex type definition '{http://FOO}bas…
/external/clang/test/Index/
Darc-complete.m10 // 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)
Dcomplete-exprs.m27 // CHECK-CC1: macro definition:{TypedText bool} (51)
28 // CHECK-CC1: macro definition:{TypedText NO} (65)
30 // CHECK-CC1: macro definition:{TypedText YES} (65)
48 // CHECK-CC4: macro definition:{TypedText bool} (51)
49 // CHECK-CC4: macro definition:{TypedText NO} (65)
51 // CHECK-CC4: macro definition:{TypedText YES} (65)
/external/python/cpython2/Lib/idlelib/
Dconfig-highlight.def15 definition-foreground= #0000ff
16 definition-background= #ffffff
46 definition-foreground= #0000ff
47 definition-background= #ffffff
85 definition-foreground = #5e5eff
87 definition-background = #002240
/external/v8/tools/clang/plugins/tests/
Dweak_ptr_factory.txt1 …ory members which refer to their outer class must be the last member in the outer class definition.
4 …ory members which refer to their outer class must be the last member in the outer class definition.
7 …ory members which refer to their outer class must be the last member in the outer class definition.
10 …ory members which refer to their outer class must be the last member in the outer class definition.
/external/markdown/docs/extensions/
Dfootnotes.txt23 Footnotes[^1] have a label[^label] and a definition[^!DEF].
27 [^!DEF]: The definition of a footnote.
29 A footnote definition may contain multiple lines, paragraphs, code blocks,
33 [^1]: The first paragraph of the definition.
35 Paragraph two of the definition.
/external/curl/m4/
Dcurl-reentrant.m435 dnl Checks if the preprocessor _REENTRANT definition
87 dnl Checks if the preprocessor _REENTRANT definition
120 dnl Checks if the preprocessor _REENTRANT definition
153 dnl Checks if the preprocessor _REENTRANT definition
186 dnl Checks if the preprocessor _REENTRANT definition
219 dnl Checks if the preprocessor _REENTRANT definition
256 dnl Checks if the preprocessor _REENTRANT definition
289 dnl Checks if the preprocessor _REENTRANT definition
322 dnl Checks if the preprocessor _REENTRANT definition
355 dnl Checks if the preprocessor _REENTRANT definition
[all …]
/external/elfutils/
DNOTES12 uses the bar() definition from libbar.so and does not mention the definition
14 definition in y2.o.
26 has to use the definition in -lbar and not pull the definition from liby3.a.
/external/clang/test/Modules/
Delaborated-type-specifier-from-hidden-module.m7 // FIXME: compatible definition should not be an error.
10 // Incompatible definition.
12 // expected-note@elaborated-type-structs.h:* 2 {{previous definition is here}}
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUnicodeRegex.java216 definition = entry.getValue();
224 String altered2 = definition2.replace(variable, definition);
374 StringBuffer definition = new StringBuffer();
405 definition.append(linePart.substring(equalsPos+1).trim());
410 definition.append(bnfLineSeparator).append(linePart);
414 variables.put(variable, definition.toString());
416 definition.setLength(0);

12345678910>>...61