HomeSort by relevance Sort by last modified time
    Searched full:readonly (Results 201 - 225 of 2256) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
Location.idl 34 [CallWith=ActiveWindow&FirstWindow, DoNotCheckSecurity, Unforgeable, ReadOnly, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void assign([Default=Undefined] optional DOMString url);
35 [CallWith=ActiveWindow&FirstWindow, DoNotCheckSecurity, Unforgeable, ReadOnly, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void replace([Default=Undefined] optional DOMString url);
36 [CallWith=ActiveWindow, Unforgeable, ReadOnly] void reload();
47 readonly attribute DOMString origin;
49 readonly attribute DOMStringList ancestorOrigins;
51 [NotEnumerable, Unforgeable, ReadOnly, ImplementedAs=href] DOMString toString();
52 [NotEnumerable, Custom, Unforgeable, ReadOnly] any valueOf();
SecurityPolicy.idl 28 readonly attribute boolean allowsEval;
29 readonly attribute boolean allowsInlineScript;
30 readonly attribute boolean allowsInlineStyle;
31 readonly attribute boolean isActive;
33 readonly attribute DOMStringList reportURIs;
WorkerNavigator.idl 32 readonly attribute DOMString appName;
33 readonly attribute DOMString appVersion;
34 readonly attribute DOMString platform;
35 readonly attribute DOMString userAgent;
37 readonly attribute boolean onLine;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 67 readonly attribute unsigned short readyState;
79 readonly attribute XMLHttpRequestUpload upload;
84 [CustomGetter, GetterRaisesException] readonly attribute DOMString responseText; // The custom getter implements TreatReturnedNullStringAs=Null
85 [GetterRaisesException] readonly attribute Document responseXML;
88 [CustomGetter, GetterRaisesException] readonly attribute Object response;
90 [GetterRaisesException] readonly attribute unsigned short status;
91 [GetterRaisesException] readonly attribute DOMString statusText;
  /external/clang/test/SemaObjC/
property-category-4.m 27 @property (readonly) int count;
65 @property (readonly) int count;
98 @property (readonly) int p; // no warning for this property - a getter is declared in another category
99 @property (readonly) int p1; // expected-note {{property declared here}}
100 @property (readonly) int p2; // no warning for this property - a getter is declared in this category
109 @property (readonly) float anotherFloat; // expected-note {{property declared here}}
110 @property (readonly) float Float; // no warning for this property - a getter is declared in this protocol
property-9.m 46 @property (readonly) int; // expected-warning {{declaration does not declare anything}}
47 @property (readonly) ; // expected-error {{type name requires a specifier or qualifier}}
48 @property (readonly) int : 4; // expected-error {{property requires fields to be named}}
53 readonly getter=isAwesome) // expected-error {{expected ')'}}
93 @property(readonly) int myStyle;
  /external/llvm/test/CodeGen/X86/
h-register-addressing-32.ll 5 define double @foo8(double* nocapture inreg %p, i32 inreg %x) nounwind readonly {
12 define float @foo4(float* nocapture inreg %p, i32 inreg %x) nounwind readonly {
19 define i16 @foo2(i16* nocapture inreg %p, i32 inreg %x) nounwind readonly {
26 define i8 @foo1(i8* nocapture inreg %p, i32 inreg %x) nounwind readonly {
33 define i8 @bar8(i8* nocapture inreg %p, i32 inreg %x) nounwind readonly {
40 define i8 @bar4(i8* nocapture inreg %p, i32 inreg %x) nounwind readonly {
47 define i8 @bar2(i8* nocapture inreg %p, i32 inreg %x) nounwind readonly {
h-register-addressing-64.ll 5 define double @foo8(double* nocapture inreg %p, i64 inreg %x) nounwind readonly {
12 define float @foo4(float* nocapture inreg %p, i64 inreg %x) nounwind readonly {
19 define i16 @foo2(i16* nocapture inreg %p, i64 inreg %x) nounwind readonly {
26 define i8 @foo1(i8* nocapture inreg %p, i64 inreg %x) nounwind readonly {
33 define i8 @bar8(i8* nocapture inreg %p, i64 inreg %x) nounwind readonly {
40 define i8 @bar4(i8* nocapture inreg %p, i64 inreg %x) nounwind readonly {
47 define i8 @bar2(i8* nocapture inreg %p, i64 inreg %x) nounwind readonly {
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.h 40 @property(nonatomic, readonly) NSArray* children;
43 @property(nonatomic, readonly, getter=isIgnored) BOOL ignored;
47 @property(nonatomic, readonly) NSPoint origin;
50 @property(nonatomic, readonly) NSString* role;
52 @property(nonatomic, readonly) NSSize size;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ErrorEvent.idl 34 [InitializedByEventConstructor] readonly attribute DOMString message;
35 [InitializedByEventConstructor] readonly attribute DOMString filename;
36 [InitializedByEventConstructor] readonly attribute unsigned long lineno;
37 [InitializedByEventConstructor] readonly attribute unsigned long colno;
38 [InitializedByEventConstructor, Custom, Unserializable] readonly attribute any error;
WheelEvent.idl 28 [InitializedByEventConstructor] readonly attribute long wheelDeltaX;
29 [InitializedByEventConstructor] readonly attribute long wheelDeltaY;
30 [InitializedByEventConstructor] readonly attribute unsigned long deltaMode;
32 readonly attribute long wheelDelta;
35 readonly attribute boolean webkitDirectionInvertedFromDevice;
Element.idl 27 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString tagName;
39 [PerWorldBindings] readonly attribute NamedNodeMap attributes;
60 [PerWorldBindings] readonly attribute CSSStyleDeclaration style;
69 [PerWorldBindings] readonly attribute long offsetLeft;
70 [PerWorldBindings] readonly attribute long offsetTop;
71 [PerWorldBindings] readonly attribute long offsetWidth;
72 [PerWorldBindings] readonly attribute long offsetHeight;
73 [ImplementedAs=bindingsOffsetParent, PerWorldBindings] readonly attribute Element offsetParent;
74 [PerWorldBindings] readonly attribute long clientLeft;
75 [PerWorldBindings] readonly attribute long clientTop
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.idl 24 readonly attribute HTMLFormElement form;
41 readonly attribute boolean willValidate;
42 readonly attribute ValidityState validity;
43 readonly attribute DOMString validationMessage;
48 [CheckSecurityForNode] readonly attribute Document contentDocument;
HTMLInputElement.idl 32 readonly attribute HTMLFormElement form;
33 // The 'files' attribute is intentionally not readonly.
43 [EnabledAtRuntime=DataListElement] readonly attribute HTMLElement list;
51 [Reflect] attribute boolean readOnly;
56 [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString type; // readonly dropped as part of DOM level 2
68 readonly attribute boolean willValidate;
69 readonly attribute ValidityState validity;
70 readonly attribute DOMString validationMessage;
74 readonly attribute NodeList labels;
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageEvent.idl 29 [InitializedByEventConstructor] readonly attribute DOMString key;
30 [InitializedByEventConstructor, TreatReturnedNullStringAs=Null] readonly attribute DOMString oldValue;
31 [InitializedByEventConstructor, TreatReturnedNullStringAs=Null] readonly attribute DOMString newValue;
32 [InitializedByEventConstructor] readonly attribute DOMString url;
33 [InitializedByEventConstructor] readonly attribute Storage storageArea;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDisplacementMapElement.idl 36 readonly attribute SVGAnimatedString in1;
37 readonly attribute SVGAnimatedString in2;
38 readonly attribute SVGAnimatedNumber scale;
39 readonly attribute SVGAnimatedEnumeration xChannelSelector;
40 readonly attribute SVGAnimatedEnumeration yChannelSelector;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
Entry.idl 35 readonly attribute boolean isFile;
36 readonly attribute boolean isDirectory;
37 readonly attribute DOMString name;
38 readonly attribute DOMString fullPath;
39 readonly attribute DOMFileSystem filesystem;
EntrySync.idl 35 readonly attribute boolean isFile;
36 readonly attribute boolean isDirectory;
37 readonly attribute DOMString name;
38 readonly attribute DOMString fullPath;
39 readonly attribute DOMFileSystemSync filesystem;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.idl 33 [GetterRaisesException] readonly attribute IDBAny result;
34 [GetterRaisesException] readonly attribute DOMError error;
36 readonly attribute IDBAny source;
37 readonly attribute IDBTransaction transaction;
40 readonly attribute DOMString readyState;
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIPort.idl 40 readonly attribute DOMString id;
41 readonly attribute DOMString manufacturer;
42 readonly attribute DOMString name;
43 readonly attribute MIDIPortType type;
44 readonly attribute DOMString version;
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTest.java 25 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
34 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
43 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
67 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
76 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
SMILAnimation.java 30 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
44 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
60 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
70 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
79 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
89 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
99 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
108 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
117 * NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 28 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
34 fc.read(readOnly);
39 fc.read(new ByteBuffer[] { readOnly });
44 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
49 fc.read(readOnly, 0L);
58 fc.write(readOnly);
59 fc.write(new ByteBuffer[] { readOnly });
60 fc.write(new ByteBuffer[] { readOnly }, 0, 1);
61 fc.write(readOnly, 0L);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 44 private final boolean readOnly;
52 * @param readOnly if the file should be opened in read-only mode, which
57 public FileDisk(File file, boolean readOnly) throws FileNotFoundException {
60 this.readOnly = readOnly;
62 final String modeString = readOnly ? "r" : "rw"; //NOI18N
67 public FileDisk(RandomAccessFile raf, FileChannel fc, boolean readOnly) {
71 this.readOnly = readOnly;
74 private FileDisk(RandomAccessFile raf, boolean readOnly) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.idl 41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
42 readonly attribute DOMString url;
49 readonly attribute unsigned short readyState;
51 readonly attribute unsigned long bufferedAmount;
59 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol;
60 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extensions;

Completed in 448 milliseconds

1 2 3 4 5 6 7 891011>>