Searched refs:IsFound (Results 1 – 14 of 14) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | object_access_helper.cpp | 60 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()
|
D | ntype_hcr_lowering.cpp | 228 if (!plr.IsFound() || !plr.IsLocal() || plr.IsAccessor() || !plr.IsWritable()) { // slowpath in LowerNTypedStOwnByName()
|
D | ts_inline_lowering.cpp | 608 if (!plr.IsFound()) { in IsAccessor()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_runtime.cpp | 46 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()
|
D | ic_handler.h | 104 if (!op.IsFound()) { in LoadProperty() 247 if (op.IsFound()) { in LoadPrototype()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_object.cpp | 605 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 …]
|
D | object_operator.cpp | 192 ASSERT(IsFound() && !value_.IsEmpty()); in FastGetValue() 220 if (!IsFound()) { in ToPropertyDescriptor() 259 if (IsFound()) { in GlobalLookupProperty() 280 if (IsFound()) { in LookupProperty()
|
D | object_operator.h | 73 inline bool IsFound() const in IsFound() function
|
D | js_hclass.h | 1736 inline bool IsFound() const in IsFound() function 1778 return IsFound() && !IsLocal(); in IsVtable()
|
D | js_object.h | 242 inline bool IsFound() const in IsFound() function
|
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/ |
D | pgo_type_infer.cpp | 216 if (!plr.IsFound()) { in ComputeCommonSuperClassTypes()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | object_operator_test.cpp | 134 EXPECT_TRUE(objectOperator.IsFound()); in HWTEST_F_L0() 137 EXPECT_FALSE(objectOperator.IsFound()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 1323 if (!res.GetPropertyMetaData().IsFound()) { in RuntimeTryLdGlobalByName()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 1426 if (!ret.GetPropertyMetaData().IsFound()) { in Get()
|