/arkcompiler/ets_frontend/es2panda/typescript/types/ |
D | objectType.cpp | 71 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/ |
D | labels_test.cpp.in | 39 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/ |
D | tsLiteralType.cpp | 43 auto found = checker->NodeCache().find(this); in GetType() local 44 if (found != checker->NodeCache().end()) { in GetType() 45 return found->second; in GetType()
|
D | tsTypeQuery.cpp | 43 auto found = checker->NodeCache().find(this); in GetType() local 44 if (found != checker->NodeCache().end()) { in GetType() 45 return found->second; in GetType()
|
D | tsOptionalType.cpp | 43 auto found = checker->NodeCache().find(this); in GetType() local 44 if (found != checker->NodeCache().end()) { in GetType() 45 return found->second; in GetType()
|
D | tsParenthesizedType.cpp | 43 auto found = checker->NodeCache().find(this); in GetType() local 44 if (found != checker->NodeCache().end()) { in GetType() 45 return found->second; in GetType()
|
D | tsRestType.cpp | 43 auto found = checker->NodeCache().find(this); in GetType() local 44 if (found != checker->NodeCache().end()) { in GetType() 45 return found->second; in GetType()
|
D | tsUnionType.cpp | 49 auto found = checker->NodeCache().find(this); in GetType() local 50 if (found != checker->NodeCache().end()) { in GetType() 51 return found->second; in GetType()
|
D | tsTypeReference.cpp | 56 auto found = checker->NodeCache().find(this); in GetType() local 57 if (found != checker->NodeCache().end()) { in GetType() 58 return found->second; in GetType()
|
D | tsTypeLiteral.cpp | 56 auto found = checker->NodeCache().find(this); in GetType() local 58 if (found != checker->NodeCache().end()) { in GetType() 59 return found->second; in GetType()
|
D | tsIndexedAccessType.cpp | 63 auto found = checker->NodeCache().find(this); in GetType() local 64 if (found != checker->NodeCache().end()) { in GetType() 65 return found->second; in GetType()
|
D | tsIndexSignature.cpp | 49 auto found = checker->NodeCache().find(this); in Check() local 50 if (found != checker->NodeCache().end()) { in Check() 51 return found->second; in Check()
|
D | tsSignatureDeclaration.cpp | 57 auto found = checker->NodeCache().find(this); in Check() local 58 if (found != checker->NodeCache().end()) { in Check() 59 return found->second; in Check()
|
D | tsTupleType.cpp | 45 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/ |
D | number_helper.cpp | 130 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/ |
D | object.cpp | 293 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()
|
D | helpers.cpp | 223 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/ |
D | js_file_path.cpp | 64 auto found = jsPandaFileDesc.find(JSPandaFile::BUNDLE_INSTALL_PATH); in GetHapName() local 65 if (found == std::string::npos) { in GetHapName()
|
D | js_proxy.cpp | 316 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/ |
D | module_tests.txt | 148 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/ |
D | reg_acc_alloc.cpp | 114 bool found = false; in CanUserReadAcc() local 125 if (!found) { in CanUserReadAcc() 126 found = true; in CanUserReadAcc()
|
/arkcompiler/ets_runtime/ecmascript/stackmap/ |
D | ark_stackmap_parser.cpp | 65 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/ |
D | README.md | 29 …o) - output list of test files that found not relevant to the current spec (the assertions in test…
|
/arkcompiler/ets_frontend/es2panda/ir/statements/ |
D | variableDeclarator.cpp | 121 auto found = checker->NodeCache().find(this); in Check() local 122 if (found != checker->NodeCache().end()) { in Check()
|
/arkcompiler/runtime_core/libpandafile/ |
D | debug_info_extractor.cpp | 111 bool found = false; in HandleEndLocal() local 115 found = true; in HandleEndLocal() 119 if (!found) { in HandleEndLocal()
|