HomeSort by relevance Sort by last modified time
    Searched refs:deprecated (Results 1 - 25 of 1481) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
MatrixBase_extract.cpp 2 #warning deprecated
4 /* deprecated
MatrixBase_marked.cpp 2 #warning deprecated
MatrixBase_part.cpp 2 #warning deprecated
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
p1.cpp 3 class [[deprecated]] C {}; // expected-note {{'C' has been explicitly marked deprecated here}}
4 C c; // expected-warning {{'C' is deprecated}}
6 typedef int t [[deprecated]]; // expected-note {{'t' has been explicitly marked deprecated here}}
7 t x = 42; // expected-warning {{'t' is deprecated}}
9 [[deprecated]] int old = 42; // expected-note {{'old' has been explicitly marked deprecated here}}
10 int use = old; // expected-warning {{'old' is deprecated}}
12 struct S { [[deprecated]] int member = 42; } s; // expected-note {{'member' has been explicitly marked deprecated here}
    [all...]
  /external/clang/test/SemaCXX/
warn-deprecated-header.cpp 4 // expected-warning@+2 {{This file is deprecated.}}
6 #warning This file is deprecated.
  /external/chromium_org/third_party/libxml/src/
DOCBparser.c 4 * 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 = 0 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/
DOCBparser.c 4 * 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 = 0 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/
availability.c 3 void foo(void) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7), availability(ios,introduced=3.2,deprecated=4.1)));
7 } __attribute__((deprecated));
11 } __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7)
16 // CHECK-1: (ios, introduced=3.2, deprecated=4.1)
17 // CHECK-2: (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
19 // CHECK-2: EnumConstantDecl=old_enum:6:3 (Definition) (deprecated)
20 // CHECK-2: EnumConstantDecl=old_enum_plat:10:3 {{.*}} (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
annotate-comments-availability-attrs.cpp 13 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));
26 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_deprecated_1</Name><USR>c:@F@attr_deprecated_1#</USR><Declaration>void attr_deprecated_1()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Deprecated/></Function>]
29 void attr_deprecated_2() __attribute__((deprecated("message 1 <foo.h>")));
31 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_deprecated_2</Name><USR>c:@F@attr_deprecated_2#</USR><Declaration>void attr_deprecated_2()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Deprecated>message 1 &lt;foo.h&gt;</Deprecated></Function>]
complete-enums.c 4 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/
surpress-deprecated.c 1 // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
3 extern void OldFunction() __attribute__((deprecated));
weak-import-on-enum.c 6 enum __attribute__((deprecated)) __attribute__((weak_import)) A {
typeof-use-deprecated.c 3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-note 2 {{'s' has been explicitly marked deprecated 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' has been explicitly marked deprecated 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' has been explicitly marked deprecated here}
    [all...]
attr-deprecated.c 3 int f() __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated here}}
4 void g() __attribute__((deprecated));
5 void g(); // expected-note {{'g' has been explicitly marked deprecated here}}
7 extern int var __attribute__((deprecated)); // expected-note {{'var' has been explicitly marked deprecated 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}}
    [all...]
attr-deprecated-message.c 4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' has been explicitly marked deprecated 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' has been explicitly marked deprecated 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' has been explicitly marked deprecated here}
    [all...]
attr-availability-macosx.c 3 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' has been explicitly marked deprecated 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)))
    [all...]
attr-availability.c 3 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' has been explicitly marked deprecated 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)))
    [all...]
attr-availability-ios.c 3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated 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' has been explicitly marked deprecated here}}
10 void f6(int) __attribute__((availability(ios,deprecated=3.0)));
11 void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' has been explicitly marked deprecated here}
    [all...]
  /external/llvm/test/MC/ARM/
deprecated-v8.s 7 @ CHECK-ARMV8: warning: deprecated
8 @ CHECK-THUMBV8: warning: deprecated
9 @ CHECK-ARMV7-NOT: warning: deprecated
10 @ CHECK-THUMBV7-NOT: warning: deprecated
12 @ CHECK-ARMV8: warning: deprecated since v7, use 'isb'
13 @ CHECK-THUMBV8: warning: deprecated since v7, use 'isb'
14 @ CHECK-ARMV7: warning: deprecated since v7, use 'isb'
15 @ CHECK-THUMBV7: warning: deprecated since v7, use 'isb'
16 @ CHECK-ARMV6-NOT: warning: deprecated since v7, use 'isb'
18 @ CHECK-ARMV8: warning: deprecated since v7, use 'dsb
    [all...]
v8_IT_manual.s 11 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
14 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
18 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
30 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
34 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
42 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
46 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
50 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
59 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
71 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT bloc
    [all...]
  /external/clang/include/clang-c/
Platform.h 10 |* This header provides platform specific macros (dllimport, deprecated, ...) *|
33 #define CINDEX_DEPRECATED __attribute__((deprecated))
36 #define CINDEX_DEPRECATED __declspec(deprecated)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
asoundlib.h 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
asoundlib.h 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /external/clang/test/Parser/
MicrosoftExtensions.c 7 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _Radix);
41 enum __declspec(deprecated) E2 { i, j, k }; /* expected-note {{'E2' has been explicitly marked deprecated here}} */
42 __declspec(deprecated) enum E3 { a, b, c } e; /* expected-note {{'e' has been explicitly marked deprecated here}} */
45 /* Test to make sure the deprecated warning follows the right thing */
46 enum E2 e1; /* expected-warning {{'E2' is deprecated}} */
48 enum E3 e3 = e; /* expected-warning {{'e' is deprecated}} */
67 __declspec(deprecated()) void dep_func_test(void); /* expected-error {{parentheses must be omitted if 'deprecated' attri (…)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/backward/
backward_warning.h 34 This file includes at least one deprecated or antiquated header which \
36 non-deprecated interface with equivalent functionality instead. For a \
38 backward_warning.h. To disable this warning use -Wno-deprecated.

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>