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:returnStmt
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H
A
D
promiseVoid.cpp
40
auto *
returnStmt
= ast->AsReturnStatement();
in HandleAsyncScriptFunctionBody()
41
const auto *arg =
returnStmt
->Argument();
in HandleAsyncScriptFunctionBody()
45
const auto &returnLoc =
returnStmt
->Range();
in HandleAsyncScriptFunctionBody()
47
returnStmt
->SetArgument(voidId);
in HandleAsyncScriptFunctionBody()
210
auto *
returnStmt
= body->AsReturnStatement();
in Postcondition()
211
const auto *arg =
returnStmt
->Argument();
in Postcondition()
H
A
D
enumLowering.cpp
651
auto *const
returnStmt
= CreateReturnWitAsStatement(this, stringValuesArrayIdent, inputEnumIdent);
654
body.push_back(
returnStmt
);
680
auto *const
returnStmt
= CreateReturnWitAsStatement(this, valuesArrayIdent, inputEnumIdent);
683
body.push_back(
returnStmt
);
709
auto *const
returnStmt
= CreateReturnWitAsStatement(this, namesArrayIdent, inputEnumIdent);
712
body.push_back(
returnStmt
);
800
auto *const
returnStmt
= checker->AllocNode<ir::ReturnStatement>(asExpression);
801
return checker->AllocNode<ir::IfStatement>(namesEqualExpr,
returnStmt
, nullptr);
863
auto *const
returnStmt
= checker_->AllocNode<ir::ReturnStatement>(itemsArrayIdent);
865
body.push_back(
returnStmt
);
[all...]
H
A
D
lambdaLowering.cpp
693
auto *
returnStmt
= util::NodeAllocator::ForceSetParent<ir::ReturnStatement>(
in CreateLambdaClassInvoke()
local
695
bodyStmts.push_back(
returnStmt
);
in CreateLambdaClassInvoke()
699
auto *
returnStmt
= util::NodeAllocator::ForceSetParent<ir::ReturnStatement>(allocator, returnExpr);
in CreateLambdaClassInvoke()
local
700
bodyStmts.push_back(
returnStmt
);
in CreateLambdaClassInvoke()
/arkcompiler/ets_frontend/es2panda/typescript/core/
H
A
D
function.cpp
649
ir::ReturnStatement *
returnStmt
= childNode->AsReturnStatement();
in CollectTypesFromReturnStatements()
651
if (!
returnStmt
->Argument()) {
in CollectTypesFromReturnStatements()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
H
A
D
function.cpp
629
ir::ReturnStatement *
returnStmt
= childNode->AsReturnStatement();
in CollectTypesFromReturnStatements()
631
if (
returnStmt
->Argument() == nullptr) {
in CollectTypesFromReturnStatements()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
function.cpp
2130
ir::ReturnStatement *
returnStmt
= childNode->AsReturnStatement();
in CollectReturnStatements()
2131
returnStmt
->Check(this);
in CollectReturnStatements()
Completed in 11 milliseconds