/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.3.1-4.js | 31 DontDelete | ReadOnly] 33 This test the ReadOnly property of Function.prototype.
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.1.1-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.E
|
15.8.1.2-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.LN10
|
15.8.1.3-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.LN2
|
15.8.1.4-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.LOG2E
|
15.8.1.5-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.LOG10E
|
15.8.1.6-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.PI
|
15.8.1.7-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.SQRT1_2
|
15.8.1.8-1.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Math.SQRT2
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.3.2-3.js | 26 the attributes [DontEnum, DontDelete, ReadOnly] 28 this test checks the ReadOnly attribute of Number.MAX_VALUE
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.3.1-3.js | 30 DontDelete ReadOnly ] 32 This tests the [ReadOnly] property of Object.prototype
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.3.1-2.js | 30 DontDelete, ReadOnly] 32 This tests the ReadOnly attribute.
|
/external/webkit/WebCore/dom/ |
Clipboard.idl | 34 readonly attribute [CustomGetter] Array types; 35 readonly attribute FileList files;
|
/external/webkit/WebCore/html/ |
HTMLIFrameElement.idl | 38 readonly attribute [CheckFrameSecurity] Document contentDocument; 41 readonly attribute DOMWindow contentWindow;
|
HTMLTableElement.idl | 33 readonly attribute HTMLCollection rows; 34 readonly attribute HTMLCollection tBodies;
|
/external/webkit/WebCore/page/ |
EventSource.idl | 41 readonly attribute DOMString URL; 47 readonly attribute unsigned short readyState;
|
/external/webkit/WebCore/svg/ |
SVGPaint.idl | 41 readonly attribute SVGPaintType paintType; 42 readonly attribute DOMString uri;
|
SVGTextContentElement.idl | 38 readonly attribute SVGAnimatedLength textLength; 39 readonly attribute SVGAnimatedEnumeration lengthAdjust;
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/version120/ |
regress-99663.js | 56 var READONLY = /read\s*-?\s*only/; 104 actual = readOnly(e.message); 118 actual = readOnly(e.message); 132 actual = readOnly(e.message); 146 function readOnly(msg) 148 if (msg.match(READONLY))
|
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
DoubleBufferTest.java | 181 // readonly's contents should be the same as buf 182 DoubleBuffer readonly = buf.asReadOnlyBuffer(); local 183 assertNotSame(buf, readonly); 184 assertTrue(readonly.isReadOnly()); 185 assertEquals(buf.position(), readonly.position()); 186 assertEquals(buf.limit(), readonly.limit()); 187 assertEquals(buf.isDirect(), readonly.isDirect()); 188 assertEquals(buf.order(), readonly.order()); 189 assertContentEquals(buf, readonly); 191 // readonly's position, mark, and limit should be independent to bu 567 DoubleBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |
FloatBufferTest.java | 177 // readonly's contents should be the same as buf 178 FloatBuffer readonly = buf.asReadOnlyBuffer(); local 179 assertNotSame(buf, readonly); 180 assertTrue(readonly.isReadOnly()); 181 assertEquals(buf.position(), readonly.position()); 182 assertEquals(buf.limit(), readonly.limit()); 183 assertEquals(buf.isDirect(), readonly.isDirect()); 184 assertEquals(buf.order(), readonly.order()); 185 assertContentEquals(buf, readonly); 187 // readonly's position, mark, and limit should be independent to bu 562 FloatBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |
IntBufferTest.java | 152 // readonly's contents should be the same as buf 153 IntBuffer readonly = buf.asReadOnlyBuffer(); local 154 assertNotSame(buf, readonly); 155 assertTrue(readonly.isReadOnly()); 156 assertEquals(buf.position(), readonly.position()); 157 assertEquals(buf.limit(), readonly.limit()); 158 assertEquals(buf.isDirect(), readonly.isDirect()); 159 assertEquals(buf.order(), readonly.order()); 160 assertContentEquals(buf, readonly); 162 // readonly's position, mark, and limit should be independent to bu 518 IntBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |
LongBufferTest.java | 151 // readonly's contents should be the same as buf 152 LongBuffer readonly = buf.asReadOnlyBuffer(); local 153 assertNotSame(buf, readonly); 154 assertTrue(readonly.isReadOnly()); 155 assertEquals(buf.position(), readonly.position()); 156 assertEquals(buf.limit(), readonly.limit()); 157 assertEquals(buf.isDirect(), readonly.isDirect()); 158 assertEquals(buf.order(), readonly.order()); 159 assertContentEquals(buf, readonly); 161 // readonly's position, mark, and limit should be independent to bu 517 LongBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |
ShortBufferTest.java | 151 // readonly's contents should be the same as buf 152 ShortBuffer readonly = buf.asReadOnlyBuffer(); local 153 assertNotSame(buf, readonly); 154 assertTrue(readonly.isReadOnly()); 155 assertEquals(buf.position(), readonly.position()); 156 assertEquals(buf.limit(), readonly.limit()); 157 assertEquals(buf.isDirect(), readonly.isDirect()); 158 assertEquals(buf.order(), readonly.order()); 159 assertContentEquals(buf, readonly); 161 // readonly's position, mark, and limit should be independent to bu 511 ShortBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |
CharBufferTest.java | 156 // readonly's contents should be the same as buf 157 CharBuffer readonly = buf.asReadOnlyBuffer(); local 158 assertNotSame(buf, readonly); 159 assertTrue(readonly.isReadOnly()); 160 assertEquals(buf.position(), readonly.position()); 161 assertEquals(buf.limit(), readonly.limit()); 162 assertEquals(buf.isDirect(), readonly.isDirect()); 163 assertEquals(buf.order(), readonly.order()); 164 assertEquals(buf.capacity(), readonly.capacity()); 165 assertContentEquals(buf, readonly); 559 CharBuffer readonly = buf.asReadOnlyBuffer(); local [all...] |