HomeSort by relevance Sort by last modified time
    Searched full:unavailable (Results 1 - 25 of 1444) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/attr-unavailable/
oneA.h 2 -(void)method2 __attribute__((unavailable));
3 -(void)method3 __attribute__((unavailable));
two.h 5 -(void)method1 __attribute__((unavailable));
  /external/clang/test/SemaObjC/
class-unavail-warning.m 4 __attribute__((unavailable("not available")))
5 @interface MyClass { // expected-note 8 {{'MyClass' has been explicitly marked unavailable here}}
19 MyClass *ivar; // expected-error {{unavailable}}
21 - (MyClass *)meth; // expected-error {{unavailable}}
31 @implementation MyClass (Cat2) // expected-error {{unavailable}}
35 [MyClass new]; // expected-error {{'MyClass' is unavailable: not available}}
36 [MyClass self]; // expected-error {{'MyClass' is unavailable: not available}}
37 [MyClass addObject:((void *)0)]; // expected-error {{'MyClass' is unavailable: not available}}
39 MyClass *foo = [MyClass new]; // expected-error 2 {{'MyClass' is unavailable: not available}}
47 __attribute__((visibility("default"))) __attribute__((availability(macosx,unavailable)))
    [all...]
no-warning-unavail-unimp.m 7 @property (getter=getVal) int val __attribute__((unavailable));
8 @property (getter=getVal) int val2 __attribute__((availability(macosx,unavailable)));
9 - Method __attribute__((unavailable));
10 + CMethod __attribute__((unavailable));
objc-container-subscripting-attr.m 6 - (id)objectForKeyedSubscript:(id)sub __attribute__((unavailable)); // expected-note 2 {{'objectForKeyedSubscript:' has been explicitly marked unavailable here}}
7 - (void)setObject:(id)object forKeyedSubscript:(id)key __attribute__((unavailable)); // expected-note {{'setObject:forKeyedSubscript:' has been explicitly marked unavailable here}}
11 obj[obj] = obj; // expected-error {{'setObject:forKeyedSubscript:' is unavailable}}
12 return obj[obj]; // expected-error {{'objectForKeyedSubscript:' is unavailable}}
16 return [obj objectForKeyedSubscript:obj]; // expected-error {{'objectForKeyedSubscript:' is unavailable}}
special-dep-unavail-warning.m 6 - (void) unavailMeth __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
10 - (void) unavailMeth2 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
12 - (void) depunavailInA1 __attribute__((deprecated)) __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
14 - (void)FuzzyMeth1 __attribute__((unavailable));
18 - (void) unavailMeth1 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
22 - (void) unavailMeth2 __attribute__((unavailable));
    [all...]
protocol-attribute.m 3 __attribute ((unavailable))
4 @protocol FwProto; // expected-note{{marked unavailable}}
6 Class <FwProto> cFw = 0; // expected-error {{'FwProto' is unavailable}}
36 @protocol FwProto @end // expected-note{{marked unavailable}}
38 @interface MyClass2 <FwProto> // expected-error {{'FwProto' is unavailable}}
41 __attribute ((unavailable)) __attribute ((deprecated)) @protocol XProto; // expected-note{{marked unavailable}}
43 id <XProto> idX = 0; // expected-error {{'XProto' is unavailable}}
arc-unavailable-system-function.m 8 # 1 "arc-unavailable-system-function.m" 2
10 foo(); // expected-error {{'foo' is unavailable in ARC}}
arc-system-header.m 8 cp = test0(op); // expected-error {{'test0' is unavailable in ARC}}
9 cp = *test1(&op); // expected-error {{'test1' is unavailable in ARC}}
15 p->field = 0; // expected-error {{'field' is unavailable in ARC}}
20 p->field1 = 0; // expected-error {{'field1' is unavailable in ARC}}
26 p->field = 0; // expected-error {{'field' is unavailable in ARC}}
42 *p.prop = 0; // expected-error {{'prop' is unavailable in ARC}}
43 p.prop = 0; // expected-error {{'prop' is unavailable in ARC}}
44 *[p prop] = 0; // expected-error {{'prop' is unavailable in ARC}}
45 [p setProp: 0]; // expected-error {{'setProp:' is unavailable in ARC}}
47 // expected-note@arc-system-header.h:41 2 {{property 'prop' is declared unavailable here}
    [all...]
  /external/clang/test/SemaCXX/
attr-unavailable.cpp 6 // expected-note{{'foo' 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/clang/test/Sema/
attr-availability-app-extensions.c 7 __attribute__((availability(macosx_app_extension,unavailable)))
9 __attribute__((availability(ios_app_extension,unavailable)))
11 __attribute__((availability(tvos_app_extension,unavailable)))
14 void f0(int); // expected-note {{'f0' has been explicitly marked unavailable here}}
16 __attribute__((availability(macosx,unavailable)))
18 __attribute__((availability(ios,unavailable)))
20 __attribute__((availability(tvos,unavailable)))
22 void f1(int); // expected-note {{'f1' has been explicitly marked unavailable here}}
25 f0(1); // expected-error {{'f0' is unavailable: not available on}}
26 f1(1); // expected-error {{'f1' is unavailable}}
    [all...]
attr-unavailable-message.c 4 int foo(int) __attribute__((__unavailable__("USE IFOO INSTEAD"))); // expected-note {{'foo' has been explicitly marked unavailable here}}
5 double dfoo(double) __attribute__((__unavailable__("NO LONGER"))); // expected-note 2 {{'dfoo' has been explicitly marked unavailable here}}
7 void bar() __attribute__((__unavailable__)); // expected-note {{explicitly marked unavailable}}
15 int ir = foo(1); // expected-error {{'foo' is unavailable: USE IFOO INSTEAD}}
16 double dr = dfoo(1.0); // expected-error {{'dfoo' is unavailable: NO LONGER}}
18 void (*fp)() = &bar; // expected-error {{'bar' is unavailable}}
20 double (*fp4)(double) = dfoo; // expected-error {{'dfoo' is unavailable: NO LONGER}}
28 // No complains inside an unavailable function.
42 enum fee { // expected-note {{'fee' has been explicitly marked unavailable here}}
43 r = 1, // expected-note {{'r' has been explicitly marked unavailable here}
    [all...]
attr-availability.c 16 ATSFontGetPostScriptName(int flags) __attribute__((availability(macosx,introduced=8.0,obsoleted=9.0, message="use ATSFontGetFullPostScriptName"))); // expected-note {{'ATSFontGetPostScriptName' has been explicitly marked unavailable here}}
30 ATSFontGetPostScriptName(100); // expected-error {{'ATSFontGetPostScriptName' is unavailable: obsoleted in OS X 9.0 - use ATSFontGetFullPostScriptName}}
47 __attribute__((availability(macos, unavailable))) // expected-warning {{attribute 'availability' is ignored}}
86 OriginalUnavailable __attribute__((availability(macosx, unavailable))) // expected-note + {{'OriginalUnavailable' has been explicitly marked unavailable here}}
91 AllDeprecatedUnavailable __attribute__((availability(macosx, unavailable))) // expected-note + {{'AllDeprecatedUnavailable' has been explicitly marked unavailable here}}
95 AllUnavailableCase, // expected-note + {{'AllUnavailableCase' has been explicitly marked unavailable here}}
96 } __attribute__((availability(macosx, unavailable)));
101 UserODUnavailable __attribute__((availability(macosx, unavailable))) = OriginalDeprecated
    [all...]
attr-availability-android.c 7 void f4(int) __attribute__((availability(android,introduced=9,deprecated=11,obsoleted=16), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}}
8 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(android,unavailable))); // expected-note{{'f5' has been explicitly marked unavailable here}}
15 f4(0); // expected-error{{f4' is unavailable: obsoleted in Android 16}}
16 f5(0); // expected-error{{'f5' is unavailable: not available on Android}}
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{{'f5' has been explicitly marked unavailable here}}
15 f4(0); // expected-error{{f4' is unavailable: obsoleted in OS X 10.5}}
16 f5(0); // expected-error{{'f5' is unavailable: not available on OS X}}
  /external/clang/test/Index/Inputs/CommentXML/
