HomeSort by relevance Sort by last modified time
    Searched defs:readOnly (Results 1 - 25 of 61) sorted by null

1 2 3

  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatementInfo.java 38 public boolean readOnly;
  /external/chromium_org/v8/test/webkit/fast/js/
Object-defineProperty.js 188 Object.defineProperty(Object.prototype, 'readOnly', {value:true, configurable:true, writable:false})
189 shouldBeTrue("var o = {}; o.readOnly = false; o.readOnly");
190 shouldThrow("'use strict'; var o = {}; o.readOnly = false; o.readOnly");
191 delete Object.prototype.readOnly;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFileSystem.java 31 private final boolean readOnly;
37 * @param readOnly if the file system should be read-only
39 public AbstractFileSystem(boolean readOnly) {
41 this.readOnly = readOnly;
62 return readOnly;
AbstractFsObject.java 34 private final boolean readOnly;
45 * @param readOnly if the new object will be read-only
47 protected AbstractFsObject(boolean readOnly) {
49 this.readOnly = readOnly;
109 return this.readOnly;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 25 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
30 dc.read(readOnly);
35 dc.read(new ByteBuffer[] { readOnly });
40 dc.read(new ByteBuffer[] { readOnly }, 0, 1);
FileChannelTest.java 28 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
34 fc.read(readOnly);
39 fc.read(new ByteBuffer[] { readOnly });
44 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
49 fc.read(readOnly, 0L);
58 fc.write(readOnly);
59 fc.write(new ByteBuffer[] { readOnly });
60 fc.write(new ByteBuffer[] { readOnly }, 0, 1);
61 fc.write(readOnly, 0L);
SocketChannelTest.java 43 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
48 sc.read(readOnly);
53 sc.read(new ByteBuffer[] { readOnly });
58 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
shmstr.h 108 BOOL readOnly;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
shmstr.h 108 BOOL readOnly;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
shmstr.h 108 BOOL readOnly;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestRequest.h 31 ReadOnly = 1 << 1,
52 bool readOnly() const { return m_requestType & ReadOnly; }
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 34 private Fat16RootDirectory(Fat16BootSector bs, boolean readOnly) {
35 super(bs.getRootDirEntryCount(), readOnly, true);
49 * @param readOnly if the directory shold be created read-only
54 Fat16BootSector bs, boolean readOnly) throws IOException {
56 final Fat16RootDirectory result = new Fat16RootDirectory(bs, readOnly);
AbstractDirectory.java 44 private final boolean readOnly;
55 * @param readOnly if the instance should be read-only
60 int capacity, boolean readOnly, boolean isRoot) {
64 this.readOnly = readOnly;
164 return readOnly;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 44 private final boolean readOnly;
52 * @param readOnly if the file should be opened in read-only mode, which
57 public FileDisk(File file, boolean readOnly) throws FileNotFoundException {
60 this.readOnly = readOnly;
62 final String modeString = readOnly ? "r" : "rw"; //NOI18N
67 public FileDisk(RandomAccessFile raf, FileChannel fc, boolean readOnly) {
71 this.readOnly = readOnly;
74 private FileDisk(RandomAccessFile raf, boolean readOnly) {
    [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /external/chromium_org/third_party/WebKit/public/platform/
WebFallbackThemeEngine.h 120 bool readOnly;
  /external/chromium_org/third_party/WebKit/public/platform/android/
WebThemeEngine.h 120 bool readOnly;
  /external/chromium_org/third_party/WebKit/public/platform/default/
WebThemeEngine.h 120 bool readOnly;
  /external/smack/src/org/apache/harmony/javax/security/auth/
Subject.java 81 private boolean readOnly;
99 readOnly = false;
106 * @param readOnly
119 public Subject(boolean readOnly, Set<? extends Principal> subjPrincipals,
130 this.readOnly = readOnly;
413 readOnly = true;
422 return readOnly;
515 if (readOnly) {
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 79 private boolean readOnly;
96 readOnly = false;
103 * @param readOnly
116 public Subject(boolean readOnly, Set<? extends Principal> subjPrincipals,
131 this.readOnly = readOnly;
399 readOnly = true;
408 return readOnly;
490 if (readOnly) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 64 public boolean readOnly;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
FormatterTest.java 149 private File readOnly;
243 f = new Formatter(readOnly.getPath());
288 f = new Formatter(readOnly.getPath(), "UTF-16BE");
341 f = new Formatter(readOnly.getPath(), Charset.defaultCharset()
372 f = new Formatter(readOnly);
403 f = new Formatter(readOnly, Charset.defaultCharset().name());
480 f = new Formatter(readOnly.getPath(), Charset.defaultCharset()
    [all...]

Completed in 1398 milliseconds

1 2 3