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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-actions.py 18 test.writable(test.workpath('actions'), False)
23 test.writable(test.workpath('actions'), True)
28 test.writable(test.workpath('relocate/actions'), False)
35 test.writable(test.workpath('relocate/actions/build'), True)
36 test.writable(test.workpath('relocate/actions/subdir1/build'), True)
37 test.writable(test.workpath('relocate/actions/subdir1/actions-out'), True)
38 test.writable(test.workpath('relocate/actions/subdir2/build'), True)
39 test.writable(test.workpath('relocate/actions/subdir2/actions-out'), True)
gyptest-copies.py 17 test.writable(test.workpath('copies'), False)
23 test.writable(test.workpath('copies'), True)
28 test.writable(test.workpath('relocate/copies'), False)
30 test.writable(test.workpath('relocate/copies/build'), True)
31 test.writable(test.workpath('relocate/copies/copies-out'), True)
32 test.writable(test.workpath('relocate/copies/subdir/build'), True)
33 test.writable(test.workpath('relocate/copies/subdir/copies-out'), True)
gyptest-rules.py 16 test.writable(test.workpath('rules'), False)
22 test.writable(test.workpath('rules'), True)
27 test.writable(test.workpath('relocate/rules'), False)
29 test.writable(test.workpath('relocate/rules/build'), True)
30 test.writable(test.workpath('relocate/rules/subdir1/build'), True)
31 test.writable(test.workpath('relocate/rules/subdir2/build'), True)
32 test.writable(test.workpath('relocate/rules/subdir2/rules-out'), True)
gyptest-relocate.py 17 test.writable(test.workpath('src'), False)
24 test.writable(test.workpath('src'), True)
29 test.writable(test.workpath('relocate/src'), False)
31 test.writable(test.workpath('relocate/src/build'), True)
32 test.writable(test.workpath('relocate/src/subdir2/build'), True)
33 test.writable(test.workpath('relocate/src/subdir3/build'), True)
gyptest-subdir2-deep.py 18 test.writable(test.workpath('src'), False)
20 test.writable(test.workpath('src/subdir2/deeper/build'), True)
gyptest-top-all.py 18 test.writable(test.workpath('src'), False)
25 test.writable(test.workpath('src/build'), True)
26 test.writable(test.workpath('src/subdir2/build'), True)
27 test.writable(test.workpath('src/subdir3/build'), True)
gyptest-symlink.py 21 test.writable(test.workpath('src'), False)
23 test.writable(test.workpath('src/subdir2/deeper/build'), True)
29 test.writable(test.workpath('build/deeper'), True)
gyptest-depth.py 19 test.writable(test.workpath('src'), False)
29 test.writable(test.workpath('src/build'), True)
30 test.writable(test.workpath('src/subdir2/build'), True)
31 test.writable(test.workpath('src/subdir3/build'), True)
gyptest-mac-bundle.py 20 test.writable(test.workpath(MAC_BUNDLE_DIR), False)
24 test.writable(test.workpath(MAC_BUNDLE_DIR), True)
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannel.cc 50 void TransportChannel::set_writable(bool writable) {
51 if (writable_ != writable) {
52 writable_ = writable;
  /external/chromium_org/chrome/browser/ui/apps/
directory_access_confirmation_dialog.h 15 void CreateDirectoryAccessConfirmationDialog(bool writable,
directory_access_confirmation_dialog.cc 18 DirectoryAccessConfirmationDialog(bool writable,
41 bool writable,
49 writable_(writable),
90 void CreateDirectoryAccessConfirmationDialog(bool writable,
97 writable, app_name, web_contents, on_accept, on_cancel),
  /external/chromium_org/tools/gyp/test/builddir/
gyptest-all.py 43 # by making all of relocate read-only and then making only builddir writable.
44 test.writable('relocate', False)
45 test.writable('relocate/builddir', True)
gyptest-default.py 43 # by making all of relocate read-only and then making only builddir writable.
44 test.writable('relocate', False)
45 test.writable('relocate/builddir', True)
  /external/chromium_org/third_party/libjingle/source/talk/base/
asyncfile.h 47 virtual bool writable() = 0;
  /external/chromium_org/third_party/webrtc/base/
asyncfile.h 30 virtual bool writable() = 0;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3334.js 10 Object.defineProperty(bar, "prototype", { value: 2, writable: false });
13 assertEquals(false, Object.getOwnPropertyDescriptor(bar,"prototype").writable);
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-2615.js 43 Object.defineProperty(a, "1", {writable:false, configurable:false, value: 100});
47 assertEquals(false, desc.writable);
78 Object.defineProperty(a, "3", {configurable:false, writable:false, value:3});
83 assertEquals(false, desc.writable);
93 Object.defineProperty(a, "1", {configurable:false, writable:true, value:2});
98 assertEquals(true, desc.writable);
103 assertEquals(true, desc.writable);
113 Object.defineProperty(a, "4", {writable:true, configurable:false, value:5});
122 Object.defineProperty(a, "4", {value:5, writable:false});
126 assertEquals(false, desc.writable);
    [all...]
  /system/core/fastboot/
usb.h 53 unsigned char writable; member in struct:usb_ifc_info
  /external/chromium_org/v8/test/webkit/fast/js/
Object-defineProperty.js 27 "JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})");
29 "JSON.stringify({writable: false, enumerable: false, configurable: false})");
32 shouldBe("JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: false}), 'foo'))",
33 "JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})");
34 shouldBe("JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: true}), 'foo'))",
35 "JSON.stringify({value: 1, writable: true, enumerable: false, configurable: false})");
37 "JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})");
39 "JSON.stringify({value: 1, writable: false, enumerable: true, configurable: false})");
41 "JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})");
43 "JSON.stringify({value: 1, writable: false, enumerable: false, configurable: true})")
    [all...]
  /external/chromium_org/v8/test/mjsunit/
object-define-property.js 111 var dataWritable = { value: 3000, writable: true};
134 assertFalse(desc.writable);
159 assertEquals(desc.writable, undefined);
174 assertEquals(desc.writable, undefined);
207 assertEquals(desc.writable, undefined);
225 assertEquals(desc.writable, undefined);
238 assertEquals(desc.writable, undefined);
253 assertEquals(desc.writable, undefined);
266 assertFalse(desc.writable);
270 //Try writing to non writable attribute - should remain 100
    [all...]
  /external/chromium_org/mojo/public/java/src/org/chromium/mojo/system/
Core.java 43 public static final WaitFlags WRITABLE = WaitFlags.none().setWritable(true).immutable();
57 * Change the writable bit of this flag.
59 * @param writable the new value of the writable bit.
62 public WaitFlags setWritable(boolean writable) {
63 return setFlag(FLAG_WRITABLE, writable);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /frameworks/base/core/java/android/database/sqlite/
SQLiteOpenHelper.java 191 private SQLiteDatabase getDatabaseLocked(boolean writable) {
196 } else if (!writable || !mDatabase.isReadOnly()) {
211 if (writable && db.isReadOnly()) {
218 if (DEBUG_STRICT_READONLY && !writable) {
228 if (writable) {

Completed in 1283 milliseconds

1 2 3 4 5 6 7 8 91011