HomeSort by relevance Sort by last modified time
    Searched full:read_only (Results 1 - 25 of 218) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/Parser/
opencl-image-access.cl 12 __kernel void fro(read_only image2d_t a) { }
  /external/v8/test/mjsunit/regress/
regress-1199637.js 31 // both var and const) that shadow even READ_ONLY variables
34 const READ_ONLY = 1;
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);
regress-334.js 32 var READ_ONLY = 1;
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);
64 // Can't assign to READ_ONLY.
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
MapModeTest.java 33 assertNotNull(FileChannel.MapMode.READ_ONLY);
37 .equals(FileChannel.MapMode.READ_ONLY));
40 assertFalse(FileChannel.MapMode.READ_ONLY
49 assertNotNull(FileChannel.MapMode.READ_ONLY.toString());
  /external/chromium/chrome/browser/content_settings/
content_settings_mock_provider.h 52 bool read_only,
125 void set_read_only(bool read_only) {
126 read_only_ = read_only;
129 bool read_only() const { function in class:content_settings::MockProvider
content_settings_mock_provider.cc 57 bool read_only,
64 read_only_(read_only),
content_settings_provider_unittest.cc 66 EXPECT_TRUE(mock_provider.read_only());
  /external/webkit/LayoutTests/storage/indexeddb/
constants-expected.txt 24 PASS webkitIDBTransaction.READ_ONLY is 1
data-corruption-expected.txt 19 transaction = db.transaction([], webkitIDBTransaction.READ_ONLY)
constants.html 40 shouldBe("webkitIDBTransaction.READ_ONLY", "1");
data-corruption.html 61 var transaction = evalAndLog("transaction = db.transaction([], webkitIDBTransaction.READ_ONLY)");
  /external/chromium/base/
shared_memory_win.cc 29 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
32 read_only_(read_only),
37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
41 read_only_(read_only),
121 bool SharedMemory::Open(const std::string& name, bool read_only) {
125 read_only_ = read_only;
shared_memory_posix.cc 37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
42 read_only_(read_only),
52 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
58 read_only_(read_only),
188 bool SharedMemory::Open(const std::string& name, bool read_only) {
193 read_only_ = read_only;
195 const char *mode = read_only ? "r" : "r+";
shared_memory.h 56 SharedMemory(SharedMemoryHandle handle, bool read_only);
61 SharedMemory(SharedMemoryHandle handle, bool read_only,
98 // If read_only is true, opens for read-only access.
100 bool Open(const std::string& name, bool read_only);
  /external/v8/src/
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);
  /external/v8/test/mjsunit/
store-dictionary.js 44 // Test that READ_ONLY property attribute is respected. Make 'x'
45 // READ_ONLY.
  /system/core/toolbox/
ioctl.c 19 int read_only = 0; local
35 read_only = 1;
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
MappedByteBufferTest.java 47 MappedByteBuffer mmb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc
77 MappedByteBuffer mmb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
130 MappedByteBuffer mmbRead = fileChannelRead.map(MapMode.READ_ONLY, 0,
137 MappedByteBuffer resultRead = fileChannelR.map(MapMode.READ_ONLY, 0,
174 MappedByteBuffer mmbRead = fileChannelRead.map(MapMode.READ_ONLY, 0,
  /external/chromium/chrome/browser/prefs/
testing_pref_store.cc 121 void TestingPrefStore::set_read_only(bool read_only) {
122 read_only_ = read_only;
  /external/chromium/chrome/browser/sync/engine/
update_applicator.cc 59 syncable::Entry read_only(trans, syncable::GET_BY_HANDLE, *pointer_);
60 if (SkipUpdate(read_only)) {
  /frameworks/native/include/binder/
MemoryHeapBase.h 34 READ_ONLY = IMemoryHeap::READ_ONLY,
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
CanReadFileFilter.java 54 * String[] files = dir.list( CanReadFileFilter.READ_ONLY );
72 public static final IOFileFilter READ_ONLY = new AndFileFilter(CAN_READ,
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
ResolutionChooserDialog.java 90 mScreenSizeCombo = new Combo(parent, SWT.DROP_DOWN | SWT.READ_ONLY);
109 mMonitorCombo = new Combo(parent, SWT.DROP_DOWN | SWT.READ_ONLY);
  /bootable/recovery/mtdutils/
mtdutils.h 36 const char *filesystem, int read_only);
  /external/webkit/Source/WebCore/storage/
IDBTransaction.idl 34 const unsigned short READ_ONLY = 1;

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 9