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:lambdaParam
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
helpers.cpp
2207
const auto *const
lambdaParam
= param->AsETSParameterExpression()->Ident();
in NeedTypeInference()
local
2208
if (
lambdaParam
->TypeAnnotation() == nullptr) {
in NeedTypeInference()
2247
auto *const
lambdaParam
= lambda->Params()[i]->AsETSParameterExpression()->Ident();
in InferTypesForLambda()
local
2248
if (
lambdaParam
->TypeAnnotation() == nullptr) {
in InferTypesForLambda()
2249
auto *const typeAnnotation = calleeParam->TypeAnnotation()->Clone(Allocator(),
lambdaParam
);
in InferTypesForLambda()
2254
lambdaParam
->SetTsTypeAnnotation(typeAnnotation);
in InferTypesForLambda()
2255
typeAnnotation->SetParent(
lambdaParam
);
in InferTypesForLambda()
H
A
D
typeCheckingHelpers.cpp
969
for (auto *const
lambdaParam
: lambda->Params()) {
970
lambdaParamTypes.emplace_back(
lambdaParam
->AsETSParameterExpression()->Ident()->TypeAnnotation());
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H
A
D
lambdaLowering.cpp
632
for (auto *
lambdaParam
: lciInfo->lambdaSignature->Params()) {
in CreateCallForLambdaClassInvoke()
633
auto argName =
lambdaParam
->Name();
in CreateCallForLambdaClassInvoke()
634
auto *type =
lambdaParam
->TsType()->Substitute(checker->Relation(), lciInfo->substitution);
in CreateCallForLambdaClassInvoke()
Completed in 9 milliseconds