Home
last modified time | relevance | path

Searched refs:propDesc (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/fixtures/wpt/console/
Dconsole-is-a-namespace.any.js10 const propDesc = Object.getOwnPropertyDescriptor(self, "console");
11 assert_equals(propDesc.writable, true, "must be writable");
12 assert_equals(propDesc.enumerable, false, "must not be enumerable");
13 assert_equals(propDesc.configurable, true, "must be configurable");
14 assert_equals(propDesc.value, console, "must have the right value");
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkDeviceProperties.hpp130 const PropertyDesc propDesc = makePropertyDesc<PropertyType>(); in getPropertyType() local
131 const VkStructureType sType = propDesc.sType; in getPropertyType()
141 const deUint32 propertyId = propDesc.typeId; in getPropertyType()
/third_party/node/test/fixtures/wpt/resources/
Didlharness.js2343 var propDesc = Object.getOwnPropertyDescriptor(unscopables, prop);
2344 assert_equals(typeof propDesc, "object",
2346 assert_false("get" in propDesc,
2348 assert_false("set" in propDesc,
2350 assert_true(propDesc.writable,
2352 assert_true(propDesc.enumerable,
2354 assert_true(propDesc.configurable,
2356 assert_equals(propDesc.value, true,