/external/v8/test/webkit/ |
array-defineOwnProperty.js | 36 // The length property can be replaced with an accessor, or made either enumerable or configurable. 39 shouldThrow("Object.defineProperty([], 'length', { configurable: true })"); 44 // An indexed property can be made non-writable/enumerable/configurable. 47 shouldBe("var a = Object.defineProperty([42], '0', { configurable: false }); a.length = 0; 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]"); 53 shouldThrow("Object.defineProperty(Object.defineProperty([true], '0', { configurable:false, writable: false }), '0', { writable: true })[0]");
|
/external/v8/test/webkit/fast/js/ |
primitive-property-access-edge-cases.js | 69 Object.defineProperty(constructor.prototype, "foo", { get: function() { checkOkay = typeof this === 'object'; }, configurable: true }); 78 Object.defineProperty(constructor.prototype, "foo", { set: function() { checkOkay = typeof this === 'object'; }, configurable: true }); 87 Object.defineProperty(constructor.prototype, "foo", { get: function() { "use strict"; checkOkay = typeof this !== 'object'; }, configurable: true }); 96 Object.defineProperty(constructor.prototype, "foo", { set: function() { "use strict"; checkOkay = typeof this !== 'object'; }, configurable: true }); 155 Object.defineProperty(constructor.prototype, 42, { get: function() { checkOkay = typeof this === 'object'; }, configurable: true }); 164 Object.defineProperty(constructor.prototype, 42, { set: function() { checkOkay = typeof this === 'object'; }, configurable: true }); 173 Object.defineProperty(constructor.prototype, 42, { get: function() { "use strict"; checkOkay = typeof this !== 'object'; }, configurable: true }); 182 Object.defineProperty(constructor.prototype, 42, { set: function() { "use strict"; checkOkay = typeof this !== 'object'; }, configurable: true });
|
/external/v8/test/mjsunit/harmony/ |
proxies-bind.js | 66 getOwnPropertyDescriptor() {return {configurable: true}} 79 getOwnPropertyDescriptor() {return {configurable: true}} 92 getOwnPropertyDescriptor() {return {configurable: true}} 105 getOwnPropertyDescriptor() {return {configurable: true}} 118 getOwnPropertyDescriptor() {return {configurable: true}}
|
block-sloppy-function.js | 212 assertFalse(globalUndefinedHoistedDescriptor.configurable); 222 configurable: true, 229 // BUG(v8:4451): Should be made non-configurable 230 assertTrue(globalNonEnumerableDescriptor.configurable); 240 configurable: true, 247 // BUG(v8:4451): Should be made non-configurable 248 assertTrue(globalNonWritableDescriptor.configurable);
|
proxies-object-assign.js | 10 return {enumerable: true, configurable: true}
|
proxies-has.js | 44 // Step 9b i. Trap result must confirm presence of non-configurable properties 46 Object.defineProperty(target, "nonconf", {value: 1, configurable: false});
|
/external/parameter-framework/upstream/parameter/ |
DomainConfiguration.cpp | 69 // Parse configurable element's configuration settings 84 context.setError("Configurable Element " + configurableElementPath + 114 // Retrieve configurable element 118 // Create configurable element child element 133 // Serialize one configuration for one configurable element 181 // Have domain configuration parse settings for configurable element 206 // Have domain configuration parse settings for configurable element 262 // List configurable element paths out of ordered area configuration list 320 ALWAYS_ASSERT(it != end(mAreaConfigurationList), "Configurable Element " 345 // Ensure validity for configurable element area configuratio [all...] |
DomainConfiguration.h | 58 // Configurable Elements association 97 // Ensure validity for configurable element area configuration 102 // Return configuration validity for given configurable element 104 // Ensure validity of configurable element's area configuration by copying in from a valid one 107 // Ensure validity of all configurable element's area configuration by copying in from a valid 112 // Merge existing configurations to given configurable element ones 141 // AreaConfiguration retrieval from configurable element
|
/external/v8/test/mjsunit/strong/ |
load-property-mutate-backing-store.js | 70 {configurable: true, enumerable: true, writable: true, value: x}, 71 {configurable: true, enumerable: true, get: (function() {return x}) }, 127 { configurable: true, enumerable: true, set: (function(){}) }
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/batches/ |
ParticleBatch.java | 10 public interface ParticleBatch<T extends ParticleControllerRenderData> extends RenderableProvider, ResourceData.Configurable {
|
/external/libnfc-nci/src/nfa/sys/ |
nfa_sys_cfg.c | 22 * This file contains compile-time configurable constants for the NFA
|
/external/skia/tools/skiaserve/ |
Request.h | 43 // TODO probably want to make this configurable
|
/external/v8/test/mjsunit/regress/ |
regress-3643.js | 9 configurable: true
|
regress-687.js | 34 { value: 5, writable:true, configurable: true })); 37 assertTrue(desc.configurable); 60 assertFalse(desc.configurable); 71 assertTrue(desc.configurable);
|
regress-1215.js | 30 // {writable: true, enumerable: false, and configurable: true} 36 assertEquals(desc.configurable, true);
|
regress-128146.js | 29 Object.defineProperty({},"foo",{set:function(){},configurable:false}); 30 Object.defineProperty({},"foo",{get:function(){},configurable:false});
|
regress-712.js | 29 // can't be called with an empty property descriptor on a non-configurable 35 configurable: false });
|
regress-992.js | 29 // should just update enumerable/configurable flags. 39 assertTrue(desc.configurable);
|
/external/v8/test/webkit/fast/regex/ |
lastIndex.js | 28 // lastIndex is not configurable 46 // Cannot redefine lastIndex as configurable 47 shouldThrow("Object.defineProperty(/x/, 'lastIndex', {configurable:true}); true"); 48 shouldBeTrue("Object.defineProperty(/x/, 'lastIndex', {configurable:false}); true");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
AbsListViewRule.java | 26 // GridViews and ListViews are not configurable via XML
|
TabWidgetRule.java | 25 // TabWidgets aren't configurable as plain LinearLayout since they
|
/system/bt/bta/sdp/ |
bta_sdp_cfg.c | 20 * This file contains compile-time configurable constants for SDP Search
|
/external/v8/src/ |
property-descriptor.cc | 137 factory->ToBoolean(configurable())); 175 // configurable? 176 Handle<Object> configurable; local 179 &configurable)) { 182 // 9c. Set the [[Configurable]] field of desc to conf. 183 if (!configurable.is_null()) { 184 desc->set_configurable(configurable->BooleanValue()); 265 // [[Enumerable]]: false, [[Configurable]]: false}. 293 // 7. If Desc does not have a [[Configurable]] field, set 294 // Desc.[[Configurable]] to like.[[Configurable]] [all...] |
/external/skia/site/dev/runtime/ |
index.md | 10 In order to use a runtime-configurable variable in your source, simply: 17 ## Declaring a runtime-configurable variable 39 ## Using a runtime-configurable variable 51 ## Changing a runtime-configurable variable after launch 53 If, for some reason, you want to change the value of a runtime-configurable 68 ## Changing a runtime-configurable variable before launch 71 can control the values of runtime-configurable variables at launch time: a 102 You can quickly override the value of one runtime-configurable variable using an
|
/external/v8/test/mjsunit/es6/ |
typedarray-proto.js | 66 assertFalse(desc.configurable); 72 assertFalse(desc.configurable);
|