Searched refs:writable (Results 1 - 25 of 211) sorted by relevance

123456789

/external/chromium_org/v8/test/webkit/
H A Dconcat-while-having-a-bad-time.js28 Object.defineProperty(Array.prototype, 0, { writable: false });
/external/chromium_org/tools/gyp/test/generator-output/
H A Dgyptest-actions.py18 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)
H A Dgyptest-copies.py17 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)
H A Dgyptest-rules.py16 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)
H A Dgyptest-relocate.py17 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)
H A Dgyptest-depth.py19 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)
H A Dgyptest-top-all.py18 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)
H A Dgyptest-mac-bundle.py20 test.writable(test.workpath(MAC_BUNDLE_DIR), False)
24 test.writable(test.workpath(MAC_BUNDLE_DIR), True)
H A Dgyptest-subdir2-deep.py18 test.writable(test.workpath('src'), False)
20 test.writable(test.workpath('src/subdir2/deeper/build'), True)
H A Dgyptest-symlink.py21 test.writable(test.workpath('src'), False)
23 test.writable(test.workpath('src/subdir2/deeper/build'), True)
29 test.writable(test.workpath('build/deeper'), True)
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-115452.js34 assertTrue(Object.getOwnPropertyDescriptor(this, "foobl").writable);
36 Object.defineProperty(this, "foobl", {value: 1, writable: false});
38 assertFalse(Object.getOwnPropertyDescriptor(this, "foobl").writable);
H A Dregress-1513.js36 writable: false,
H A Dregress-1215.js30 // {writable: true, enumerable: false, and configurable: true}
34 assertEquals(desc.writable, true);
H A Dregress-3334.js10 Object.defineProperty(bar, "prototype", { value: 2, writable: false });
13 assertEquals(false, Object.getOwnPropertyDescriptor(bar,"prototype").writable);
H A Dreadonly2.js28 Object.defineProperty(this, "x", { writable:true });
52 // Make x non-writable.
53 Object.defineProperty(this, "x", { writable:false, value:5 });
H A Dregress-1530.js43 assertTrue(Object.getOwnPropertyDescriptor(f, 'prototype').writable);
49 Object.defineProperty(f, 'prototype', { value: b, writable: true });
55 assertTrue(Object.getOwnPropertyDescriptor(f, 'prototype').writable);
66 assertTrue(Object.getOwnPropertyDescriptor(f, 'prototype').writable);
71 Object.defineProperty(f, 'prototype', { value: d, writable: false });
77 assertFalse(Object.getOwnPropertyDescriptor(f, 'prototype').writable);
H A Dregress-1083.js38 assertTrue(desc.writable);
H A Dregress-95920.js55 { writable: false, value: "1" });
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannel.cc50 void TransportChannel::set_writable(bool writable) { argument
51 if (writable_ != writable) {
52 writable_ = writable;
/external/chromium_org/v8/test/mjsunit/
H A Ddefine-property-gc.js38 var descElementNonWritable = { value: 'foofoo', writable: false };
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dprovided_file_system_info.cc16 bool writable,
21 writable_(writable),
12 ProvidedFileSystemInfo( const std::string& extension_id, const std::string& file_system_id, const std::string& display_name, bool writable, const base::FilePath& mount_path) argument
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproto-chain-constant.js33 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 }});
H A Dstrict-recompile.js33 Object.defineProperty(o, 'x', {value: 12, writable: false});
/external/chromium_org/chrome/browser/ui/apps/
H A Ddirectory_access_confirmation_dialog.h15 void CreateDirectoryAccessConfirmationDialog(bool writable,
/external/chromium_org/third_party/webrtc/base/
H A Dasyncfile.h30 virtual bool writable() = 0;

Completed in 3732 milliseconds

123456789