/external/clang/test/PCH/Inputs/ |
chain-macro-override1.h | 1 void f() __attribute__((unavailable));
|
/external/clang/test/Parser/ |
access-spec-attrs.cpp | 4 public __attribute__((unavailable)): // expected-error {{access specifier can only have annotation attributes}}
|
attr-availability.c | 15 void f4() __attribute__((availability(macosx,introduced=10.5), availability(ios,unavailable))); 17 void f5() __attribute__((availability(macosx,introduced=10.5), availability(ios,unavailable, unavailable))); // expected-error{{redundant 'unavailable' availability change; only the last specified change will be used}} 19 void f6() __attribute__((availability(macosx,unavailable,introduced=10.5))); // expected-warning{{warning: 'unavailable' availability overrides all other availability information}}
|
/external/valgrind/main/memcheck/tests/ |
file_locking.stderr.exp | 4 fcntl: Resource temporarily unavailable
|
/external/clang/test/Index/ |
complete-exprs.c | 4 int f(int) __attribute__((unavailable)); 31 // CHECK-CC1: FunctionDecl:{ResultType int}{TypedText f}{LeftParen (}{Placeholder int}{RightParen )} (12) (unavailable)
|
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
CheckVoiceData.java | 53 ArrayList<String> unavailable = new ArrayList<String>(); local 63 unavailable.add(lang); 72 } else if (!unavailable.isEmpty()) { 81 // We now return the list of available and unavailable voices 87 TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable);
|
/external/clang/test/Sema/ |
attr-availability-macosx.c | 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}} 8 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(macosx,unavailable))); // expected-note{{function has been explicitly marked unavailable here}} 15 f4(0); // expected-error{{f4' is unavailable: obsoleted in Mac OS X 10.5}} 16 f5(0); // expected-error{{'f5' is unavailable: not available on Mac OS X}}
|
attr-unavailable-message.c | 4 int foo(int) __attribute__((__unavailable__("USE IFOO INSTEAD"))); // expected-note {{function has been explicitly marked unavailable here}} 5 double dfoo(double) __attribute__((__unavailable__("NO LONGER"))); // expected-note 2 {{function has been explicitly marked unavailable here}} 7 void bar() __attribute__((__unavailable__)); // expected-note {{explicitly marked unavailable}} 10 int ir = foo(1); // expected-error {{'foo' is unavailable: USE IFOO INSTEAD}} 11 double dr = dfoo(1.0); // expected-error {{'dfoo' is unavailable: NO LONGER}} 13 void (*fp)() = &bar; // expected-error {{'bar' is unavailable}} 15 double (*fp4)(double) = dfoo; // expected-error {{'dfoo' is unavailable: NO LONGER}} 23 // No complains inside an unavailable function. 37 enum fee { // expected-note 2 {{declaration has been explicitly marked unavailable here}} 41 }__attribute__((unavailable())); [all...] |
/external/clang/test/SemaCXX/ |
attr-unavailable.cpp | 6 // expected-note{{function has been explicitly marked unavailable here}} 8 void bar(...) __attribute__((__unavailable__)); // expected-note 2{{explicitly marked unavailable}} 13 foo(sp); // expected-error{{call to unavailable function 'foo'}} 15 void (*fp)(...) = &bar; // expected-error{{'bar' is unavailable}} 16 void (*fp2)(...) = bar; // expected-error{{'bar' is unavailable}} 19 void (*fp4)(...) = foo; // expected-error{{'foo' is unavailable}} 24 #define FOO __attribute__((unavailable("not available - replaced"))) 26 void foo() FOO; // expected-note {{candidate function has been explicitly made unavailable}} 28 foo(); // expected-error {{call to unavailable function 'foo': not available - replaced}} 34 // No complains inside an unavailable function [all...] |
/external/e2fsprogs/debian/ |
e2fsprogs.preinst | 9 This package requires features of dpkg unavailable in this version.
|
/external/svox/pico/src/com/svox/pico/ |
CheckVoiceData.java | 65 ArrayList<String> unavailable = new ArrayList<String>(); local 89 unavailable.add(supportedLanguages[i]); 108 returnData.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable);
|
EngineSettings.java | 52 ArrayList<String> unavailable = data.getStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES); local 67 for (int i = 0; i < unavailable.size(); i++){ 68 final String unavailableLang = unavailable.get(i);
|
/external/clang/test/ARCMT/ |
Common.h | 2 #define NS_AUTOMATED_REFCOUNT_UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
|
/external/clang/include/clang/Sema/ |
AttributeList.h | 85 /// \brief The location of the 'unavailable' keyword in an 141 SourceLocation unavailable, 147 UnavailableLoc(unavailable), NextInPosition(0), NextInPool(0) { 494 SourceLocation unavailable, 501 unavailable, 618 SourceLocation unavailable, 622 introduced, deprecated, obsoleted, unavailable,
|
/packages/apps/Settings/src/com/android/settings/tts/ |
TtsEngineSettingsFragment.java | 95 ArrayList<String> unavailable = voiceDataDetails.getStringArrayListExtra( local 106 if (unavailable != null && unavailable.size() > 0) {
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLButtonElement04.js | 78 The disabled attribute specifies whether the control is unavailable
|
HTMLOptGroupElement01.js | 78 The disabled attribute indicates that the control is unavailable in
|
HTMLTextAreaElement06.js | 78 The disabled attribute specifies the control is unavailable in this
|
button08.js | 78 The control is unavailable in this context.
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLButtonElement04.js | 78 The disabled attribute specifies whether the control is unavailable
|
HTMLOptGroupElement01.js | 78 The disabled attribute indicates that the control is unavailable in
|
HTMLTextAreaElement06.js | 78 The disabled attribute specifies the control is unavailable in this
|
button08.js | 78 The control is unavailable in this context.
|
/device/samsung/crespo/ |
device.mk | 31 # the unavailable drivers: one is directly checked into the unreleased
|
/external/clang/test/SemaTemplate/ |
instantiate-expr-4.cpp | 104 void *operator new[](__SIZE_TYPE__) __attribute__((unavailable)); // expected-note{{explicitly made unavailable}} 109 return new C(); // expected-error{{call to unavailable function 'operator new[]'}}
|