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:Declarators
(Results
1 - 23
of
23
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/test/unit/lowerings/
H
A
D
scopes_initialization.cpp
63
->
Declarators
()
in BodyToFirstName()
97
auto parName = forNode->Init()->AsVariableDeclaration()->
Declarators
()[0]->Id()->AsIdentifier();
in TEST_F()
/arkcompiler/ets_frontend/ets2panda/parser/program/
H
A
D
entityNameVisitor.cpp
32
const auto &decls = varDecl->AsVariableDeclaration()->
Declarators
();
in VisitVariableDeclaration()
/arkcompiler/ets_frontend/es2panda/ir/statements/
H
A
D
variableDeclaration.h
47
const ArenaVector<VariableDeclarator *> &
Declarators
() const
in Declarators()
function in panda::es2panda::panda::es2panda::panda::es2panda::ir::VariableDeclaration
/arkcompiler/ets_frontend/ets2panda/ir/statements/
H
A
D
variableDeclaration.h
43
const ArenaVector<VariableDeclarator *> &
Declarators
() const
in Declarators()
function in ark::es2panda::ir::VariableDeclaration
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H
A
D
objectLiteralLowering.cpp
85
!firstStatement->AsVariableDeclaration()->
Declarators
().front()->Init()->IsETSNewClassInstanceExpression()) {
in AllowRequiredTypeInstantiation()
89
const auto *const varDecl = firstStatement->AsVariableDeclaration()->
Declarators
().front()->Init();
in AllowRequiredTypeInstantiation()
H
A
D
optionalLowering.cpp
71
stmts[0]->AsVariableDeclaration()->
Declarators
()[0]->SetInit(getSource(expr));
in LowerOptionalExpr()
H
A
D
objectIterator.cpp
111
loopVariableName = declaration->
Declarators
().at(0U)->Id()->AsIdentifier()->Name().Mutf8();
in ProcessObjectIterator()
/arkcompiler/ets_frontend/ets2panda/evaluate/debugInfoDeserialization/
H
A
D
debugInfoDeserializer.cpp
253
ASSERT(varDecl->AsVariableDeclaration()->
Declarators
().size() == 1);
in CreateLocalVarDecl()
254
return varDecl->AsVariableDeclaration()->
Declarators
()[0]->Id()->Variable();
in CreateLocalVarDecl()
/arkcompiler/ets_frontend/es2panda/compiler/base/
H
A
D
lreference.cpp
171
ASSERT(node->AsVariableDeclaration()->
Declarators
().size() == 1);
in CreateLRef()
172
return LReference::CreateLRef(pg, node->AsVariableDeclaration()->
Declarators
()[0]->Id(), true);
in CreateLRef()
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/topLevelStmts/
H
A
D
globalDeclTransformer.cpp
66
for (auto declarator : varDecl->
Declarators
()) {
in VisitVariableDeclaration()
H
A
D
importExportDecls.cpp
172
for (const auto &decl : varDecl->
Declarators
()) {
in VisitVariableDeclaration()
/arkcompiler/ets_frontend/ets2panda/compiler/base/
H
A
D
lreference.cpp
53
ASSERT(node->AsVariableDeclaration()->
Declarators
().size() == 1);
in CreateBase()
54
return CreateBase(cg, node->AsVariableDeclaration()->
Declarators
()[0]->Id(), true);
in CreateBase()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
assignAnalyzer.cpp
610
for (auto *var : varDef->
Declarators
()) {
in AnalyzeVarDef()
755
for (auto *var : forOfStmt->Left()->AsVariableDeclaration()->
Declarators
()) {
in AnalyzeForOfLoop()
861
for (auto *var : stmt->AsVariableDeclaration()->
Declarators
()) {
in AnalyzeSwitch()
H
A
D
aliveAnalyzer.cpp
265
for (auto *it : varDef->
Declarators
()) {
in AnalyzeVarDef()
/arkcompiler/ets_frontend/ets2panda/test/unit/public/
H
A
D
ast_verifier_short_test.cpp
304
->
Declarators
()[0]
in TEST_F()
/arkcompiler/ets_frontend/ets2panda/parser/
H
A
D
statementParser.cpp
689
const ir::VariableDeclarator *varDecl = initNode->AsVariableDeclaration()->
Declarators
().front();
in ParseForInOf()
929
} else if (initNode->AsVariableDeclaration()->
Declarators
().size() > 1 && lexer_->GetToken().IsForInOf()) {
in ParseForStatement()
930
ThrowSyntaxError(INVALID_LEFT_HAND_IN_FOR_OF, initNode->AsVariableDeclaration()->
Declarators
()[1]->Start());
in ParseForStatement()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H
A
D
transformer.cpp
1431
variableDeclarations[--pos]->AsVariableDeclaration()->
Declarators
().front()->Id(),
in CreateParamDecorators()
1466
variableDeclarations[i]->AsVariableDeclaration()->
Declarators
().front()->Id(),
in CreatePropertyDecorators()
1512
variableDeclarations[--pos]->AsVariableDeclaration()->
Declarators
().front()->Id(),
in CreateMethodDecorators()
1617
variableDeclarations[--pos]->AsVariableDeclaration()->
Declarators
().front()->Id(),
in CreateClassDecorators()
1767
auto declarators = decl->AsVariableDeclaration()->
Declarators
();
in VisitExportNamedVariable()
/arkcompiler/ets_frontend/ets2panda/checker/
H
A
D
ETSAnalyzer.cpp
2088
? st->Left()->AsVariableDeclaration()->
Declarators
().front()->Id()
in ValidateAndProcessIteratorType()
2104
for (auto &declarator : st->Left()->AsVariableDeclaration()->
Declarators
()) {
in ValidateAndProcessIteratorType()
2499
for (auto *it : st->
Declarators
()) {
in Check()
H
A
D
ETSAnalyzerHelpers.cpp
539
if (auto const &declarators = left->AsVariableDeclaration()->
Declarators
(); !declarators.empty()) {
in GetIteratorType()
H
A
D
TSAnalyzer.cpp
1393
for (auto *it : st->
Declarators
()) {
in Check()
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
statementParser.cpp
1346
const ir::VariableDeclarator *varDecl = initNode->AsVariableDeclaration()->
Declarators
().front();
in ParseForInOf()
1582
canBeForInOf = initNode->AsVariableDeclaration()->
Declarators
().size() == 1;
in ParseForStatement()
2420
auto declarators = declNode->AsVariableDeclaration()->
Declarators
();
in AddExportLocalEntryItem()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H
A
D
JSCompiler.cpp
1697
for (const auto *it : st->
Declarators
()) {
in Compile()
H
A
D
ETSCompiler.cpp
1700
for (const auto *it : st->
Declarators
()) {
in Compile()
Completed in 48 milliseconds