Searched refs:READ_ONLY (Results 1 - 25 of 49) sorted by relevance

12

/external/v8/test/mjsunit/regress/
H A Dregress-1199637.js31 // both var and const) that shadow even READ_ONLY variables
34 const READ_ONLY = 1;
47 %AddNamedProperty(this.__proto__, "c", 1234, READ_ONLY);
52 %AddNamedProperty(this.__proto__, "d", 1234, READ_ONLY);
68 %AddNamedProperty(this.__proto__, "z", 1234, READ_ONLY);
73 %AddNamedProperty(this.__proto__, "w", 1234, READ_ONLY);
H A Dregress-334.js32 var READ_ONLY = 1; variable
41 %AddNamedProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
42 %AddNamedProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
64 // Can't assign to READ_ONLY.
/external/v8/src/
H A Dgenerator.js68 DONT_ENUM | DONT_DELETE | READ_ONLY,
74 GeneratorObjectIterator, DONT_ENUM | DONT_DELETE | READ_ONLY);
76 GeneratorFunctionPrototype, DONT_ENUM | DONT_DELETE | READ_ONLY);
80 GeneratorFunction, DONT_ENUM | DONT_DELETE | READ_ONLY);
H A Dcontexts.cc209 *attributes = READ_ONLY;
214 *attributes = READ_ONLY;
220 *attributes = READ_ONLY;
244 *attributes = READ_ONLY;
H A Dproperty-details.h15 READ_ONLY = v8::ReadOnly, enumerator in enum:PropertyAttributes
20 FROZEN = SEALED | READ_ONLY,
257 bool IsReadOnly() const { return (attributes() & READ_ONLY) != 0; }
H A Dtypedarray.js303 READ_ONLY | DONT_ENUM | DONT_DELETE);
308 READ_ONLY | DONT_ENUM | DONT_DELETE);
H A Dv8natives.js64 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
96 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
191 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
811 flag |= desc.isWritable() ? 0 : READ_ONLY;
813 flag |= current.isWritable() ? 0 : READ_ONLY;
815 flag |= READ_ONLY;
H A Dbootstrapper.cc385 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
404 DONT_ENUM | DONT_DELETE | READ_ONLY);
436 attribs = static_cast<PropertyAttributes>(attribs & ~READ_ONLY);
558 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
869 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE);
983 DONT_ENUM | DONT_DELETE | READ_ONLY);
1026 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
1243 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
1368 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
1669 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELET
[all...]
H A Dobject-observe.js454 newRecord, prop, changeRecord[prop], READ_ONLY + DONT_DELETE);
H A Dmacros.py32 const READ_ONLY = 1;
H A Dmessages.js299 DONT_ENUM | DONT_DELETE | READ_ONLY);
1182 DONT_ENUM | DONT_DELETE | READ_ONLY);
H A Druntime.cc2027 elms->set(WRITABLE_INDEX, heap->ToBoolean((attrs & READ_ONLY) == 0));
2232 DCHECK((attr & READ_ONLY) == 0);
2298 if (is_const) attr |= READ_ONLY;
2299 if (is_function && is_native) attr |= READ_ONLY;
2352 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
2358 if ((old_attributes & READ_ONLY) != 0 ||
2362 attr = static_cast<PropertyAttributes>(old_attributes | READ_ONLY);
2385 RUNTIME_ASSERT(attr == READ_ONLY || attr == NONE);
2417 if (is_const || (attributes & READ_ONLY) != 0) {
2473 DCHECK((attributes & READ_ONLY) !
[all...]
H A Darray.js1486 DONT_ENUM | READ_ONLY);
/external/guava/guava-tests/test/com/google/common/io/
H A DPackageSanityTests.java36 setDefault(MapMode.class, MapMode.READ_ONLY);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DChannelHelper.java33 ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel).position(), size);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DFreeBox.java98 data = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);
/external/v8/test/mjsunit/es6/
H A Darray-iterator.js32 var READ_ONLY = 1; variable
40 assertEquals(desc.writable, !(attrs & READ_ONLY));
/external/e2fsprogs/debugfs/
H A Ddebugfs.c155 #ifdef READ_ONLY
159 #endif /* READ_ONLY */
204 #ifndef READ_ONLY
273 #ifndef READ_ONLY
321 #endif /* READ_ONLY */
420 #ifndef READ_ONLY
435 #endif /* READ_ONLY */
993 #ifndef READ_ONLY
1068 #endif /* READ_ONLY */
1083 #ifndef READ_ONLY
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java170 cacheEntry = fileChannel.map(FileChannel.MapMode.READ_ONLY, startPosition + offset, Math.min(BUFFER_SIZE, contentSize - offset));
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DDirectNIOBuffer.java83 _buf = fc.map(FileChannel.MapMode.READ_ONLY, 0, file.length());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DAbstractBox.java109 content = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);
/external/guava/guava/src/com/google/common/io/
H A DFiles.java812 return map(file, MapMode.READ_ONLY);
872 new RandomAccessFile(file, mode == MapMode.READ_ONLY ? "r" : "rw"));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java503 bytes = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCTableCombo.java60 int mask = SWT.BORDER | SWT.READ_ONLY | SWT.FLAT;
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java991 ByteBuffer fbuf = randomAccessFile.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, randomAccessFile.length());

Completed in 1080 milliseconds

12