Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:forUpdateStmt
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/varbinder/
H
A
D
varbinder.cpp
422
void VarBinder::BuildForUpdateLoop(ir::ForUpdateStatement *
forUpdateStmt
)
in BuildForUpdateLoop()
argument
424
auto *loopScope =
forUpdateStmt
->Scope();
in BuildForUpdateLoop()
428
if (
forUpdateStmt
->Init() != nullptr) {
in BuildForUpdateLoop()
429
ResolveReference(
forUpdateStmt
->Init());
in BuildForUpdateLoop()
432
if (
forUpdateStmt
->Update() != nullptr) {
in BuildForUpdateLoop()
433
ResolveReference(
forUpdateStmt
->Update());
in BuildForUpdateLoop()
438
if (
forUpdateStmt
->Test() != nullptr) {
in BuildForUpdateLoop()
439
ResolveReference(
forUpdateStmt
->Test());
in BuildForUpdateLoop()
442
ResolveReference(
forUpdateStmt
->Body());
in BuildForUpdateLoop()
H
A
D
varbinder.h
239
void BuildForUpdateLoop(ir::ForUpdateStatement *
forUpdateStmt
);
/arkcompiler/ets_frontend/es2panda/binder/
H
A
D
binder.cpp
646
void Binder::BuildForUpdateLoop(ir::ForUpdateStatement *
forUpdateStmt
)
in BuildForUpdateLoop()
argument
648
auto *loopScope =
forUpdateStmt
->Scope();
in BuildForUpdateLoop()
652
if (
forUpdateStmt
->Init()) {
in BuildForUpdateLoop()
653
ResolveReference(
forUpdateStmt
,
forUpdateStmt
->Init());
in BuildForUpdateLoop()
656
if (
forUpdateStmt
->Update()) {
in BuildForUpdateLoop()
657
ResolveReference(
forUpdateStmt
,
forUpdateStmt
->Update());
in BuildForUpdateLoop()
660
if (
forUpdateStmt
->Test()) {
in BuildForUpdateLoop()
661
ResolveReference(
forUpdateStmt
, forUpdateStm
in BuildForUpdateLoop()
[all...]
H
A
D
binder.h
214
void BuildForUpdateLoop(ir::ForUpdateStatement *
forUpdateStmt
);
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/scopesInit/
H
A
D
scopesInitPhase.cpp
145
void ScopesInitPhase::VisitForUpdateStatement(ir::ForUpdateStatement *
forUpdateStmt
)
in VisitForUpdateStatement()
argument
147
auto declCtx = (
forUpdateStmt
->Scope() == nullptr)
in VisitForUpdateStatement()
150
VarBinder(),
forUpdateStmt
->Scope()->DeclScope());
in VisitForUpdateStatement()
151
CallNode(
forUpdateStmt
->Init());
in VisitForUpdateStatement()
153
auto lexicalScope = LexicalScopeCreateOrEnter<varbinder::LoopScope>(VarBinder(),
forUpdateStmt
);
in VisitForUpdateStatement()
154
AttachLabelToScope(
forUpdateStmt
);
in VisitForUpdateStatement()
155
CallNode(
forUpdateStmt
->Test());
in VisitForUpdateStatement()
156
CallNode(
forUpdateStmt
->Update());
in VisitForUpdateStatement()
157
CallNode(
forUpdateStmt
->Body());
in VisitForUpdateStatement()
159
HandleFor(declCtx.GetScope(), lexicalScope.GetScope(),
forUpdateStmt
);
in VisitForUpdateStatement()
[all...]
H
A
D
scopesInitPhase.h
98
void VisitForUpdateStatement(ir::ForUpdateStatement *
forUpdateStmt
) override;
Completed in 7 milliseconds