Home
last modified time | relevance | path

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

12345678910>>...24

/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';
Doptional_reference_type.js22 return arr ? arr[0] : 'Argument not found';
28 return arr ? arr[0] : 'Argument not found';
34 return arr ? arr[0] : 'Argument not found';
40 return obj.address ? obj.address.city : 'Address not found';
46 return obj.address ? obj.address.city : 'Address not found';
52 return obj.address ? obj.address.city : 'Address not found';
64 return 'Argument not found';
Doptional_reference_type.sts25 return fnWithAnyParams() == 'Argument not found'
33 return fnWithLiteralParam() == 'Argument not found';
41 return fnWithExtraSetParam() == 'Argument not found';
60 return fnWithSubsetPick(testObj) == 'Address not found';
79 return fnWithSubsetPick(testObj) == 'Address not found';
98 return fnWithSubsetPick(testObj) == 'Address not found';
115 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/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/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/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()
128 varbinder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
131 if (found != nullptr) { in AssignProperties()
132 Type *sourceType = relation->GetChecker()->GetTypeOfVariable(found); in AssignProperties()
138 if (found->HasFlag(varbinder::VariableFlags::OPTIONAL) && in AssignProperties()
213 auto *found = GetProperty(it->Name(), true); in CheckExcessProperties() local
215 …if (found != nullptr || (it->HasFlag(varbinder::VariableFlags::NUMERIC_NAME) && NumberIndexInfo() … in CheckExcessProperties()
/arkcompiler/ets_frontend/es2panda/typescript/types/
DobjectType.cpp54 binder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in IsPropertiesIdentical() local
55 if (!found) { in IsPropertiesIdentical()
60 relation->IsIdenticalTo(it->TsType(), found->TsType()); in IsPropertiesIdentical()
66 if (it->Flags() != found->Flags()) { in IsPropertiesIdentical()
132 binder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
135 if (found) { in AssignProperties()
136 Type *sourceType = relation->GetChecker()->GetTypeOfVariable(found); in AssignProperties()
142 …if (found->HasFlag(binder::VariableFlags::OPTIONAL) && !it->HasFlag(binder::VariableFlags::OPTIONA… in AssignProperties()
216 auto *found = GetProperty(it->Name(), true); in checkExcessProperties() local
218 …if (found || (it->HasFlag(binder::VariableFlags::NUMERIC_NAME) && NumberIndexInfo()) || StringInde… in checkExcessProperties()
/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/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/ets_frontend/es2panda/ir/ts/
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()
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()
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()
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()
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()
/arkcompiler/ets_frontend/ets2panda/varbinder/
Dscope.cpp190 …// If the variable cannot be found in the scope of the local ETSGLOBAL, than we still need to chec… in FindInGlobal()
724 auto found = typeAliasScope_->Bindings().find(name); in FindLocal() local
725 if (found != typeAliasScope_->Bindings().end()) { in FindLocal()
726 return found->second; in FindLocal()
784 auto found = typeAliasScope_->Bindings().find(name); in FindLocal() local
785 if (found != typeAliasScope_->Bindings().end()) { in FindLocal()
786 return found->second; in FindLocal()
819 auto found = TypeAliasScope()->Bindings().find(name); in FindLocal() local
820 if (found != TypeAliasScope()->Bindings().end()) { in FindLocal()
821 return found->second; in FindLocal()
[all …]
/arkcompiler/toolchain/websocket/
Dhttp.cpp55 // request example can be found at https://www.rfc-editor.org/rfc/rfc6455#section-1.3
76 // status-line example: "HTTP/1.1 404 Not Found" in DecodeVersion()
89 // status-line example: "HTTP/1.1 404 Not Found" in DecodeStatus()
103 // request example can be found at https://www.rfc-editor.org/rfc/rfc6455#section-1.2
110 LOGW("Handshake failed: lack of necessary info, no status-line found"); in Decode()
/arkcompiler/ets_frontend/ets2panda/ast_verifier/
DASTVerifier.cpp79 …ctx.AddCheckMessage(std::string {"Invariant was not found: "} + invariant, *ast, lexer::SourcePosi… in Verify()
84 if (const auto &found = invariantsChecks_.find(name); found != invariantsChecks_.end()) { in Verify() local
89 auto invariant = found->second; in Verify()
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-lexenv-3/
Dexpected.txt14 [Patch] Found lexical variable changed in function .A, not supported!
15 [Patch] Found unsupported change in file, will not generate patch!

12345678910>>...24