/external/clang/test/PCH/Inputs/ |
chain-macro-override1.h | 1 void f() __attribute__((unavailable));
|
/external/clang/test/Parser/ |
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}}
|
/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 | 82 /// \brief The location of the 'unavailable' keyword in an 137 SourceLocation unavailable, 142 Invalid(false), IsAvailability(true), UnavailableLoc(unavailable), 463 SourceLocation unavailable, 470 unavailable, 587 SourceLocation unavailable, 591 introduced, deprecated, obsoleted, unavailable,
|
/packages/apps/Settings/src/com/android/settings/tts/ |
TtsEngineSettingsFragment.java | 92 ArrayList<String> unavailable = voiceDataDetails.getStringArrayListExtra( local 95 if (available == null || unavailable == null){ 100 if (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.
|
/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[]'}}
|
/external/clang/lib/AST/ |
DeclBase.cpp | 261 /// string describing why the entity is unavailable. 282 // Make sure that this declaration has not been marked 'unavailable'. 349 if (UnavailableAttr *Unavailable = dyn_cast<UnavailableAttr>(*A)) { 351 *Message = Unavailable->getMessage(); [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
inspector.css | [all...] |
/external/libffi/ |
configure | [all...] |