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

1 2 3 4 5 6 7 8

  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-actions.py 18 test.writable(test.workpath('actions'), False)
24 test.writable(test.workpath('actions'), True)
29 test.writable(test.workpath('relocate/actions'), False)
36 test.writable(test.workpath('relocate/actions/build'), True)
37 test.writable(test.workpath('relocate/actions/subdir1/build'), True)
38 test.writable(test.workpath('relocate/actions/subdir1/actions-out'), True)
39 test.writable(test.workpath('relocate/actions/subdir2/build'), True)
40 test.writable(test.workpath('relocate/actions/subdir2/actions-out'), True)
gyptest-copies.py 17 test.writable(test.workpath('copies'), False)
24 test.writable(test.workpath('copies'), True)
29 test.writable(test.workpath('relocate/copies'), False)
31 test.writable(test.workpath('relocate/copies/build'), True)
32 test.writable(test.workpath('relocate/copies/copies-out'), True)
33 test.writable(test.workpath('relocate/copies/subdir/build'), True)
34 test.writable(test.workpath('relocate/copies/subdir/copies-out'), True)
gyptest-rules.py 16 test.writable(test.workpath('rules'), False)
23 test.writable(test.workpath('rules'), True)
28 test.writable(test.workpath('relocate/rules'), False)
30 test.writable(test.workpath('relocate/rules/build'), True)
31 test.writable(test.workpath('relocate/rules/subdir1/build'), True)
32 test.writable(test.workpath('relocate/rules/subdir2/build'), True)
33 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/chromeos/file_system_provider/
provided_file_system_info.cc 16 bool writable,
21 writable_(writable),
provided_file_system_info.h 22 const bool writable,
30 bool writable() const { return writable_; } function in class:chromeos::file_system_provider::ProvidedFileSystemInfo
43 // Whether the file system is writable or just read-only.
  /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/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...]
  /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...]
object-seal.js 60 assertTrue(desc.writable);
65 assertTrue(desc.writable);
87 assertTrue(desc.writable);
92 assertTrue(desc.writable);
96 // Since writable is not affected by seal we should still be able to
118 // sealed and frozen (accessors has no writable attribute).
137 assertTrue(desc.writable);
142 assertTrue(desc.writable);
150 // Since the values in the array is still writable this object
156 assertTrue(desc.writable);
    [all...]
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
Core.java 43 public static final HandleSignals WRITABLE =
57 * Change the writable bit of this signal.
59 * @param writable the new value of the writable bit.
62 public HandleSignals setWritable(boolean writable) {
63 return setFlag(FLAG_WRITABLE, writable);
  /external/chromium_org/v8/test/mjsunit/compiler/
proto-chain-constant.js 33 var obj4 = c(null, { f4: { value: function() { return 4; }, writable: true }});
34 var obj3 = c(obj4, { f3: { value: function() { return 3; }, writable: true }});
35 var obj2 = c(obj3, { f2: { value: function() { return 2; }, writable: true }});
36 var obj1 = c(obj2, { f1: { value: function() { return 1; }, writable: true }});
37 var obj0 = c(obj1, { f0: { value: function() { return 0; }, writable: true }});
  /external/chromium_org/v8/test/webkit/
array-defineOwnProperty.js 31 shouldBe("var a = Object.defineProperty([], 'length', { writable: false }); a[1] = 1; a.length", '0');
32 shouldBe("var a = Object.defineProperty([], 'length', { writable: false }); a.length = 1; a.length", '0');
33 // If writable is not specified, it should not change.
40 shouldThrow("Object.defineProperty(Object.defineProperty([], 'length', { writable: false }), 'length', { writable: true })");
44 // An indexed property can be made non-writable/enumerable/configurable.
45 shouldBe("var a = Object.defineProperty([42], '0', { writable: false }); a[0] = 1; a[0]", '42');
51 // A configurable, non-writable property can be made writable, but a non-configurable one cannot.
52 shouldBeTrue("Object.defineProperty(Object.defineProperty([true], '0', { configurable:true, writable: false }), '0', { writable: true })[0]")
    [all...]

Completed in 676 milliseconds

1 2 3 4 5 6 7 8