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

1 2 3 4 5 6 7 8 91011>>

  /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;
arc-readonly-property-ivar.m 5 @property (readonly) id ReadOnlyPropertyNoBackingIvar;
6 @property (readonly) id ReadOnlyProperty;
7 @property (readonly) id ReadOnlyPropertyX;
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}}
property-12.m 4 @property(readonly,assign) id X; // expected-warning {{property attributes 'readonly' and 'assign' are mutually exclusive}}
8 @property(readonly,retain) id X; // expected-warning {{property attributes 'readonly' and 'retain' are mutually exclusive}}
12 @property(readonly,copy) id X; // expected-warning {{property attributes 'readonly' and 'copy' are mutually exclusive}}
16 @property(readonly,readwrite) id X; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}}
  /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/llvm/test/CodeGen/X86/
sincos.ll 7 declare float @sinf(float) readonly
9 declare double @sin(double) readonly
11 declare x86_fp80 @sinl(x86_fp80) readonly
14 %Y = call float @sinf(float %X) readonly
19 %Y = call double @sin(double %X) readonly
24 %Y = call x86_fp80 @sinl(x86_fp80 %X) readonly
28 declare float @cosf(float) readonly
30 declare double @cos(double) readonly
32 declare x86_fp80 @cosl(x86_fp80) readonly
35 %Y = call float @cosf(float %X) readonly
    [all...]
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/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/Transforms/FunctionAttrs/
2008-09-03-ReadOnly.ll 1 ; RUN: opt < %s -basicaa -functionattrs -S | grep readonly | count 2
9 declare i32 @e() 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;

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>