/external/v8/test/mjsunit/regress/ |
D | regress-1199637.js | 34 const READ_ONLY = 1; constant 47 %SetProperty(this.__proto__, "c", 1234, READ_ONLY); 52 %SetProperty(this.__proto__, "d", 1234, READ_ONLY); 68 %SetProperty(this.__proto__, "z", 1234, READ_ONLY); 73 %SetProperty(this.__proto__, "w", 1234, READ_ONLY);
|
D | regress-334.js | 32 var READ_ONLY = 1; variable 41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY); 42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY); 43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE | READ_ONLY);
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
D | MapModeTest.java | 33 assertNotNull(FileChannel.MapMode.READ_ONLY); in test_PRIVATE_READONLY_READWRITE() 37 .equals(FileChannel.MapMode.READ_ONLY)); in test_PRIVATE_READONLY_READWRITE() 40 assertFalse(FileChannel.MapMode.READ_ONLY in test_PRIVATE_READONLY_READWRITE() 49 assertNotNull(FileChannel.MapMode.READ_ONLY.toString()); in test_toString()
|
D | FileChannelTest.java | 1631 writeOnlyFileChannel.map(MapMode.READ_ONLY, 0, CONTENT_LENGTH); in test_map_AbnormalMode() 1682 readOnlyFileChannel.map(MapMode.READ_ONLY, 0, CONTENT_LENGTH + 1); in test_map_AbnormalMode() 1688 readOnlyFileChannel.map(MapMode.READ_ONLY, 2, CONTENT_LENGTH - 1); in test_map_AbnormalMode() 1702 readOnlyFileChannel.map(MapMode.READ_ONLY, 2, CONTENT_LENGTH - 1); in test_map_AbnormalMode() 1723 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_ONLY, in test_map_ReadOnly_CloseChannel() 1749 mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, 0, CONTENT_LENGTH); in test_map_ReadOnly() 1762 mapped = readWriteFileChannel.map(MapMode.READ_ONLY, 0, CONTENT in test_map_ReadOnly() 1778 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, in test_map_ReadOnly_NonZeroPosition() 1893 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, in test_map_LargePosition()
|
/external/v8/src/ |
D | math.js | 232 DONT_ENUM | DONT_DELETE | READ_ONLY); 237 DONT_ENUM | DONT_DELETE | READ_ONLY); 242 DONT_ENUM | DONT_DELETE | READ_ONLY); 247 DONT_ENUM | DONT_DELETE | READ_ONLY); 251 DONT_ENUM | DONT_DELETE | READ_ONLY); 255 DONT_ENUM | DONT_DELETE | READ_ONLY); 259 DONT_ENUM | DONT_DELETE | READ_ONLY); 263 DONT_ENUM | DONT_DELETE | READ_ONLY);
|
D | property-details.h | 38 READ_ONLY = v8::ReadOnly, enumerator 112 bool IsReadOnly() { return (attributes() & READ_ONLY) != 0; } in IsReadOnly()
|
D | v8natives.js | 84 %SetProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY); 180 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY); 183 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE | READ_ONLY); 187 DONT_ENUM | DONT_DELETE | READ_ONLY); 822 flag |= desc.isWritable() ? 0 : READ_ONLY; 824 flag |= current.isWritable() ? 0 : READ_ONLY; 826 flag |= READ_ONLY; 1500 DONT_ENUM | DONT_DELETE | READ_ONLY); 1504 DONT_ENUM | DONT_DELETE | READ_ONLY); 1507 %SetProperty($Number, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY); [all …]
|
D | messages.js | 122 DONT_ENUM | DONT_DELETE | READ_ONLY); 259 DONT_DELETE | READ_ONLY | DONT_ENUM); 262 DONT_DELETE | READ_ONLY | DONT_ENUM); 267 DONT_DELETE | DONT_ENUM | READ_ONLY); 272 DONT_DELETE | DONT_ENUM | READ_ONLY); 1112 %SetProperty(builtins, '$' + name, f, DONT_ENUM | DONT_DELETE | READ_ONLY); 1134 DONT_ENUM | DONT_DELETE | READ_ONLY) ;
|
D | contexts.cc | 176 *attributes = READ_ONLY; in Lookup() 181 *attributes = READ_ONLY; in Lookup() 207 *attributes = READ_ONLY; in Lookup()
|
D | bootstrapper.cc | 369 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InstallFunction() 389 DONT_ENUM | DONT_DELETE | READ_ONLY); in ComputeFunctionInstanceDescriptor() 416 attribs = static_cast<PropertyAttributes>(attribs & ~READ_ONLY); in ComputeFunctionInstanceDescriptor() 562 attribs = static_cast<PropertyAttributes>(attribs | READ_ONLY); in ComputeStrictFunctionInstanceDescriptor() 816 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE); in HookUpInnerGlobal() 920 READ_ONLY)); in InitializeGlobal() 954 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InitializeGlobal() 1125 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InitializeGlobal() 1445 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE); in InstallNatives() 1481 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InstallNatives()
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/ |
D | MappedByteBufferTest.java | 47 MappedByteBuffer mmb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc in testasIntBuffer() 77 MappedByteBuffer mmb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size()); in testEmptyBuffer() 130 MappedByteBuffer mmbRead = fileChannelRead.map(MapMode.READ_ONLY, 0, in test_force() 137 MappedByteBuffer resultRead = fileChannelR.map(MapMode.READ_ONLY, 0, in test_force() 174 MappedByteBuffer mmbRead = fileChannelRead.map(MapMode.READ_ONLY, 0, in test_load()
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | Extensions3DChromium.h | 57 READ_ONLY = 0x88B8, enumerator
|
/external/webkit/LayoutTests/storage/indexeddb/ |
D | data-corruption-expected.txt | 19 transaction = db.transaction([], webkitIDBTransaction.READ_ONLY)
|
D | constants-expected.txt | 24 PASS webkitIDBTransaction.READ_ONLY is 1
|
/external/webkit/Source/WebCore/storage/ |
D | IDBTransaction.h | 53 READ_ONLY = 1, enumerator
|
D | IDBDatabase.h | 65 …mes, ExceptionCode& ec) { return transaction(context, storeNames, IDBTransaction::READ_ONLY, ec); } in transaction()
|
D | IDBObjectStoreBackendImpl.cpp | 123 if (transactionPtr->mode() == IDBTransaction::READ_ONLY) { in put() 274 if (transaction->mode() == IDBTransaction::READ_ONLY) { in deleteFunction() 309 if (transaction->mode() == IDBTransaction::READ_ONLY) { in clear()
|
D | IDBTransaction.idl | 34 const unsigned short READ_ONLY = 1;
|
D | IDBDatabase.cpp | 119 if (mode != IDBTransaction::READ_WRITE && mode != IDBTransaction::READ_ONLY) { in transaction()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
D | ChannelHelper.java | 33 …ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel)… in readFully()
|
/external/chromium/chrome/browser/resources/file_manager/js/ |
D | mock_chrome.js | 140 READ_ONLY: 'Read Only', property
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
D | FreeBox.java | 98 …data = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) reada… in parse()
|
/external/guava/guava/src/com/google/common/io/ |
D | Files.java | 609 return map(file, MapMode.READ_ONLY); 662 new RandomAccessFile(file, mode == MapMode.READ_ONLY ? "r" : "rw");
|
/external/webkit/Source/WebCore/rendering/style/ |
D | StyleRareInheritedData.cpp | 44 , userModify(READ_ONLY) in StyleRareInheritedData()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/ |
D | MediaDataBox.java | 170 …cacheEntry = fileChannel.map(FileChannel.MapMode.READ_ONLY, startPosition + offset, Math.min(BUFFE… in getContent()
|