valid-unavailable-attr.xml 6 <Unavailable/>
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 1 void f() __attribute__((unavailable));
  /external/clang/test/Modules/
attr-unavailable.m 2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs/attr-unavailable %s -fsyntax-only -verify
11 [x method2]; // expected-error{{'method2' is unavailable}}
12 // expected-note@oneA.h:2 {{'method2' has been explicitly marked unavailable here}}
13 [x method3]; // expected-error{{'method3' is unavailable}}
14 // expected-note@oneA.h:3 {{'method3' has been explicitly marked unavailable here}}
  /external/clang/test/ARCMT/
objcmt-property-availability.m 13 #define CF_AVAILABLE_IOS(_ios) __attribute__((availability(macosx,unavailable)))
19 #define UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
35 - (void)setComp:(MKMapItem *)source UNAVAILABLE;
37 - (MKMapItem *)tally UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
38 - (void)setTally:(MKMapItem *)source UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
41 - (void)setItally:(MKMapItem *)source UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
43 - (MKMapItem *)normal UNAVAILABLE;
44 - (void)setNormal:(MKMapItem *)source UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
objcmt-property-availability.m.result 13 #define CF_AVAILABLE_IOS(_ios) __attribute__((availability(macosx,unavailable)))
19 #define UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
33 - (void)setComp:(MKMapItem *)source UNAVAILABLE;
35 @property (nonatomic, strong) MKMapItem *tally UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
38 - (void)setItally:(MKMapItem *)source UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
40 - (MKMapItem *)normal UNAVAILABLE;
41 - (void)setNormal:(MKMapItem *)source UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
GC-check.m 4 #define CF_AUTOMATED_REFCOUNT_UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
7 CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{unavailable}}
12 // expected-error {{unavailable}}
  /external/strace/tests/
filter-unavailable.test 3 # check that <unavailable> syscalls are filtered properly
  /external/valgrind/memcheck/tests/
file_locking.stderr.exp 4 fcntl: Resource temporarily unavailable
  /external/clang/test/Index/
availability.cpp 10 // CHECK: FunctionDecl=foo:1:6 (unavailable) [type=void ()] [typekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [isPOD=0]
12 // CHECK: CXXMethod=foo:4:7 (unavailable) [type=int (){{.*}}] [typekind=FunctionProto] [resulttype=int] [resulttypekind=Int] [isPOD=0]
13 // CHECK: CXXConstructor=Foo:5:3 (unavailable) [type=void (){{.*}}] [typekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [isPOD=0]
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-7.h 18 -(null_unspecified A*)transform:(null_unspecified A*)input __attribute__((unavailable("anything but this")));
24 @property (nonatomic) int intValue __attribute__((unavailable("wouldn't work anyway")));
30 __attribute__((unavailable("just don't")))

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 91011>>