HomeSort by relevance Sort by last modified time
    Searched refs:ACCESSOR (Results 1 - 25 of 29) sorted by null

1 2

  /external/v8/src/builtins/
builtins-function.cc 195 // If the targets length is the default JSFunction accessor, we can keep the
196 // accessor that's installed by default on the JSBoundFunction. It lazily
199 length_lookup.state() != LookupIterator::ACCESSOR ||
215 DCHECK_EQ(LookupIterator::ACCESSOR, it.state());
222 // If the targets name is the default JSFunction accessor, we can keep the
223 // accessor that's installed by default on the JSBoundFunction. It lazily
228 name_lookup.state() != LookupIterator::ACCESSOR ||
245 DCHECK_EQ(LookupIterator::ACCESSOR, it.state());
builtins-object.cc 130 it.state() == LookupIterator::ACCESSOR);
578 Handle<Object> name, Handle<Object> accessor) {
584 if (!accessor->IsCallable()) {
595 desc.set_get(accessor);
598 desc.set_set(accessor);
650 case LookupIterator::ACCESSOR: {
    [all...]
  /external/v8/src/
lookup.cc 206 DCHECK(state_ == DATA || state_ == ACCESSOR);
260 DCHECK(state_ == DATA || state_ == ACCESSOR);
321 DCHECK(state_ != LookupIterator::ACCESSOR ||
421 ElementsAccessor* accessor = object->GetElementsAccessor(); local
422 accessor->Delete(object, number_);
480 state_ = ACCESSOR;
489 if (state() == ACCESSOR && GetAccessors()->IsAccessorPair()) {
525 // TODO(verwaest): Move code into the element accessor.
590 ElementsAccessor* accessor = holder->GetElementsAccessor(); local
591 return accessor->Get(holder, number_)
683 ElementsAccessor* accessor = object->GetElementsAccessor(); local
810 ElementsAccessor* accessor = js_object->GetElementsAccessor(); local
    [all...]
property-descriptor.cc 73 case ACCESSOR:
122 // Fast case for regular accessor properties.
lookup.h 37 ACCESSOR,
267 // Lookup a 'cached' private property for an accessor.
property-details.h 84 ACCESSOR = (kField << 1) | kAccessor,
accessors.cc 90 // Skip any access checks we might hit. This accessor should never hit in a
97 CHECK_EQ(LookupIterator::ACCESSOR, it.state());
    [all...]
objects.cc 1396 Address accessor = v8::ToCData<Address>(getter()); local
10520 Object* accessor = accessor_pair->get(component); local
15682 ElementsAccessor* accessor = object->GetElementsAccessor(); local
15837 ElementsAccessor* accessor = ElementsAccessor::ForKind(to); local
    [all...]
api-natives.cc 211 Handle<AccessorInfo> accessor(AccessorInfo::cast(array->get(i)));
212 JSObject::SetAccessor(obj, accessor).Assert();
559 PropertyDetails details(attributes, ACCESSOR, 0, PropertyCellType::kNoCell);
elements.cc 60 // First argument in list is the accessor class, the second argument is the
61 // accessor ElementsKind, and the third is the backing store class. Use the
3816 ElementsAccessor* accessor = ElementsAccessor::ForKind(result_elements_kind); local
    [all...]
  /external/v8/src/runtime/
runtime-forin.cc 95 case LookupIterator::ACCESSOR:
runtime-scopes.cc 91 (it.state() == LookupIterator::ACCESSOR &&
103 // If the current state is ACCESSOR, this could mean it's an AccessorInfo
109 if (it.state() == LookupIterator::ACCESSOR) it.Delete();
    [all...]
runtime-debug.cc 115 case LookupIterator::ACCESSOR: {
375 if (it.state() == LookupIterator::ACCESSOR) {
    [all...]
  /external/v8/src/ic/
ic.cc 292 case LookupIterator::ACCESSOR:
    [all...]
handler-compiler.cc 305 case LookupIterator::ACCESSOR: {
418 case LookupIterator::ACCESSOR:
  /external/v8/src/compiler/
access-info.cc 351 Handle<Object> accessor(
356 if (!accessor->IsJSFunction()) {
357 CallOptimization optimization(accessor);
366 MapList{receiver_map}, accessor, holder);
369 case ACCESSOR: {
  /external/v8/src/ic/arm/
handler-compiler-arm.cc 560 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
566 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/arm64/
handler-compiler-arm64.cc 596 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
602 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/ia32/
handler-compiler-ia32.cc 563 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
569 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/mips/
handler-compiler-mips.cc 543 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
549 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/mips64/
handler-compiler-mips64.cc 543 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
549 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/ppc/
handler-compiler-ppc.cc 561 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
567 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/s390/
handler-compiler-s390.cc 533 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
539 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 555 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
561 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
  /external/v8/src/ic/x87/
handler-compiler-x87.cc 563 // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
569 (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);

Completed in 550 milliseconds

1 2