Home
last modified time | relevance | path

Searched full:found (Results 1 – 25 of 650) sorted by relevance

12345678910>>...26

/arkcompiler/ets_frontend/ets2panda/test/unit/plugin/
De2p_test_plugin_is-expected.txt5 Found Expression:
12 Found Expression:
19 Found Expression:
32 Found Expression:
42 Found Expression:
49 Found Expression:
56 Found Expression:
61 Found Expression:
68 Found Expression:
92 Found Expression:
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/
DastNode.cpp171 void AnyChildHelper(bool *found, const NodePredicate &cb, AstNode *ast) in AnyChildHelper() argument
173 if (*found) { in AnyChildHelper()
178 *found = true; in AnyChildHelper()
182 ast->Iterate([=](AstNode *child) { AnyChildHelper(found, cb, child); }); in AnyChildHelper()
187 bool found = false; in IsAnyChild() local
188 Iterate([&found, cb](AstNode *child) { AnyChildHelper(&found, cb, child); }); in IsAnyChild()
189 return found; in IsAnyChild()
192 void FindChildHelper(AstNode *&found, const NodePredicate &cb, AstNode *ast) in FindChildHelper() argument
194 if (found != nullptr) { in FindChildHelper()
199 found = ast; in FindChildHelper()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/optional_reference_type/
Doptional_reference_type.ts17 return arr ? arr[0] : 'Argument not found';
23 return arr ? arr[0] : 'Argument not found';
27 return arr ? arr[0] : 'Argument not found';
47 return obj.address ? obj.address.city : 'Adress not found';
51 return obj.address ? obj.address.city : 'Adress not found';
55 return obj.address ? obj.address.city : 'Adress not found';
68 return 'Argument not found';
70 return 'Argument not found';
Dindex.js31 return arr ? arr[0] : 'Argument not found';
37 return arr ? arr[0] : 'Argument not found';
43 return arr ? arr[0] : 'Argument not found';
49 return obj.address ? obj.address.city : 'Address not found';
55 return obj.address ? obj.address.city : 'Address not found';
61 return obj.address ? obj.address.city : 'Address not found';
73 return 'Argument not found';
Doptional_reference_type.sts26 return fnWithAnyParams() == 'Argument not found'
34 return fnWithLiteralParam() == 'Argument not found';
42 return fnWithExtraSetParam() == 'Argument not found';
61 return fnWithSubsetPick(testObj) == 'Address not found';
80 return fnWithSubsetPick(testObj) == 'Address not found';
99 return fnWithSubsetPick(testObj) == 'Address not found';
116 return fnWithUnionParam() == 'Argument not found';
/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/runtime_core/static_core/runtime/tests/
Dintrusive_gc_test_api_test.cpp68 bool found = false; in TEST_P() local
69 vm->IterateOverMarkQueue([&count, &found, object](ObjectHeader *obj) { in TEST_P()
72 found = true; in TEST_P()
76 ASSERT_TRUE(found); in TEST_P()
87 found = false; in TEST_P()
88 vm->IterateOverMarkQueue([&found, object](ObjectHeader *obj) { in TEST_P()
90 found = true; in TEST_P()
93 ASSERT_TRUE(found); in TEST_P()
/arkcompiler/ets_frontend/ets2panda/test/unit/annotations/
Dannotations_emit_test.h85 ASSERT_FALSE(recordTable.empty()) << "No records found in the program."; in CheckAnnoDecl()
86 auto found = recordTable.find(annoName); in CheckAnnoDecl() local
87 ASSERT_NE(found, recordTable.end()); in CheckAnnoDecl()
90 auto scalarValue = found->second.fieldList[i].metadata->GetValue(); in CheckAnnoDecl()
93 found->second.fieldList[i].name); in CheckAnnoDecl()
105 auto found = literalarrayTable.find(literalArray.first); in CheckLiteralArrayTable() local
106 ASSERT_NE(found, literalarrayTable.end()); in CheckLiteralArrayTable()
110 … ASSERT_EQ(value, found->second.literals[i].value) << "Value mismatch for " + literalArray.first; in CheckLiteralArrayTable()
120 ASSERT_FALSE(recordTable.empty()) << "No records found in the program."; in CheckClassAnnotations()
121 auto found = recordTable.find(className); in CheckClassAnnotations() local
[all …]
/arkcompiler/runtime_core/static_core/libpandafile/external/
Dfile_ext.cpp61 ark::panda_file::ext::MethodSymEntry *found = nullptr; in QueryMethodSymByOffset() local
63 auto callBack = [this, offset, &found](ark::panda_file::MethodDataAccessor &mda) -> void { in QueryMethodSymByOffset()
74 found = &ret.first->second; in QueryMethodSymByOffset()
87 return found; in QueryMethodSymByOffset()
91 … ark::panda_file::ext::MethodSymEntry *found) in EnumerateAllMethods()
94 …cda.EnumerateMethods([this, &cda, &offset, &found](ark::panda_file::MethodDataAccessor &mda) -> vo… in EnumerateAllMethods()
106 found = &ret.first->second; in EnumerateAllMethods()
109 found->id = idNew; in EnumerateAllMethods()
110found->name = ark::os::native_stack::ChangeJaveStackFormat(reinterpret_cast<const char *>(nameId))… in EnumerateAllMethods()
111 "." + found->name; in EnumerateAllMethods()
[all …]
/arkcompiler/runtime_core/libabckit/tests/clean_scenarios/cpp_api/dynamic/replace_call_site/
Dreplace_call_site_test.cpp71 bool found = false; in HasTargetMethod() local
74 found |= target.className == user.GetString(); in HasTargetMethod()
76 return !found; in HasTargetMethod()
79 return found; in HasTargetMethod()
84 bool found = false; in HasTargetMethod() local
88 … for (abckit::Instruction inst = bb.GetFirstInst(); !!inst && !found; inst = inst.GetNext()) { in HasTargetMethod()
89 found |= HasTargetMethod(inst, target); in HasTargetMethod()
91 return !found; in HasTargetMethod()
94 return found; in HasTargetMethod()
99 std::optional<abckit::Instruction> found; in FindFirstInst() local
[all …]
/arkcompiler/ets_runtime/test/aottest/icnotfound/
Dicnotfound.js18 // Test1: test not found ic
42 // Test2: test not found ic
68 // Test3: test not found ic
97 // Test4: test not found ic
127 // Test5: test not found ic
155 // Test6: test not found ic (method on itself)
177 // Test7: test not found ic (method on prototype)
199 // Test8: test not found ic (method on Object's prototype)
221 // Test9: test not found ic (global object)
245 // Test10: test not found ic (Deopt)
/arkcompiler/ets_runtime/test/moduletest/icnotfoundtest/
Dicnotfoundtest.js18 // Test1: test not found ic
42 // Test2: test not found ic
68 // Test3: test not found ic
97 // Test4: test not found ic
127 // Test5: test not found ic
155 // Test6: test not found ic (method on itself)
177 // Test7: test not found ic (method on prototype)
199 // Test8: test not found ic (method on Object's prototype)
221 // Test9: test not found ic (global object)
245 // Test10: test not found ic (ldobjbyvalue)
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DBuiltinArrayAlgorithms.sts32 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
42 * @returns index such (arr[index] < key) is false. If no such index is found than endIndex
70 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
76 * @returns index such (arr[index] < key) is false. If no such index is found than arr.length
85 … of a first element, where (key < element) is true. If no such element is found than upper bound i…
95 * @returns index such (key < arr[index]) is true. If no such index is found than endIndex
123 … of a first element, where (key < element) is true. If no such element is found than upper bound i…
129 * @returns index such (key < arr[index]) is true. If no such index is found than arr.length
198 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
208 * @returns index such (arr[index] < key) is false. If no such index is found than endIndex
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DArray_builtin_algorithms.sts.j236 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
46 * @returns index such (arr[index] < key) is false. If no such index is found than endIndex
74 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
80 * @returns index such (arr[index] < key) is false. If no such index is found than arr.length
89 … of a first element, where (key < element) is true. If no such element is found than upper bound i…
99 * @returns index such (key < arr[index]) is true. If no such index is found than endIndex
127 … of a first element, where (key < element) is true. If no such element is found than upper bound i…
133 * @returns index such (key < arr[index]) is true. If no such index is found than arr.length
142 …of a first element, where (element < key) is false. If no such element is found than lower bound i…
152 * @returns index such (arr[index] < key) is false. If no such index is found than endIndex
[all …]
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/add-two-anon-function/
Dexpected.txt14 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#2883375060…
15 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#3272928923…
16 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/del-dup-add-anon-function/
Dexpected.txt14 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#*#^2 not s…
15 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#*#^1 not s…
16 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/add-two-anon-function/
Dexpected.txt14 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#*#^2 not s…
15 [Patch] Found new anonymous, special(containing '.' or '\') or duplicate name function .#*#^1 not s…
16 [Patch] Found unsupported change in file, will not generate patch!
/arkcompiler/ets_frontend/es2panda/typescript/types/
DobjectType.cpp51 binder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in IsPropertiesIdentical() local
52 if (!found) { in IsPropertiesIdentical()
57 relation->IsIdenticalTo(it->TsType(), found->TsType()); in IsPropertiesIdentical()
63 if (it->Flags() != found->Flags()) { in IsPropertiesIdentical()
129 binder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
132 if (found) { in AssignProperties()
133 Type *sourceType = relation->GetChecker()->GetTypeOfVariable(found); in AssignProperties()
139 …if (found->HasFlag(binder::VariableFlags::OPTIONAL) && !it->HasFlag(binder::VariableFlags::OPTIONA… in AssignProperties()
213 auto *found = GetProperty(it->Name(), true); in checkExcessProperties() local
215 …if (found || (it->HasFlag(binder::VariableFlags::NUMERIC_NAME) && NumberIndexInfo()) || StringInde… in checkExcessProperties()
/arkcompiler/ets_runtime/test/jittest/icnotfound/
Dicnotfound.js18 // Test1: test not found ic
42 // Test2: test not found ic
68 // Test3: test not found ic
97 // Test4: test not found ic
127 // Test5: test not found ic
155 // Test6: test not found ic (method on itself)
177 // Test7: test not found ic (method on prototype)
199 // Test8: test not found ic (method on Object's prototype)
221 // Test9: test not found ic (global object)
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/
DobjectType.cpp53 varbinder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in FindPropertyAndCheckIdentical() local
54 if (found == nullptr) { in FindPropertyAndCheckIdentical()
59 relation->IsIdenticalTo(it->TsType(), found->TsType()); in FindPropertyAndCheckIdentical()
65 if (it->Flags() != found->Flags()) { in FindPropertyAndCheckIdentical()
136 varbinder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
139 if (found != nullptr) { in AssignProperties()
140 Type *sourceType = relation->GetChecker()->GetTypeOfVariable(found); in AssignProperties()
146 if (found->HasFlag(varbinder::VariableFlags::OPTIONAL) && in AssignProperties()
221 auto *found = GetProperty(it->Name(), true); in CheckExcessProperties() local
223 …if (found != nullptr || (it->HasFlag(varbinder::VariableFlags::NUMERIC_NAME) && NumberIndexInfo() … in CheckExcessProperties()
/arkcompiler/runtime_core/libabckit/tests/internal/implementation_api/
Dgraph_stuff.cpp177 auto *found = helpers::FindMethodByName(file, method); in TEST_F() local
179 ASSERT_NE(found, nullptr); in TEST_F()
181 auto *graph = g_implI->createGraphFromFunction(found); in TEST_F()
183 g_implM->functionSetGraph(found, graph); in TEST_F()
207 auto *found = helpers::FindMethodByName(file, method); in TEST_F() local
209 ASSERT_NE(found, nullptr); in TEST_F()
211 auto *graph = g_implI->createGraphFromFunction(found); in TEST_F()
213 g_implM->functionSetGraph(found, graph); in TEST_F()
237 auto *found = helpers::FindMethodByName(file, method); in TEST_F() local
239 ASSERT_NE(found, nullptr); in TEST_F()
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
Dspec.rb37 warn "Non testable group \"#{ntg['title']}\" not found in ISA."
119 warn "Non testable description \"#{ntda}\" in group \"#{ntg['title']}\" not found in iSA."
130 … warn "Non testable instruction \"#{nti['sig']}\" in group \"#{ntg['title']}\" not found in ISA."
141 warn "Non testable exception \"#{nte}\" in group \"#{ntg['title']}\" not found in ISA."
152 warn "Non testable verification \"#{ntv}\" in group \"#{ntg['title']}\" not found in ISA."
213 …@orphaned << { 'file' => file, 'error' => 'Group with given title not found in the ISA', 'comment'…
238 …@orphaned << { 'file' => file, 'error' => 'Given instruction not found in the ISA', 'comment' => t…
260 @orphaned << { 'file' => file, 'error' => 'Given description assertion not found in the spec',
283 @orphaned << { 'file' => file, 'error' => 'Given exception assertion not found in the spec',
306 … @orphaned << { 'file' => file, 'error' => 'Given verification assertion not found in the spec',
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dspec.rb37 warn "Non testable group \"#{ntg['title']}\" not found in ISA."
119 warn "Non testable description \"#{ntda}\" in group \"#{ntg['title']}\" not found in iSA."
130 … warn "Non testable instruction \"#{nti['sig']}\" in group \"#{ntg['title']}\" not found in ISA."
141 warn "Non testable exception \"#{nte}\" in group \"#{ntg['title']}\" not found in ISA."
152 warn "Non testable verification \"#{ntv}\" in group \"#{ntg['title']}\" not found in ISA."
213 …@orphaned << { 'file' => file, 'error' => 'Group with given title not found in the ISA', 'comment'…
238 …@orphaned << { 'file' => file, 'error' => 'Given instruction not found in the ISA', 'comment' => t…
260 @orphaned << { 'file' => file, 'error' => 'Given description assertion not found in the spec',
283 @orphaned << { 'file' => file, 'error' => 'Given exception assertion not found in the spec',
306 … @orphaned << { 'file' => file, 'error' => 'Given verification assertion not found in the spec',
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsRestType.cpp42 auto found = checker->NodeCache().find(this); in GetType() local
43 if (found != checker->NodeCache().end()) { in GetType()
44 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()

12345678910>>...26