Home
last modified time | relevance | path

Searched refs:IsFound (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dobject_access_helper.cpp60 return plr.IsFound(); in ComputeForClassInstance()
63 return (plr.IsFound() && !plr.IsFunction()); in ComputeForClassInstance()
85 return (plr.IsFound() && plr.IsLocal() && !plr.IsAccessor()); in ComputeForClassOrObject()
88 return (plr.IsFound() && plr.IsLocal() && !plr.IsAccessor() && plr.IsWritable()); in ComputeForClassOrObject()
Dntype_hcr_lowering.cpp228 if (!plr.IsFound() || !plr.IsLocal() || plr.IsAccessor() || !plr.IsWritable()) { // slowpath in LowerNTypedStOwnByName()
Dts_inline_lowering.cpp608 if (!plr.IsFound()) { in IsAccessor()
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime.cpp46 if (!op.IsFound() && hclass->IsDictionaryElement()) { in UpdateLoadHandler()
51 if (!op.IsFound()) { in UpdateLoadHandler()
92 ASSERT(op.IsFound()); in UpdateStoreHandler()
175 if (!op.IsFound() && kind == ICKind::NamedGlobalTryLoadIC) { in LoadMiss()
220 if (!op.IsFound()) { in StoreMiss()
Dic_handler.h104 if (!op.IsFound()) { in LoadProperty()
247 if (op.IsFound()) { in LoadPrototype()
/arkcompiler/ets_runtime/ecmascript/
Djs_object.cpp605 if (!op.IsFound()) { in GlobalSetProperty()
692 if (!op->IsFound() && op->IsPrimitiveAttr()) { in SetProperty()
756 if (op->IsFound() && !op->IsOnPrototype()) { in SetProperty()
856 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty()
866 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty()
876 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty()
884 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetProperty()
892 return OperationResult(thread, GetProperty(thread, &op), PropertyMetaData(op.IsFound())); in GetPropertyFromGlobal()
912 if (!op->IsFound()) { in GetProperty()
940 if (!op.IsFound()) { in DeleteProperty()
[all …]
Dobject_operator.cpp192 ASSERT(IsFound() && !value_.IsEmpty()); in FastGetValue()
220 if (!IsFound()) { in ToPropertyDescriptor()
259 if (IsFound()) { in GlobalLookupProperty()
280 if (IsFound()) { in LookupProperty()
Dobject_operator.h73 inline bool IsFound() const in IsFound() function
Djs_hclass.h1736 inline bool IsFound() const in IsFound() function
1778 return IsFound() && !IsLocal(); in IsVtable()
Djs_object.h242 inline bool IsFound() const in IsFound() function
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dpgo_type_infer.cpp216 if (!plr.IsFound()) { in ComputeCommonSuperClassTypes()
/arkcompiler/ets_runtime/ecmascript/tests/
Dobject_operator_test.cpp134 EXPECT_TRUE(objectOperator.IsFound()); in HWTEST_F_L0()
137 EXPECT_FALSE(objectOperator.IsFound()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1323 if (!res.GetPropertyMetaData().IsFound()) { in RuntimeTryLdGlobalByName()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp1426 if (!ret.GetPropertyMetaData().IsFound()) { in Get()