/external/clang/test/SemaCXX/ |
warn-deprecated-header.cpp | 5 #warning This file is deprecated. // expected-warning {{This file is deprecated.}}
|
attr-deprecated.cpp | 3 void f() __attribute__((deprecated)); 5 void h(A* a) __attribute__((deprecated)); 7 int b __attribute__((deprecated)); 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)); 35 B::f(); // expected-warning{{'f' is deprecated}} 46 B::f(); // expected-warning{{'f' is deprecated}} [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...] |
legacy.c | 2 * legacy.c: set of deprecated routines, not to be used anymore but 26 * Deprecated functions kept for compatibility * 44 * DEPRECATED !!!! 55 static int deprecated = 0; local 57 if (!deprecated) { 59 "htmlDecodeEntities() deprecated function reached\n"); 60 deprecated = 1; 70 * Deprecated call 81 * Deprecated call 397 * This function is deprecated, we now always process entities conten 416 static int deprecated = 0; local 446 static int deprecated = 0; local 481 static int deprecated = 0; local 510 static int deprecated = 0; local 533 static int deprecated = 0; local 561 static int deprecated = 0; local 593 static int deprecated = 0; local 633 static int deprecated = 0; local 659 static int deprecated = 0; local 683 static int deprecated = 0; local 703 static int deprecated = 0; local [all...] |
/external/clang/test/Sema/ |
surpress-deprecated.c | 1 // RUN: %clang -fsyntax-only -Wno-deprecated-declarations -verify %s 2 extern void OldFunction() __attribute__((deprecated));
|
attr-deprecated.c | 3 int f() __attribute__((deprecated)); 4 void g() __attribute__((deprecated)); 7 extern int var __attribute__((deprecated)); 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...] |
typeof-use-deprecated.c | 3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} 5 typeof(x) y; // expected-warning {{'s' is deprecated}} 7 union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} 9 typeof( u) z; // expected-warning {{'un' is deprecated}} 11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} 13 typeof( e) w; // expected-warning {{'E' is deprecated}} 15 struct foo { int x; } __attribute__((deprecated)); [all...] |
attr-availability.c | 3 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warning{{feature cannot be deprecated in Mac 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}}
|
attr-deprecated-message.c | 4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); 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"))); 16 INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}} 18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); 21 Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}} 24 int g2 __attribute__ ((deprecated("Please avoid g2"))); 28 int (*pf)() = f1; // expected-warning {{'f1' is deprecated: Please avoid f1} [all...] |
attr-availability-ios.c | 3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); 5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); 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))); 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 in iOS 3.0} [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))); 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 Mac OS X 10.5}}
|
/external/clang/test/Parser/ |
attr-availability.c | 7 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}}
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
asoundlib.h | 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/ |
backward_warning.h | 29 This file includes at least one deprecated or antiquated header which \ 31 non-deprecated interface with equivalent functionality instead. For a \ 33 backward_warning.h. To disable this warning use -Wno-deprecated.
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/backward/ |
backward_warning.h | 29 This file includes at least one deprecated or antiquated header which \ 31 non-deprecated interface with equivalent functionality instead. For a \ 33 backward_warning.h. To disable this warning use -Wno-deprecated.
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/backward/ |
backward_warning.h | 29 This file includes at least one deprecated or antiquated header which \ 31 non-deprecated interface with equivalent functionality instead. For a \ 33 backward_warning.h. To disable this warning use -Wno-deprecated.
|
/external/doclava/src/com/google/doclava/apicheck/ |
AbstractMethodInfo.java | 25 public void setDeprecated(boolean deprecated);
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebAssertions.h | 30 #warning <WebKit/WebAssertions.h> is deprecated. Please move away from this SPI as soon as is possible.
|
/bionic/libc/kernel/common/linux/ |
compiler-gcc.h | 19 #define __deprecated __attribute__((deprecated))
|
/development/ndk/platforms/android-3/include/linux/ |
compiler-gcc.h | 19 #define __deprecated __attribute__((deprecated))
|
/external/clang/test/Index/ |
complete-exprs.c | 10 struct X __attribute__((deprecated)) f1 = { 17 }; 54 // CHECK-CC4: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated) 64 // CHECK-CC7: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
|
/external/kernel-headers/original/linux/ |
compiler-gcc.h | 29 #define __deprecated __attribute__((deprecated))
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/compat/ |
VoiceInputLoggerCompatUtils.java | 17 package com.android.inputmethod.deprecated.compat;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
compiler-gcc.h | 19 #define __deprecated __attribute__((deprecated))
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
compiler-gcc.h | 19 #define __deprecated __attribute__((deprecated))
|