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:funcVar
(Results
1 - 8
of
8
) sorted by relevance
/arkcompiler/ets_frontend/es2panda/ir/expressions/
H
A
D
functionExpression.cpp
44
binder::Variable *
funcVar
= nullptr;
in Check()
local
48
funcVar
= func_->Parent()->Parent()->AsVariableDeclarator()->Id()->AsIdentifier()->Variable();
in Check()
60
if (
funcVar
&& !
funcVar
->TsType()) {
in Check()
61
funcVar
->SetTsType(funcType);
in Check()
H
A
D
arrowFunctionExpression.cpp
44
binder::Variable *
funcVar
= nullptr;
in Check()
local
48
funcVar
= func_->Parent()->Parent()->AsVariableDeclarator()->Id()->AsIdentifier()->Variable();
in Check()
60
if (
funcVar
&& !
funcVar
->TsType()) {
in Check()
61
funcVar
->SetTsType(funcType);
in Check()
/arkcompiler/ets_frontend/es2panda/typescript/core/
H
A
D
function.cpp
550
void Checker::InferFunctionDeclarationType(const binder::FunctionDecl *decl, binder::Variable *
funcVar
)
in InferFunctionDeclarationType()
argument
611
funcType->SetVariable(
funcVar
);
in InferFunctionDeclarationType()
612
funcVar
->SetTsType(funcType);
in InferFunctionDeclarationType()
620
funcType->SetVariable(
funcVar
);
in InferFunctionDeclarationType()
621
funcVar
->SetTsType(funcType);
in InferFunctionDeclarationType()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
H
A
D
function.cpp
564
void TSChecker::InferFunctionDeclarationType(const varbinder::FunctionDecl *decl, varbinder::Variable *
funcVar
)
in InferFunctionDeclarationType()
argument
604
funcType->SetVariable(
funcVar
);
in InferFunctionDeclarationType()
605
funcVar
->SetTsType(funcType);
in InferFunctionDeclarationType()
612
funcType->SetVariable(
funcVar
);
in InferFunctionDeclarationType()
613
funcVar
->SetTsType(funcType);
in InferFunctionDeclarationType()
/arkcompiler/ets_frontend/ets2panda/checker/
H
A
D
TSAnalyzer.cpp
309
varbinder::Variable *
funcVar
= nullptr;
in Check()
local
314
funcVar
= expr->Function()->Parent()->Parent()->AsVariableDeclarator()->Id()->AsIdentifier()->Variable();
in Check()
326
if (
funcVar
!= nullptr &&
funcVar
->TsType() == nullptr) {
in Check()
327
funcVar
->SetTsType(funcType);
in Check()
552
varbinder::Variable *
funcVar
= nullptr;
in Check()
local
557
funcVar
= expr->Function()->Parent()->Parent()->AsVariableDeclarator()->Id()->AsIdentifier()->Variable();
in Check()
569
if (
funcVar
!= nullptr &&
funcVar
->TsType() == nullptr) {
in Check()
570
funcVar
in Check()
[all...]
H
A
D
TSchecker.h
356
void InferFunctionDeclarationType(const varbinder::FunctionDecl *decl, varbinder::Variable *
funcVar
);
/arkcompiler/ets_frontend/es2panda/typescript/
H
A
D
checker.h
427
void InferFunctionDeclarationType(const binder::FunctionDecl *decl, binder::Variable *
funcVar
);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
H
A
D
litecg_ir_builder.cpp
2813
Var &
funcVar
= lmirBuilder_->CreateLocalVar(callee.GetType(), "DeoptimizeSubFunc");
in GenDeoptEntry()
local
2814
Stmt &funcAddrNode = lmirBuilder_->Dassign(callee,
funcVar
);
in GenDeoptEntry()
2820
Stmt &callNode = lmirBuilder_->ICall(lmirBuilder_->Dread(
funcVar
), params, pregIdx);
in GenDeoptEntry()
Completed in 14 milliseconds