Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 68) sorted by relevance

123

/arkcompiler/ets_frontend/es2panda/typescript/types/
DobjectType.cpp71 binder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in Identical() local
72 if (!found) { in Identical()
77 relation->IsIdenticalTo(it->TsType(), found->TsType()); in Identical()
83 if (it->Flags() != found->Flags()) { in Identical()
121 binder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
124 if (found) { in AssignProperties()
125 Type *sourceType = relation->GetChecker()->GetTypeOfVariable(found); in AssignProperties()
131 …if (found->HasFlag(binder::VariableFlags::OPTIONAL) && !it->HasFlag(binder::VariableFlags::OPTIONA… in AssignProperties()
205 auto *found = GetProperty(it->Name(), true); in checkExcessProperties() local
207 …if (found || (it->HasFlag(binder::VariableFlags::NUMERIC_NAME) && NumberIndexInfo()) || StringInde… in checkExcessProperties()
/arkcompiler/runtime_core/disassembler/tests/
Dlabels_test.cpp.in39 ASSERT_TRUE(beg_g != std::string::npos && end_g != std::string::npos) << "function g not found";
40 …ASSERT_TRUE(beg_gg != std::string::npos && end_gg != std::string::npos) << "function gg not found";
62 ASSERT_TRUE(beg_g != std::string::npos && end_g != std::string::npos) << "function g not found";
66 …RUE(body_g.find("jump_label_0:\n\tmovi v0, 0x0") != std::string::npos) << "jump_label_0 not found";
67 …RUE(body_g.find("jump_label_2:\n\tmovi v0, 0x1") != std::string::npos) << "jump_label_1 not found";
68 …RUE(body_g.find("jump_label_4:\n\tmovi v0, 0x2") != std::string::npos) << "jump_label_2 not found";
69 …RUE(body_g.find("jump_label_6:\n\tmovi v0, 0x3") != std::string::npos) << "jump_label_3 not found";
70 …RUE(body_g.find("jump_label_7:\n\tmovi v0, 0x4") != std::string::npos) << "jump_label_4 not found";
71 …RUE(body_g.find("jump_label_5:\n\tmovi v0, 0x5") != std::string::npos) << "jump_label_5 not found";
72 …RUE(body_g.find("jump_label_3:\n\tmovi v0, 0x6") != std::string::npos) << "jump_label_6 not found";
[all …]
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsLiteralType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
44 if (found != checker->NodeCache().end()) { in GetType()
45 return found->second; in GetType()
DtsTypeQuery.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
44 if (found != checker->NodeCache().end()) { in GetType()
45 return found->second; in GetType()
DtsOptionalType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
44 if (found != checker->NodeCache().end()) { in GetType()
45 return found->second; in GetType()
DtsParenthesizedType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
44 if (found != checker->NodeCache().end()) { in GetType()
45 return found->second; in GetType()
DtsRestType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
44 if (found != checker->NodeCache().end()) { in GetType()
45 return found->second; in GetType()
DtsUnionType.cpp49 auto found = checker->NodeCache().find(this); in GetType() local
50 if (found != checker->NodeCache().end()) { in GetType()
51 return found->second; in GetType()
DtsTypeReference.cpp56 auto found = checker->NodeCache().find(this); in GetType() local
57 if (found != checker->NodeCache().end()) { in GetType()
58 return found->second; in GetType()
DtsTypeLiteral.cpp56 auto found = checker->NodeCache().find(this); in GetType() local
58 if (found != checker->NodeCache().end()) { in GetType()
59 return found->second; in GetType()
DtsIndexedAccessType.cpp63 auto found = checker->NodeCache().find(this); in GetType() local
64 if (found != checker->NodeCache().end()) { in GetType()
65 return found->second; in GetType()
DtsIndexSignature.cpp49 auto found = checker->NodeCache().find(this); in Check() local
50 if (found != checker->NodeCache().end()) { in Check()
51 return found->second; in Check()
DtsSignatureDeclaration.cpp57 auto found = checker->NodeCache().find(this); in Check() local
58 if (found != checker->NodeCache().end()) { in Check()
59 return found->second; in Check()
DtsTupleType.cpp45 auto found = checker->NodeCache().find(this); in GetType() local
46 if (found != checker->NodeCache().end()) { in GetType()
47 return found->second; in GetType()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp130 size_t found = result.find_last_of('e'); in DoubleToExponential() local
131 if (found != CString::npos && found < result.size() - 2 && result[found + 2] == '0') { in DoubleToExponential()
132 result.erase(found + 2, 1); // 2:offset of e in DoubleToExponential()
135 size_t end = found; in DoubleToExponential()
136 while (--found > 0) { in DoubleToExponential()
137 if (result[found] != '0') { in DoubleToExponential()
141 if (result[found] == '.') { in DoubleToExponential()
142 found--; in DoubleToExponential()
144 if (found < end - 1) { in DoubleToExponential()
145 result.erase(found + 1, end - found - 1); in DoubleToExponential()
[all …]
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dobject.cpp293 auto found = type->CachedSyntheticPropertis().find(name); in GetPropertyOfUnionType() local
294 if (found != type->CachedSyntheticPropertis().end()) { in GetPropertyOfUnionType()
295 return found->second; in GetPropertyOfUnionType()
353 auto found = nodeCache_.find(key); in CheckComputedPropertyName() local
354 if (found != nodeCache_.end()) { in CheckComputedPropertyName()
355 return found->second; in CheckComputedPropertyName()
536 binder::Variable *found = type->GetProperty(prop->Name(), false); in ValidateInterfaceMemberRedeclaration() local
538 if (!found) { in ValidateInterfaceMemberRedeclaration()
543 Type *sourceType = GetTypeOfVariable(found); in ValidateInterfaceMemberRedeclaration()
Dhelpers.cpp223 bool found = false; in IsVariableUsedInConditionBody() local
225 parent->Iterate([this, searchVar, &found](const ir::AstNode *childNode) -> void { in IsVariableUsedInConditionBody()
234 found = true; in IsVariableUsedInConditionBody()
243 return found; in IsVariableUsedInConditionBody()
248 bool found = false; in FindVariableInBinaryExpressionChain() local
250 parent->Iterate([this, searchVar, &found](const ir::AstNode *childNode) -> void { in FindVariableInBinaryExpressionChain()
255 found = true; in FindVariableInBinaryExpressionChain()
263 return found; in FindVariableInBinaryExpressionChain()
/arkcompiler/ets_runtime/ecmascript/
Djs_file_path.cpp64 auto found = jsPandaFileDesc.find(JSPandaFile::BUNDLE_INSTALL_PATH); in GetHapName() local
65 if (found == std::string::npos) { in GetHapName()
Djs_proxy.cpp316 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in GetOwnProperty() local
323 if (!found) { in GetOwnProperty()
357 if (!found || targetDesc.IsConfigurable()) { in GetOwnProperty()
414 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in DefineOwnProperty() local
428 if (!found) { in DefineOwnProperty()
502 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in HasProperty() local
506 if (found) { in HasProperty()
575 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in GetProperty() local
581 if (found) { in GetProperty()
658 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in SetProperty() local
[all …]
/arkcompiler/ets_frontend/test262/
Dmodule_tests.txt148 instn-iee-err-not-found-as.js
149 instn-iee-err-not-found-empty_FIXTURE.js
150 instn-iee-err-not-found.js
197 instn-named-err-not-found-as.js
198 instn-named-err-not-found-dflt.js
199 instn-named-err-not-found-empty_FIXTURE.js
200 instn-named-err-not-found.js
234 instn-star-err-not-found-empty_FIXTURE.js
235 instn-star-err-not-found-faulty_FIXTURE.js
236 instn-star-err-not-found.js
[all …]
/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_acc_alloc.cpp114 bool found = false; in CanUserReadAcc() local
125 if (!found) { in CanUserReadAcc()
126 found = true; in CanUserReadAcc()
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dark_stackmap_parser.cpp65 CallsiteHeader *found = callsiteHead + mid; in GetArkDeopt() local
66 GetArkDeopt(stackmapAddr, *found, deopts); in GetArkDeopt()
126 CallsiteHeader *found = callsiteHead + mid; in IteratorStackMap() local
127 ParseArkStackMap(*found, stackmapAddr, arkStackMap); in IteratorStackMap()
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DREADME.md29 …o) - output list of test files that found not relevant to the current spec (the assertions in test…
/arkcompiler/ets_frontend/es2panda/ir/statements/
DvariableDeclarator.cpp121 auto found = checker->NodeCache().find(this); in Check() local
122 if (found != checker->NodeCache().end()) { in Check()
/arkcompiler/runtime_core/libpandafile/
Ddebug_info_extractor.cpp111 bool found = false; in HandleEndLocal() local
115 found = true; in HandleEndLocal()
119 if (!found) { in HandleEndLocal()

123