Home | History | Annotate | Download | only in src

Lines Matching defs:pt

2948   for (Object* pt = GetPrototype();
2949 pt != heap->null_value();
2950 pt = pt->GetPrototype(GetIsolate())) {
2951 if (pt->IsJSProxy()) {
2958 return JSProxy::cast(pt)->SetPropertyViaPrototypesWithHandler(
2961 if (!JSObject::cast(pt)->HasDictionaryElements()) {
2965 JSObject::cast(pt)->element_dictionary();
2974 JSObject::cast(pt),
3325 for (Object* pt = GetPrototype();
3326 pt != heap->null_value();
3327 pt = pt->GetPrototype(isolate)) {
3328 if (pt->IsJSProxy()) {
3329 return result->HandlerResult(JSProxy::cast(pt));
3331 JSObject::cast(pt)->LocalLookupRealNamedProperty(name, result);
4187 Object* pt = GetPrototype();
4188 if (!pt->IsNull()) {
4189 return JSObject::cast(pt)->
4383 Object* pt = GetPrototype();
4384 if (pt->IsJSProxy()) {
4386 return JSProxy::cast(pt)->GetElementAttributeWithHandler(receiver, index);
4388 if (pt->IsNull()) return ABSENT;
4389 return JSObject::cast(pt)->GetElementAttributeWithReceiver(
11424 for (Object* pt = *value;
11425 pt != heap->null_value();
11426 pt = pt->GetPrototype(isolate)) {
11427 if (JSReceiver::cast(pt) == *object) {
12582 Object* pt = holder_handle->GetPrototype();
12583 if (pt == heap->null_value()) return heap->undefined_value();
12584 return pt->GetElementWithReceiver(*this_handle, index);
12827 Object* pt = GetPrototype();
12829 if (pt->IsNull()) return GetHeap()->undefined_value();
12830 return pt->GetPropertyWithReceiver(receiver, name, attributes);