Home
last modified time | relevance | path

Searched refs:deprecated (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/external/libxml2/
DDOCBparser.c43 static int deprecated = 0; in docbEncodeEntities() local
45 if (!deprecated) { in docbEncodeEntities()
48 deprecated = 1; in docbEncodeEntities()
67 static int deprecated = 0; in docbParseDocument() local
69 if (!deprecated) { in docbParseDocument()
72 deprecated = 1; in docbParseDocument()
88 static int deprecated = 0; in docbFreeParserCtxt() local
90 if (!deprecated) { in docbFreeParserCtxt()
93 deprecated = 1; in docbFreeParserCtxt()
115 static int deprecated = 0; in docbParseChunk() local
[all …]
Dlegacy.c55 static int deprecated = 0; in htmlDecodeEntities() local
57 if (!deprecated) { in htmlDecodeEntities()
60 deprecated = 1; in htmlDecodeEntities()
416 static int deprecated = 0; in xmlDecodeEntities() local
418 if (!deprecated) { in xmlDecodeEntities()
421 deprecated = 1; in xmlDecodeEntities()
446 static int deprecated = 0; in xmlNamespaceParseNCName() local
448 if (!deprecated) { in xmlNamespaceParseNCName()
451 deprecated = 1; in xmlNamespaceParseNCName()
481 static int deprecated = 0; in xmlNamespaceParseQName() local
[all …]
/external/clang/test/SemaObjC/
Dattr-deprecated.m4 int X __attribute__((deprecated)); // expected-note 2 {{declared here}}
6 + (void)F __attribute__((deprecated)); // expected-note 2 {{declared here}} argument
7 - (void)f __attribute__((deprecated)); // expected-note 4 {{declared here}} argument
11 + (void)F __attribute__((deprecated))
13 [self F]; // no warning, since the caller is also deprecated.
18 X++; // expected-warning{{'X' is deprecated}}
19 self->X++; // expected-warning{{'X' is deprecated}}
20 [self f]; // expected-warning{{'f' is deprecated}}
25 [self f]; // no warning, the caller is deprecated in its interface.
35 [super F]; // expected-warning{{'F' is deprecated}}
[all …]
Dwarn-deprecated-implementations.m5 - (void) D __attribute__((deprecated)); // expected-note {{method 'D' declared here}} argument
9 + (void)F __attribute__((deprecated)); // expected-note {{method 'F' declared here}} argument
13 - (void) E __attribute__((deprecated)); // expected-note {{method 'E' declared here}} category
17 + (void)F { } // expected-warning {{Implementing deprecated method}}
18 - (void) D {} // expected-warning {{Implementing deprecated method}}
19 - (void) E {} // expected-warning {{Implementing deprecated method}}
22 __attribute__((deprecated))
26 @implementation CL // expected-warning {{Implementing deprecated class}}
29 @implementation CL ( SomeCategory ) // expected-warning {{'CL' is deprecated}} \
30 // expected-warning {{Implementing deprecated category}}
[all …]
Dspecial-dep-unavail-warning.m7 - (void) depInA1 __attribute__((deprecated)); argument
9 - (void) depInA2 __attribute__((deprecated)); argument
12 - (void) depunavailInA1 __attribute__((deprecated)) __attribute__((unavailable)); // expected-note …
13 - (void)FuzzyMeth __attribute__((deprecated)); argument
19 - (void) depInA __attribute__((deprecated)); argument
20 - (void) depInA2 __attribute__((deprecated)); argument
23 - (void) depunavailInA __attribute__((deprecated)) __attribute__((unavailable)); // expected-note {…
26 - (void)FuzzyMeth1 __attribute__((deprecated)); argument
33 [c depInA]; // expected-warning {{'depInA' maybe deprecated because receiver type is unknown}}
35 [c depInA1]; // expected-warning {{'depInA1' maybe deprecated because receiver type is unknown}}
[all …]
Dattr-availability.m4 - (void)proto_method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expe… argument
8 - (void)method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-n… argument
17 [a method]; // expected-warning{{'method' is deprecated: first deprecated in Mac OS X 10.2}}
18 [b method]; // expected-warning {{'method' is deprecated: first deprecated in Mac OS X 10.2}}
19 …[a proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in Mac OS X …
20 …[b proto_method]; // expected-warning{{'proto_method' is deprecated: first deprecated in Mac OS X …
Dmethod-attributes.m14 - (int) foo1: (int)arg1 __attribute__((deprecated)); argument
18 - (int) foo2: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)); // expected-note …
19 - (int) foo3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) __attribute__((ns_…
23 - (int) foo: (int)arg1 __attribute__((deprecated)){ // expected-warning {{attributes on method imp… argument
29 - (int) foo2: (int)arg1 __attribute__((deprecated)) { // expected-warning {{attributes on method i… argument
32 - (int) foo3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) __attribute__((ns_…
33 - (void) dep __attribute__((deprecated)) { } // OK private methodn argument
63 -(id)method __attribute__((deprecated)); argument
66 - (id) method3: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((…
67 - (id) method4: (int)arg1 __attribute__((aligned(16))) __attribute__((deprecated)) __attribute__((…
[all …]
Dprotocol-attribute.m9 __attribute ((deprecated)) @protocol MyProto1 // expected-note 7 {{declared here}} category
12 @protocol Proto2 <MyProto1> // expected-warning {{'MyProto1' is deprecated}}
17 @interface MyClass1 <MyProto1> // expected-warning {{'MyProto1' is deprecated}}
23 @interface Derived : MyClass1 <MyProto1> // expected-warning {{'MyProto1' is deprecated}}
25 id <MyProto1> ivar; // expected-warning {{'MyProto1' is deprecated}}
29 @interface MyClass1 (Category) <MyProto1, Proto2> // expected-warning {{'MyProto1' is deprecated}}
34 Class <MyProto1> clsP1 = 0; // expected-warning {{'MyProto1' is deprecated}}
41 __attribute ((unavailable)) __attribute ((deprecated)) @protocol XProto; // expected-note{{marked u…
47 MyClass1 <MyProto1> *p1; // expected-warning {{'MyProto1' is deprecated}}
Dwarn-protocol-method-deprecated.m6 - (void)deprecatedProtocolMethod __attribute__((deprecated)); // expected-note 2 {{method 'deprecat… argument
14 - (void)deprecatedInstanceMethod __attribute__((deprecated)); // expected-note {{method 'deprecated… argument
23 …testObj deprecatedInstanceMethod]; // expected-warning {{'deprecatedInstanceMethod' is deprecated}}
26 …testObj deprecatedProtocolMethod]; // expected-warning {{'deprecatedProtocolMethod' is deprecated}}
30 …stProto deprecatedProtocolMethod]; // expected-warning {{'deprecatedProtocolMethod' is deprecated}}
Dwarn-isa-ref.m21 …[(*x).isa self]; // expected-warning {{direct access to objective-c's isa is deprecated in favor o…
22 …[x->isa self]; // expected-warning {{direct access to objective-c's isa is deprecated in favor of …
75 (void)v->isa; // expected-warning {{direct access to objective-c's isa is deprecated}}
76 (void)w->isa; // expected-warning {{direct access to objective-c's isa is deprecated}}
77 (void)x->isa; // expected-warning {{direct access to objective-c's isa is deprecated}}
78 (void)y->isa; // expected-warning {{direct access to objective-c's isa is deprecated}}
Dno-ivar-in-interface-block.m6 …@protected int P_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
8 …public int PU_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
10 …rivate int PRV_IVAR; // expected-warning {{declaration of ivars in the interface is deprecated}}
Dwarn-forward-class-attr-deprecated.m7 - (id) filenames __attribute__((deprecated)); argument
12 - (id) filenames __attribute__((deprecated)); argument
19 …filenames :[scope filenames]]; // expected-warning {{'filenames' maybe deprecated because receiver…
/external/clang/test/Sema/
Dattr-deprecated.c3 int f() __attribute__((deprecated)); // expected-note 2 {{declared here}}
4 void g() __attribute__((deprecated));
7 extern int var __attribute__((deprecated)); // expected-note {{declared here}}
25 int old_fn() __attribute__ ((deprecated));
35 int x __attribute__((deprecated)); // expected-note 3 {{declared here}}
44 typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{declared here}}
47 struct __attribute__((deprecated,
55 foo_dep *test4 __attribute__((deprecated));
56 struct bar_dep *test5 __attribute__((deprecated));
60 typedef foo_dep test7(struct bar_dep*) __attribute__((deprecated));
[all …]
Dattr-availability.c3 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warnin…
4 void f1() __attribute__((availability(ios,obsoleted=2.1,deprecated=3.0))); // expected-warning{{fe…
5 void f2() __attribute__((availability(ios,introduced=2.1,deprecated=2.1)));
11 ATSFontGetName(const char *oName) __attribute__((availability(macosx,introduced=8.0,deprecated=9.0,…
28 void f4(int) __attribute__((availability(ios,deprecated=3.0)));
31 void f5(int) __attribute__((availability(ios,deprecated=3.0),
34 void f6(int) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{previous attribu…
35 void f6(int) __attribute__((availability(ios,deprecated=4.0))); // expected-warning {{availability …
38 void f7(int) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{previous attribu…
39 void f7(int) __attribute__((availability(ios,deprecated=4.0))); // expected-warning {{availability …
Dattr-availability-macosx.c3 void f0(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.6)));
5 void f2(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5))); // expected-not…
7 …_((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduce…
22 foo __attribute__((availability(macosx,introduced=8.0,deprecated=9.0)))
26 bar __attribute__((availability(macosx,introduced=8.0,deprecated=9.0))) = foo
29 enum __attribute__((availability(macosx,introduced=8.0,deprecated=9.0))) {
Dtypeof-use-deprecated.c3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expec…
7 union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expec…
11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-not…
15 struct foo { int x; } __attribute__((deprecated)); // expected-note {{'foo' declared here}}
16 typedef struct foo bar __attribute__((deprecated)); // expected-note {{'bar' declared here}}
22 typedef struct gorf T __attribute__((deprecated)); // expected-note {{'T' declared here}}
Dattr-availability-ios.c3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'…
5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'…
7 …_((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduce…
9 …__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expec…
10 void f6(int) __attribute__((availability(ios,deprecated=3.0)));
Dattr-deprecated-message.c4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' decl…
10 typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared her…
18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expecte…
24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}}
DMicrosoftExtensions.c90 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' decl…
91 struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{declared here}}
94 __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' declared here}} in Dfunc1()
96 struct __declspec(deprecated(123)) DS2 {}; // expected-error {{argument to deprecated attribute was…
/external/clang/test/SemaCXX/
Dattr-deprecated.cpp3 void f() __attribute__((deprecated)); // expected-note 2 {{declared here}}
5 void h(A* a) __attribute__((deprecated));
7 int b __attribute__((deprecated)); // expected-note 2 {{declared here}}
29 virtual void f() __attribute__((deprecated)); // expected-note 4 {{declared here}}
59 virtual void f() __attribute__((deprecated));
71 void foo(int) __attribute__((deprecated)); // expected-note {{declared here}}
73 void foo(short) __attribute__((deprecated)); // expected-note {{declared here}}
78 friend void foo(A*) __attribute__((deprecated)); // expected-note {{declared here}}
84 void foo(const Foo &f) __attribute__((deprecated)); // expected-note {{declared here}}
94 void foo(int) __attribute__((deprecated)); // expected-note 2 {{declared here}}
[all …]
/external/clang/test/Parser/
DMicrosoftExtensions.c8 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _…
57 enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}}
58 __declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}}
89 struct __declspec(align(8) deprecated) S4 {};
92 struct __declspec(deprecated frobble "testing") S5 {}; /* expected-warning {{unknown __declspec at…
93 struct __declspec(unknown(12) deprecated) S6 {}; /* expected-warning {{unknown __declspec attribute…
97 __declspec(property(get=foo) deprecated) int t; // expected-note {{declared here}}
Dattr-availability.c7 void f0() __attribute__((availability(macosx,introduced=10.2,deprecated=10.4,obsoleted=10.6)));
9 void f1() __attribute__((availability(macosx,deprecated=10.4,introduced=10.2,obsoleted=10.6)));
11 void f2() __attribute__((availability(ios,deprecated=10.4.7,introduced=10,obsoleted=10.6)));
13 void f3() __attribute__((availability(ios,deprecated=10.4.7,introduced=10,obsoleted=10.6,introduced…
26 …ute__((availability(macosx,introduced=8.5,deprecated=9.0, message="Use CTFontCopyPostScriptName()"…
Dprefix-attributes.m3 __attribute__((deprecated)) @class B; // expected-error {{prefix attribute must be followed by an i…
5 __attribute__((deprecated)) @interface A @end
6 __attribute__((deprecated)) @protocol P0;
7 __attribute__((deprecated)) @protocol P1 category
/external/libpng/scripts/
Dpngw32.def79 ; png_permit_empty_plte is deprecated
86 ; png_read_init is deprecated
117 ; png_set_gray_1_2_4_to_8 is deprecated
173 ; png_write_init is deprecated
178 ; png_read_init_2 and png_write_init_2 are deprecated.
192 ; png_read_init_3, png_info_init_3, and png_write_init_3 are deprecated.
/external/doclava/res/assets/templates/
Dmacros.cs102 <?cs # Show the short-form description of something. These come from shortDescr and deprecated ?><…
104 if:subcount(obj.deprecated) ?>
105 <em>This <?cs var:obj.kind ?> was deprecated
107 <?cs call:tag_list(obj.deprecated) ?></em><?cs
112 <?cs # Show the red box with the deprecated warning ?><?cs
114 if:subcount(obj.deprecated) ?><p>
116 <strong>This <?cs var:obj.kind ?> was deprecated
118 call:tag_list(obj.deprecated) ?>
160 Uses the following fields: deprecated descr seeAlso since ?><?cs

12345678910>>...12