/external/clang/test/SemaObjC/ |
property-5.m | 12 @property(readonly) id ref; 13 @property(readonly) Base *p_base; 14 @property(readonly) NSData *nsdata; 15 @property(readonly) NSData * m_nsdata; 19 @property(readonly) NSData *ref; 20 @property(readonly) Data *p_base; 21 @property(readonly) MutableNSData * m_nsdata; 25 @property(readonly) id p_base; 29 @property(readonly) ConstData *p_base;
|
property-in-class-extension-1.m | 9 @property (nonatomic, readonly) NSString* addingMemoryModel; 11 @property (nonatomic, copy, readonly) NSString* matchingMemoryModel; 13 @property (nonatomic, retain, readonly) NSString* addingNoNewMemoryModel; 15 @property (readonly) NSString* none; 16 @property (readonly) NSString* none1; 18 @property (assign, readonly) NSString* changeMemoryModel; // expected-note {{property declared here}} 20 @property (readonly) __weak id weak_prop; 21 @property (readonly) __weak id weak_prop1; 23 @property (assign, readonly) NSString* assignProperty; 25 @property (readonly) NSString* readonlyProp [all...] |
iboutlet.m | 5 #define READONLY readonly 12 @property (getter = MyGetter, readonly, assign) IBOutlet NSView *myView; // expected-warning {{readonly IBOutlet property 'myView' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}} 14 @property (readonly) IBOutlet NSView *myView1; // expected-warning {{readonly IBOutlet property 'myView1' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}} 16 @property (getter = MyGetter, READONLY) IBOutlet NSView *myView2; // expected-warning {{readonly IBOutlet property 'myView2' when auto-synthesized may not work correctly with 'nib' loader}} 30 @property( readonly ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadOnly; // expected-warning {{readonly IBOutlet property 'autoReadOnlyReadOnly' when auto-synthesized may not work correctly with 'nib' l (…) [all...] |
property-category-1.m | 7 @interface ReadOnly : Object 12 @property(readonly) int object; 13 @property(readonly) int Anotherobject; 16 @interface ReadOnly () 21 @implementation ReadOnly 31 ReadOnly *test = [ReadOnly new]; 40 @property(readonly) int p0; // expected-note {{property declared here}} 51 self.p0 = 0; // expected-error {{assignment to readonly property}}
|
continuation-class-property.m | 5 @property (readonly, copy) id foos; 36 @property (readonly) NSRect foo; // expected-note {{property declared here}} 37 @property (readonly, strong) NSString *bar; // expected-note {{property declared here}} 49 @property (nonatomic, readonly, assign) struct evhttp_request *httpRequest; 50 @property (nonatomic, readonly, assign) struct S *httpRequest2; 51 @property (nonatomic, readonly, assign) struct S1 *httpRequest3; 52 @property (nonatomic, readonly, assign) struct S2 *httpRequest4;
|
/external/webkit/Source/WebCore/dom/ |
MouseEvent.idl | 24 readonly attribute long screenX; 25 readonly attribute long screenY; 26 readonly attribute long clientX; 27 readonly attribute long clientY; 28 readonly attribute boolean ctrlKey; 29 readonly attribute boolean shiftKey; 30 readonly attribute boolean altKey; 31 readonly attribute boolean metaKey; 32 readonly attribute unsigned short button; 33 readonly attribute EventTarget relatedTarget [all...] |
WheelEvent.idl | 25 readonly attribute long screenX; 26 readonly attribute long screenY; 27 readonly attribute long clientX; 28 readonly attribute long clientY; 29 readonly attribute boolean ctrlKey; 30 readonly attribute boolean shiftKey; 31 readonly attribute boolean altKey; 32 readonly attribute boolean metaKey; 33 readonly attribute long wheelDelta; 34 readonly attribute long wheelDeltaX [all...] |
UIEvent.idl | 24 readonly attribute DOMWindow view; 25 readonly attribute long detail; 34 readonly attribute long keyCode; 35 readonly attribute long charCode; 36 readonly attribute long layerX; 37 readonly attribute long layerY; 38 readonly attribute long pageX; 39 readonly attribute long pageY; 40 readonly attribute long which;
|
Touch.idl | 31 readonly attribute long clientX; 32 readonly attribute long clientY; 33 readonly attribute long screenX; 34 readonly attribute long screenY; 35 readonly attribute long pageX; 36 readonly attribute long pageY; 37 readonly attribute EventTarget target; 38 readonly attribute unsigned long identifier;
|
/external/webkit/Source/WebCore/page/ |
Navigator.idl | 26 readonly attribute DOMString appCodeName; 27 readonly attribute DOMString appName; 28 readonly attribute DOMString appVersion; 29 readonly attribute DOMString language; 30 readonly attribute DOMString userAgent; 31 readonly attribute DOMString platform; 32 readonly attribute DOMPluginArray plugins; 33 readonly attribute DOMMimeTypeArray mimeTypes; 34 readonly attribute DOMString product; 35 readonly attribute DOMString productSub [all...] |
PerformanceTiming.idl | 35 readonly attribute unsigned long long navigationStart; 36 readonly attribute unsigned long long unloadEventStart; 37 readonly attribute unsigned long long unloadEventEnd; 38 readonly attribute unsigned long long redirectStart; 39 readonly attribute unsigned long long redirectEnd; 40 readonly attribute unsigned long long fetchStart; 41 readonly attribute unsigned long long domainLookupStart; 42 readonly attribute unsigned long long domainLookupEnd; 43 readonly attribute unsigned long long connectStart; 44 readonly attribute unsigned long long connectEnd [all...] |
/external/clang/test/CodeGenObjC/ |
continuation-class.m | 7 @interface ReadOnly : Object 12 @property(readonly) int object; 13 @property(readonly) int Anotherobject; 16 @interface ReadOnly () 21 @implementation ReadOnly 30 ReadOnly *test = [ReadOnly new];
|
/external/webkit/Source/WebCore/bindings/objc/ |
PublicDOMInterfaces.h | 34 @property(readonly, copy) NSString *name; 35 @property(readonly) BOOL specified; 37 @property(readonly, retain) DOMElement *ownerElement; 38 @property(readonly, retain) DOMCSSStyleDeclaration *style AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER; 46 @property(readonly) unsigned length; 74 @property(readonly, retain) DOMDocument *document; 78 @property(readonly, retain) DOMDocumentType *doctype; 79 @property(readonly, retain) DOMImplementation *implementation; 80 @property(readonly, retain) DOMElement *documentElement; 81 @property(readonly, retain) DOMAbstractView *defaultView [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGFEConvolveMatrixElement.idl | 40 readonly attribute SVGAnimatedString in1; 41 readonly attribute SVGAnimatedInteger orderX; 42 readonly attribute SVGAnimatedInteger orderY; 43 readonly attribute SVGAnimatedNumberList kernelMatrix; 44 readonly attribute SVGAnimatedNumber divisor; 45 readonly attribute SVGAnimatedNumber bias; 46 readonly attribute SVGAnimatedInteger targetX; 47 readonly attribute SVGAnimatedInteger targetY; 48 readonly attribute SVGAnimatedEnumeration edgeMode; 49 readonly attribute SVGAnimatedNumber kernelUnitLengthX [all...] |
SVGFESpotLightElement.idl | 29 readonly attribute SVGAnimatedNumber x; 30 readonly attribute SVGAnimatedNumber y; 31 readonly attribute SVGAnimatedNumber z; 32 readonly attribute SVGAnimatedNumber pointsAtX; 33 readonly attribute SVGAnimatedNumber pointsAtY; 34 readonly attribute SVGAnimatedNumber pointsAtZ; 35 readonly attribute SVGAnimatedNumber specularExponent; 36 readonly attribute SVGAnimatedNumber limitingConeAngle;
|
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMEvents.idl | 90 //readonly attribute DOMString type; 93 //readonly attribute EventTarget target; 96 //readonly attribute EventTarget currentTarget; 99 //readonly attribute unsigned short eventPhase; 102 //readonly attribute boolean bubbles; 105 //readonly attribute boolean cancelable; 108 //readonly attribute DOMTimeStamp timeStamp; 172 //readonly attribute DOMString keyIdentifier; 175 //readonly attribute unsigned long keyLocation; 178 //readonly attribute boolean ctrlKey [all...] |
/external/llvm/test/Assembler/ |
2007-11-26-AttributeOverload.ll | 3 declare i32 @atoi(i8*) nounwind readonly
|
/external/webkit/Source/WebCore/html/ |
ValidityState.idl | 26 readonly attribute boolean valueMissing; 27 readonly attribute boolean typeMismatch; 28 readonly attribute boolean patternMismatch; 29 readonly attribute boolean tooLong; 30 readonly attribute boolean rangeUnderflow; 31 readonly attribute boolean rangeOverflow; 32 readonly attribute boolean stepMismatch; 33 readonly attribute boolean customError; 34 readonly attribute boolean valid;
|
HTMLMediaElement.idl | 30 readonly attribute MediaError error; 34 readonly attribute DOMString currentSrc; 40 readonly attribute unsigned short networkState; 43 readonly attribute TimeRanges buffered; 54 readonly attribute unsigned short readyState; 55 readonly attribute boolean seeking; 60 readonly attribute float startTime; 61 readonly attribute float duration; 62 readonly attribute boolean paused; 65 readonly attribute TimeRanges played [all...] |
HTMLAreaElement.idl | 34 readonly attribute DOMString hash; 35 readonly attribute DOMString host; 36 readonly attribute DOMString hostname; 37 readonly attribute DOMString pathname; 38 readonly attribute DOMString port; 39 readonly attribute DOMString protocol; 40 readonly attribute DOMString search; 44 readonly attribute URL absoluteLinkURL;
|
HTMLAnchorElement.idl | 38 readonly attribute DOMString hash; 39 readonly attribute DOMString host; 40 readonly attribute DOMString hostname; 41 readonly attribute DOMString pathname; 42 readonly attribute DOMString port; 43 readonly attribute DOMString protocol; 44 readonly attribute DOMString search; 54 readonly attribute [ConvertNullToNullString] DOMString origin; 59 readonly attribute DOMString text; 67 readonly attribute URL absoluteLinkURL [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
CharStream.pm | 4 use Readonly; 9 Readonly my $EOF => -1;
|
/external/llvm/test/CodeGen/X86/ |
2008-01-09-LongDoubleSin.ll | 7 %tmp2 = tail call x86_fp80 @sinl( x86_fp80 %x ) nounwind readonly ; <x86_fp80> [#uses=1] 11 declare x86_fp80 @sinl(x86_fp80) nounwind readonly
|
/external/llvm/test/Transforms/FunctionAttrs/ |
2008-09-03-ReadOnly.ll | 11 declare i32 @e() readonly 13 ; CHECK: attributes #0 = { readonly }
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
extension_install_dialog_controller.h | 44 @property(nonatomic, readonly) NSImageView* iconView; 45 @property(nonatomic, readonly) NSTextField* titleField; 46 @property(nonatomic, readonly) NSTextField* subtitleField; 47 @property(nonatomic, readonly) NSTextField* warningsField; 48 @property(nonatomic, readonly) NSBox* warningsBox; 49 @property(nonatomic, readonly) NSButton* cancelButton; 50 @property(nonatomic, readonly) NSButton* okButton;
|