Home
last modified time | relevance | path

Searched refs:Find (Results 1 - 25 of 67) sorted by relevance

123

/arkcompiler/runtime_core/disassembler/tests/
H A Ddisassembler_get_file_name_test.cpp52 bool Find(std::stringstream &ss, const std::string &dst) in Find() function in panda::disasm::DisassemblerGetFileNameTest
70 EXPECT_TRUE(Find(ss, CHECK_MESSAGE)); in HWTEST_F()
85 EXPECT_TRUE(Find(ss, CHECK_MESSAGE)); in HWTEST_F()
100 EXPECT_TRUE(Find(ss, CHECK_MESSAGE)); in HWTEST_F()
/arkcompiler/ets_runtime/ecmascript/extractortool/tests/
H A Dsource_map_test.cpp170 MappingInfo Find(int32_t row, int32_t col, const SourceMapData &targetMap, bool& isReplaces) in Find() function in panda::ecmascript::SourceMapFriend
172 return sourceMap.Find(row, col, targetMap, isReplaces); in Find()
382 // Find Full Covered in HWTEST_F_L0()
388 mappingInfo = sourceMapFriend.Find(0, 1, targetMap, isReplaces); in HWTEST_F_L0()
392 mappingInfo = sourceMapFriend.Find(1, 1, targetMap, isReplaces); in HWTEST_F_L0()
407 mappingInfo = sourceMapFriend.Find(3, 3, targetMap, isReplaces); in HWTEST_F_L0()
412 mappingInfo = sourceMapFriend.Find(3, 2, targetMap, isReplaces); in HWTEST_F_L0()
417 mappingInfo = sourceMapFriend.Find(2, 2, targetMap, isReplaces); in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/binder/
H A Dbinder.cpp262 ScopeFindResult res = scope_->Find(name); in LookupReference()
322 res = scope_->Find(ident->Name(), ResolveBindingOptions::ALL); in LookupIdentReference()
324 res = scope_->Find(ident->Name(), ResolveBindingOptions::BINDINGS); in LookupIdentReference()
395 bool funcNameWithoutDot = (name.Find(".") == std::string::npos); in LegacyBuildFunction()
396 bool funcNameWithoutBackslash = (name.Find("\\") == std::string::npos); in LegacyBuildFunction()
583 ScopeFindResult res = scope_->Find(className); in BuildClassDefinition()
615 ScopeFindResult res = scope_->Find(classDef->Ident()->Name()); in BuildClassDefinition()
723 ScopeFindResult res = scope_->Find(annotation->Name(), bindingOptions_); in ResolveReference()
732 ScopeFindResult res = scope_->Find(util::StringView(importName), bindingOptions_); in ResolveReference()
1053 // Find t in FindIdentifierTSVariables()
[all...]
/arkcompiler/ets_frontend/es2panda/ir/expressions/
H A DthisExpression.cpp36 binder::ScopeFindResult res = pg->Scope()->Find(binder::Binder::MANDATORY_PARAM_THIS); in Compile()
H A DunaryExpression.cpp44 binder::ScopeFindResult result = pg->Scope()->Find(argument_->AsIdentifier()->Name()); in Compile()
82 binder::ScopeFindResult res = pg->Scope()->Find(ident->Name()); in Compile()
H A Didentifier.cpp49 binder::ScopeFindResult res = pg->Scope()->Find(name_); in Compile()
/arkcompiler/ets_frontend/es2panda/ir/statements/
H A DfunctionDeclaration.cpp46 binder::ScopeFindResult result = checker->Scope()->Find(funcName); in Check()
/arkcompiler/ets_runtime/ecmascript/base/tests/
H A Dstring_helper_test.cpp83 size_t pos1 = StringHelper::Find(valueStr, searchStr1, 0); in HWTEST_F_L0()
84 size_t pos2 = StringHelper::Find(valueStr, searchStr2, 0); in HWTEST_F_L0()
85 size_t pos3 = StringHelper::Find(u16ValueStr, u16SearchStr1, 0); in HWTEST_F_L0()
86 size_t pos4 = StringHelper::Find(u16ValueStr, u16SearchStr2, 0); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
H A Dvtable.h90 bool Find(JSTaggedValue val) const;
H A Dvtable.cpp95 bool VTable::Find(JSTaggedValue name) const in Find() function in panda::ecmascript::VTable
/arkcompiler/ets_runtime/ecmascript/base/
H A Dstring_helper.h123 static inline size_t Find(const std::string &thisStr, const std::string &searchStr, int32_t pos) in Find() function in panda::ecmascript::base::StringHelper
129 static inline size_t Find(const std::u16string &thisStr, const std::u16string &searchStr, int32_t pos) in Find() function in panda::ecmascript::base::StringHelper
192 size_t idx = Find(thisStr, searchStr, 0); in FindFromU16ToUpper()
200 size_t idx = Find(thisStr, tmpStr, 0); in FindFromU8ToUpper()
/arkcompiler/ets_frontend/ets2panda/varbinder/
H A Dvarbinder.cpp157 auto res = scope_->Find(name); in LookupReference()
262 auto res = scope_->Find(ident->Name(), BindingOptions()); in LookupIdentReference()
381 auto res = scope_->Find(classDef->Ident()->Name()); in InitializeClassBinding()
389 auto res = scope_->Find(classDef->Ident()->Name()); in InitializeClassIdent()
/arkcompiler/ets_frontend/es2panda/typescript/core/
H A Dhelpers.cpp101 binder::ScopeFindResult result = scope_->Find(name); in CheckReferenceExpression()
229 binder::ScopeFindResult result = scope_->Find(childNode->AsIdentifier()->Name()); in IsVariableUsedInConditionBody()
253 binder::ScopeFindResult result = scope_->Find(childNode->AsIdentifier()->Name()); in FindVariableInBinaryExpressionChain()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
H A Dhelpers.cpp99 auto result = Scope()->Find(name); in CheckReferenceExpression()
227 auto result = Scope()->Find(childNode->AsIdentifier()->Name()); in IsVariableUsedInConditionBody()
251 auto result = Scope()->Find(childNode->AsIdentifier()->Name()); in FindVariableInBinaryExpressionChain()
/arkcompiler/ets_frontend/es2panda/compiler/core/
H A Dfunction.cpp182 auto [level, slot] = pg->Scope()->Find(nullptr, true); in CompileClassInitializer()
231 auto [level, slot] = pg->Scope()->Find(classDef->InstanceInitializer()->Key()); in CompileFunction()
247 pg->StoreAccToLexEnv(pg->RootNode(), funcParamScope->Find(funcParamScope->NameVar()->Name()), true); in CompileFunction()
/arkcompiler/ets_runtime/ecmascript/extractortool/src/
H A Dsource_map.cpp198 MappingInfo SourceMap::Find(int32_t row, int32_t col, const SourceMapData& targetMap, bool& isReplaces) in Find() function in panda::ecmascript::SourceMap
391 mapInfo = Find(line - offSet + OFFSET_PREVIEW, column, targetMap, isReplaces); in GetLineAndColumnNumbers()
393 mapInfo = Find(line - offSet, column, targetMap, isReplaces); in GetLineAndColumnNumbers()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
H A Dpaoc_clusters.h48 const std::vector<OptionsCluster *> *Find(const std::string &method) in Find() function in ark::PaocClusters
273 // Find clusters for required method: in ScopedApplySpecialOptions()
274 currentClusters_ = clustersInfo->Find(method); in ScopedApplySpecialOptions()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A Dfunction.cpp133 auto res = pg->Scope()->Find(classDef->PrivateId()); in LoadClassContexts()
239 pg->StoreAccToLexEnv(pg->RootNode(), funcParamScope->Find(nameVar->Name()), true); in CompileFunction()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_array.h52 V("find", Find, 1, ArrayFind) \
145 static JSTaggedValue Find(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_shared_array.h50 V("find", Find, 1, INVALID) \
129 static JSTaggedValue Find(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_shared_typedarray.h86 V("find", Find, 1, INVALID) \
153 static JSTaggedValue Find(EcmaRuntimeCallInfo *argv);
H A Dbuiltins_typedarray.h87 V("find", Find, 1, TypedArrayFind) \
181 static JSTaggedValue Find(EcmaRuntimeCallInfo *argv);
/arkcompiler/ets_frontend/es2panda/compiler/base/
H A Dlreference.cpp163 binder::ScopeFindResult res = pg->Scope()->Find(name); in CreateLRef()
192 binder::ScopeFindResult res = pg->Scope()->Find(name); in CreateLRef()
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DcapturedVariables.cpp47 auto res = (*it)->Find(ident->Name(), varbinder::ResolveBindingOptions::VARIABLES);
/arkcompiler/ets_frontend/es2panda/ir/ts/
H A DtsAsExpression.cpp68 binder::ScopeFindResult result = checker->Scope()->Find(memberExpr->Object()->AsIdentifier()->Name()); in IsValidConstAssertionArgument()

Completed in 16 milliseconds

123