• Home
  • Raw
  • Download

Lines Matching refs:js_desc

107   TNode<JSObject> js_desc = AllocateJSObjectFromMap(map);  in ConstructAccessorDescriptor()  local
110 js_desc, JSAccessorPropertyDescriptor::kGetOffset, getter); in ConstructAccessorDescriptor()
112 js_desc, JSAccessorPropertyDescriptor::kSetOffset, setter); in ConstructAccessorDescriptor()
114 js_desc, JSAccessorPropertyDescriptor::kEnumerableOffset, in ConstructAccessorDescriptor()
117 js_desc, JSAccessorPropertyDescriptor::kConfigurableOffset, in ConstructAccessorDescriptor()
120 return js_desc; in ConstructAccessorDescriptor()
129 TNode<JSObject> js_desc = AllocateJSObjectFromMap(map); in ConstructDataDescriptor() local
131 StoreObjectFieldNoWriteBarrier(js_desc, in ConstructDataDescriptor()
133 StoreObjectFieldNoWriteBarrier(js_desc, in ConstructDataDescriptor()
136 StoreObjectFieldNoWriteBarrier(js_desc, in ConstructDataDescriptor()
139 StoreObjectFieldNoWriteBarrier(js_desc, in ConstructDataDescriptor()
143 return js_desc; in ConstructDataDescriptor()
1359 TNode<JSObject> js_desc = FromPropertyDetails( in TF_BUILTIN() local
1361 args.PopAndReturn(js_desc); in TF_BUILTIN()
1385 TNode<JSObject> js_desc = FromPropertyDescriptor(context, desc_object); in TF_BUILTIN() local
1386 args.PopAndReturn(js_desc); in TF_BUILTIN()
1462 TNode<JSObject> js_desc = AllocateJSObjectFromMap(map, properties); in FromPropertyDescriptor() local
1469 AddToDictionaryIf(IsNotTheHole(value), context, js_desc, properties, in FromPropertyDescriptor()
1473 js_desc, properties, factory->writable_string(), in FromPropertyDescriptor()
1480 AddToDictionaryIf(IsNotTheHole(get), context, js_desc, properties, in FromPropertyDescriptor()
1484 AddToDictionaryIf(IsNotTheHole(set), context, js_desc, properties, in FromPropertyDescriptor()
1489 js_desc, properties, factory->enumerable_string(), in FromPropertyDescriptor()
1495 context, js_desc, properties, factory->configurable_string(), in FromPropertyDescriptor()
1500 js_descriptor = js_desc; in FromPropertyDescriptor()