HomeSort by relevance Sort by last modified time
    Searched refs:READ_ONLY (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/v8/src/
generator.js 68 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);
contexts.cc 209 *attributes = READ_ONLY;
214 *attributes = READ_ONLY;
220 *attributes = READ_ONLY;
244 *attributes = READ_ONLY;
property-details.h 15 READ_ONLY = v8::ReadOnly,
20 FROZEN = SEALED | READ_ONLY,
257 bool IsReadOnly() const { return (attributes() & READ_ONLY) != 0; }
macros.py 32 const READ_ONLY = 1;
typedarray.js 303 READ_ONLY | DONT_ENUM | DONT_DELETE);
308 READ_ONLY | DONT_ENUM | DONT_DELETE);
bootstrapper.cc 385 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);
    [all...]
v8natives.js 64 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;
    [all...]
runtime.cc     [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-334.js 32 var READ_ONLY = 1;
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/chromium_org/v8/test/mjsunit/
store-dictionary.js 44 // Test that READ_ONLY property attribute is respected. Make 'x'
45 // READ_ONLY.
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 33 ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel).position(), size);
  /external/chromium_org/third_party/zlib/google/
zip_reader_unittest.cc 32 READ_ONLY,
38 if (mode == READ_ONLY)
184 FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY);
221 FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY);
273 FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY);
293 FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FreeBox.java 98 data = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);
  /external/chromium_org/chrome/browser/extensions/api/storage/
policy_value_store.cc 26 ValueStore::READ_ONLY, "This is a read-only store.", key.Pass()));
  /external/chromium_org/extensions/browser/value_store/
value_store.h 33 READ_ONLY,
  /external/e2fsprogs/debugfs/
debugfs.c 155 #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/
MediaDataBox.java 170 cacheEntry = fileChannel.map(FileChannel.MapMode.READ_ONLY, startPosition + offset, Math.min(BUFFER_SIZE, contentSize - offset));
  /external/guava/guava/src/com/google/common/io/
Files.java 609 return map(file, MapMode.READ_ONLY);
662 new RandomAccessFile(file, mode == MapMode.READ_ONLY ? "r" : "rw");
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
TextControlInnerElements.cpp 93 style->setUserModify(READ_ONLY);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControl.cpp 85 style->setUserModify(node->isDisabledOrReadOnly() ? READ_ONLY : READ_WRITE_PLAINTEXT_ONLY);
TextAutosizer.cpp 177 || renderer->style()->userModify() != READ_ONLY;
609 if (root->isTextArea() || (root->style() && root->style()->userModify() != READ_ONLY)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 72 , userModify(READ_ONLY)
RenderStyleConstants.h 182 READ_ONLY, READ_WRITE, READ_WRITE_PLAINTEXT_ONLY
  /external/chromium_org/v8/test/mjsunit/es6/
array-iterator.js 32 var READ_ONLY = 1;
40 assertEquals(desc.writable, !(attrs & READ_ONLY));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractBox.java 109 content = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) readableByteChannel).position(), contentSize);

Completed in 1273 milliseconds

1 2 3