HomeSort by relevance Sort by last modified time
    Searched full:configurable (Results 76 - 100 of 953) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/test/mjsunit/es6/
object-assign.js 7 function checkDataProperty(object, propertyKey, value, writable, enumerable, configurable) {
14 assertEquals(desc.configurable, configurable);
81 Object.defineProperty(target, "b", {configurable: false});
82 Object.defineProperty(target, "c", {enumerable: false, configurable: false});
105 Object.defineProperty(source, "c", {configurable: false});
super.js 984 configurable: true
988 configurable: true
992 configurable: true
1001 configurable: true
1005 configurable: true
1009 configurable: true
1026 assertFalse(descr.configurable);
1036 assertFalse(descr.configurable);
1042 assertFalse(descr.configurable);
1204 configurable: tru
    [all...]
array-of.js 153 assertEquals(desc.configurable, true);
194 // Non-configurable properties can't be overwritten with DefineOwnProperty
199 // Check that array properties defined are writable, enumerable, configurable
206 assertEquals(true, xlength.configurable);
211 assertEquals(true, xlength.configurable);
array-from.js 159 // Non-configurable properties can't be overwritten with DefineOwnProperty
164 // Check that array properties defined are writable, enumerable, configurable
171 assertEquals(true, xlength.configurable);
176 assertEquals(true, xlength.configurable);
iterator-prototype.js 16 assertTrue(descr.configurable);
object-literals-property-shorthand.js 28 assertTrue(descr.configurable);
  /external/v8/test/webkit/
class-syntax-prototype.js 48 shouldBeFalse('class A {}; descriptor(A, "prototype").configurable');
55 shouldBeTrue('class A { static foo() {} }; descriptor(A, "foo").configurable');
63 shouldBeTrue('class A { static get foo() {} }; descriptor(A, "foo").configurable');
71 shouldBeTrue('class A { foo() {} }; descriptor(A.prototype, "foo").configurable');
79 shouldBeTrue('class A { get foo() {} }; descriptor(A.prototype, "foo").configurable');
88 shouldBeTrue('class A { }; descriptor(A.prototype, "constructor").configurable');
  /external/v8/test/mjsunit/
element-read-only.js 7 // Ensure non-configurable argument elements stay non-configurable.
10 Object.defineProperty(args, "0", {value: 10, configurable: false});
11 assertFalse(Object.getOwnPropertyDescriptor(args, "0").configurable);
15 assertFalse(Object.getOwnPropertyDescriptor(args, "0").configurable);
for-in-opt.js 45 return {value: 10, configurable: true, writable: false, enumerable: true};
96 return {value: 10, configurable: true, writable: false, enumerable: true};
146 return {value: 10, configurable: true, writable: false, enumerable: true};
delete-non-configurable.js 48 Object.defineProperty(arr, i, { configurable: false });
67 Object.defineProperty(obj, INDEX, { configurable: false });
  /external/v8/test/mjsunit/strong/
object-delete.js 179 {configurable: true, value: "bar"},
180 {configurable: true, value: 1},
181 {configurable: true, enumerable: true, writable: true, value: "bar"},
182 {configurable: true, enumerable: true, writable: true, value: 1},
183 {configurable: true, get: (function(){return 0}), set: (function(x){})}
load-element-mutate-backing-store.js 120 {configurable: true, enumerable: true, writable: true, value: x},
121 {configurable: true, enumerable: true, get: (function() {return x}) },
180 { configurable: true, enumerable: true, set: (function(){}) }
load-element.js 118 {configurable: true, enumerable: true, writable: true, value: x},
119 {configurable: true, enumerable: true, get: (function() {return x}) },
180 { configurable: true, enumerable: true, set: (function(){}) }
load-property.js 69 {configurable: true, enumerable: true, writable: true, value: x},
70 {configurable: true, enumerable: true, get: (function() {return x}) },
128 { configurable: true, enumerable: true, set: (function(){}) }
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp 186 {"listDomains", &CParameterMgr::listDomainsCommandProcess, 0, "", "List configurable domains"},
190 "Create new configurable domain"},
192 "Delete configurable domain"},
194 "Delete all configurable domains"},
196 "Rename configurable domain"},
198 "<domain> true|false*", "Set configurable domain sequence awareness"},
200 "Get configurable domain sequence awareness"},
202 "List elements associated to configurable domain"},
204 "Associate element at given path to configurable domain"},
206 "Dissociate element at given path from configurable domain"}
    [all...]
  /build/soong/common/
config.go 84 func loadFromConfigFile(configurable jsonConfigurable, filename string) error {
91 // Make a file-configurable-options with defaults, write it out using
93 configurable.SetDefaultConfig()
94 err = saveToConfigFile(configurable, filename)
101 err = jsonDecoder.Decode(configurable)
167 // Load any configurable options from the configuration file
  /external/owasp/sanitizer/tools/findbugs/doc/manual/
analysisprops.html 6 This chapter describes the configurable analysis options.
22 The list of configurable analysis properties is shown in
23 <a class="xref" href="analysisprops.html#analysisproptable" title="Table&nbsp;9.1.&nbsp;Configurable Analysis Properties">Table&nbsp;9.1, &#8220;Configurable Analysis Properties&#8221;</a>.
24 </p><div class="table"><a name="analysisproptable"></a><p class="title"><b>Table&nbsp;9.1.&nbsp;Configurable Analysis Properties</b></p><div class="table-contents"><table summary="Configurable Analysis Properties" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Property Name</th><th align="left">Value</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">findbugs.assertionmethods</td><td align="left">Comma-separated list of fully qualified method names:
  /external/v8/test/mjsunit/harmony/
proxies-ownkeys.js 69 // Step 17a: The trap result must include all non-configurable keys.
70 Object.defineProperty(target, "nonconf", {value: 1, configurable: false});
proxies-has-own-property.js 26 handler.getOwnPropertyDescriptor = function() { return {configurable: true} }
  /external/v8/test/mjsunit/regress/
regress-merge-descriptors.js 43 configurable: true,
73 configurable: true,
  /external/autotest/client/site_tests/hardware_VideoOutSemiAuto/
control 7 PURPOSE = 'Verify external video ports are configurable with Chrome OS.'
  /external/guava/guava-tests/test/com/google/common/io/
TestByteSink.java 26 * A byte sink for testing that has configurable behavior.
TestCharSource.java 26 * A char source for testing that has configurable options.
  /external/libnfc-nci/src/include/
vendor_cfg.h 19 * This file contains compile-time configurable constants for vendor specific proprietary protocols
  /external/skia/platform_tools/android/apps/visualbench/src/main/java/com/skia/
VisualBenchActivity.java 38 // TODO make this configurable

Completed in 426 milliseconds

1 2 34 5 6 7 8 91011>>