Searched refs:deprecated (Results 1 - 25 of 482) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DMatrixBase_extract.cpp2 #warning deprecated
4 /* deprecated
H A DMatrixBase_marked.cpp2 #warning deprecated
H A DMatrixBase_part.cpp2 #warning deprecated
/external/clang/test/SemaCXX/
H A Dwarn-deprecated-header.cpp4 // expected-warning@+2 {{This file is deprecated.}}
6 #warning This file is deprecated.
H A 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}}
12 f(); // expected-warning{{'f' is deprecated}}
13 a->f(); // expected-warning{{'f' is deprecated}}
15 (void)b; // expected-warning{{'b' is deprecated}}
16 (void)a->b; // expected-warning{{'b' is deprecated}}
29 virtual void f() __attribute__((deprecated)); // expected-note 4 {{declared here}}
35 B::f(); // expected-warning{{'f' is deprecated}}
46 B::f(); // expected-warning{{'f' is deprecated}}
[all...]
/external/chromium_org/third_party/libxml/src/
H A DDOCBparser.c4 * This is deprecated !!!
43 static int deprecated = 0; local
45 if (!deprecated) {
47 "docbEncodeEntities() deprecated function reached\n");
48 deprecated = 1;
67 static int deprecated = 0; local
69 if (!deprecated) {
71 "docbParseDocument() deprecated function reached\n");
72 deprecated = 1;
88 static int deprecated local
115 static int deprecated = 0; local
150 static int deprecated = 0; local
181 static int deprecated = 0; local
207 static int deprecated = 0; local
234 static int deprecated = 0; local
266 static int deprecated = 0; local
293 static int deprecated = 0; local
[all...]
/external/libxml2/
H A DDOCBparser.c4 * This is deprecated !!!
43 static int deprecated = 0; local
45 if (!deprecated) {
47 "docbEncodeEntities() deprecated function reached\n");
48 deprecated = 1;
67 static int deprecated = 0; local
69 if (!deprecated) {
71 "docbParseDocument() deprecated function reached\n");
72 deprecated = 1;
88 static int deprecated local
115 static int deprecated = 0; local
150 static int deprecated = 0; local
181 static int deprecated = 0; local
207 static int deprecated = 0; local
234 static int deprecated = 0; local
266 static int deprecated = 0; local
293 static int deprecated = 0; local
[all...]
/external/clang/test/Index/
H A Davailability.c3 void foo(void) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7), availability(ios,introduced=3.2,deprecated=4.1)));
8 // CHECK-1: (ios, introduced=3.2, deprecated=4.1)
9 // CHECK-2: (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
H A Dannotate-comments-availability-attrs.cpp13 void attr_availability_1() __attribute__((availability(macosx,obsoleted=10.0,introduced=8.0,deprecated=9.0, message="use availability_test in <foo.h>")))
19 void attr_availability_2() __attribute__((availability(macosx,obsoleted=10.0.1,introduced=8.0.1,deprecated=9.0.1)));
24 void attr_deprecated_1() __attribute__((deprecated));
29 void attr_deprecated_2() __attribute__((deprecated("message 1 <foo.h>")));
H A Dcomplete-enums.c4 enum __attribute__((deprecated)) Color {
17 // CHECK-CC1: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Red} (65) (deprecated)
20 // CHECK-CC2: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Blue} (7) (deprecated)
21 // CHECK-CC2-NEXT: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Green} (7) (deprecated)
22 // CHECK-CC2-NEXT: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Red} (7) (deprecated)
/external/clang/test/Sema/
H A Dsurpress-deprecated.c1 // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
3 extern void OldFunction() __attribute__((deprecated));
H A Dweak-import-on-enum.c6 enum __attribute__((deprecated)) __attribute__((weak_import)) A {
H A Dtypeof-use-deprecated.c3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-note 2 {{'s' declared here}}
5 typeof(x) y; // expected-warning {{'s' is deprecated}}
7 union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expected-note 2 {{'un' declared here}}
9 typeof( u) z; // expected-warning {{'un' is deprecated}}
11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-note 2 {{'E' declared here}}
13 typeof( e) w; // expected-warning {{'E' is deprecated}}
15 struct foo { int x; } __attribute__((deprecated)); // expecte
[all...]
H A 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}}
10 int (*ptr)() = f; // expected-warning {{'f' is deprecated}}
11 f(); // expected-warning {{'f' is deprecated}}
14 g(); // expected-warning {{'g' is deprecated}}
16 return var; // expected-warning {{'var' is deprecated}}
22 return var; // expected-warning {{'var' is deprecated}}
25 int old_fn() __attribute__ ((deprecated));
27 int (*fn_ptr)() = old_fn; // expected-warning {{'old_fn' is deprecated}}
[all...]
H A Dattr-deprecated-message.c4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' declared here}}
8 typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
10 typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
12 INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared here}}
16 INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}}
21 Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}}
24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}}
28 int (*pf)() = f1; // expected-warning {{'f1' is deprecated
[all...]
H A 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-note {{'f2' declared here}}
7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}}
13 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in OS X 10.5}}
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))) {
H A Dattr-availability.c3 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warning{{feature cannot be deprecated in OS X version 10.2 before it was introduced in version 10.4; attribute ignored}}
4 void f1() __attribute__((availability(ios,obsoleted=2.1,deprecated=3.0))); // expected-warning{{feature cannot be obsoleted in iOS version 2.1 before it was deprecated in version 3.0; attribute ignored}}
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, message="use CTFontCopyFullName"))); // expected-note {{'ATSFontGetName' declared here}}
17 ATSFontGetName("Hello"); // expected-warning {{'ATSFontGetName' is deprecated: first deprecated in OS X 9.0 - use CTFontCopyFullName}}
28 void f4(int) __attribute__((availability(ios,deprecated=3.0)));
29 void f4(int) __attribute__((availability(ios,introduced=4.0))); // expected-warning {{feature cannot be deprecated i
[all...]
H A Dattr-availability-ios.c3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' declared here}}
5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' declared here}}
7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}}
9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' declared here}}
10 void f6(int) __attribute__((availability(ios,deprecated=3.0)));
14 f0(0); // expected-warning{{'f0' is deprecated: first deprecated in iOS 2.1}}
16 f2(0); // expected-warning{{'f2' is deprecated: first deprecated i
[all...]
/external/clang/test/Parser/
H A 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=10.2))); // expected-error{{redundant 'introduced' availability change; only the last specified change will be used}}
26 foo __attribute__((availability(macosx,introduced=8.5,deprecated=9.0, message="Use CTFontCopyPostScriptName()", deprecated=10.0))) // expected-error {{expected ')'}} \
H A DMicrosoftExtensions.c8 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _Radix);
60 enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}}
61 __declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}}
65 // Test to make sure the deprecated warning follows the right thing
66 enum E2 e1; // expected-warning {{'E2' is deprecated}}
68 enum E3 e3 = e; // expected-warning {{'e' is deprecated}}
92 struct __declspec(align(8) deprecated) S4 {};
95 struct __declspec(deprecated frobble "testing") S5 {}; /* expected-warning {{unknown __declspec attribute 'frobble' ignored}} expected-warning {{__declspec attribute '"testing"' is not supported}} */
96 struct __declspec(unknown(12) deprecated) S
[all...]
/external/clang/include/clang-c/
H A DPlatform.h10 |* This header provides platform specific macros (dllimport, deprecated, ...) *|
33 #define CINDEX_DEPRECATED __attribute__((deprecated))
36 #define CINDEX_DEPRECATED __declspec(deprecated)
/external/doclava/res/assets/templates/
H A Dlists.cs3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
/external/doclava/src/com/google/doclava/apicheck/
H A DAbstractMethodInfo.java25 public void setDeprecated(boolean deprecated); argument
/external/llvm/test/MC/ARM/
H A Ddeprecated-v8.s3 @ CHECK: warning: deprecated on armv8
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.h53 String findSourceURL(const String& content, MagicCommentType, bool* deprecated);
54 String findSourceMapURL(const String& content, MagicCommentType, bool* deprecated);

Completed in 2473 milliseconds

1234567891011>>