Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-object.cc783 ScopedVector<Handle<Object>> excluded_properties(args.length() - 1); in RUNTIME_FUNCTION() local
796 excluded_properties[i - 1] = property; in RUNTIME_FUNCTION()
802 &excluded_properties, false), in RUNTIME_FUNCTION()
/external/v8/src/
Dobjects.cc1981 const ScopedVector<Handle<Object>>* excluded_properties, in HasExcludedProperty() argument
1984 for (int i = 0; i < excluded_properties->length(); i++) { in HasExcludedProperty()
1985 if (search_element->SameValue(*excluded_properties->at(i))) { in HasExcludedProperty()
1995 const ScopedVector<Handle<Object>>* excluded_properties, bool use_set) { in FastAssign() argument
2068 if (excluded_properties != nullptr && in FastAssign()
2069 HasExcludedProperty(excluded_properties, next_key)) { in FastAssign()
2091 const ScopedVector<Handle<Object>>* excluded_properties, bool use_set) { in SetOrCopyDataProperties() argument
2093 FastAssign(target, source, excluded_properties, use_set); in SetOrCopyDataProperties()
2130 if (excluded_properties != nullptr && in SetOrCopyDataProperties()
2131 HasExcludedProperty(excluded_properties, next_key)) { in SetOrCopyDataProperties()
Dobjects.h1911 const ScopedVector<Handle<Object>>* excluded_properties = nullptr,