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:astNode
(Results
1 - 22
of
22
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/parser/
H
A
D
statementTSParser.cpp
352
ir::AstNode *
astNode
= ParseImportSpecifiers(&specifiers);
in ParseImportDeclaration()
local
353
if (
astNode
!= nullptr) {
in ParseImportDeclaration()
354
ASSERT(
astNode
->IsTSImportEqualsDeclaration());
in ParseImportDeclaration()
355
astNode
->SetRange({startLoc, Lexer()->GetToken().End()});
in ParseImportDeclaration()
356
ConsumeSemicolon(
astNode
->AsTSImportEqualsDeclaration());
in ParseImportDeclaration()
357
return
astNode
->AsTSImportEqualsDeclaration();
in ParseImportDeclaration()
H
A
D
ETSparser.cpp
30
#include "ir/
astNode
.h"
1598
ir::AstNode *
astNode
= ParseImportSpecifiers(&specifiers);
in ParseImportDeclaration()
local
1599
if (
astNode
!= nullptr) {
in ParseImportDeclaration()
1600
ASSERT(
astNode
->IsTSImportEqualsDeclaration());
in ParseImportDeclaration()
1601
astNode
->SetRange({startLoc, Lexer()->GetToken().End()});
in ParseImportDeclaration()
1602
ConsumeSemicolon(
astNode
->AsTSImportEqualsDeclaration());
in ParseImportDeclaration()
1603
return
astNode
->AsTSImportEqualsDeclaration();
in ParseImportDeclaration()
H
A
D
statementParser.cpp
19
#include "ir/
astNode
.h"
1818
ir::AstNode *
astNode
= ParseImportDefaultSpecifier(specifiers);
in ParseImportSpecifiers()
local
1820
if (
astNode
!= nullptr) {
in ParseImportSpecifiers()
1821
return
astNode
;
in ParseImportSpecifiers()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
H
A
D
emitter.cpp
181
uint32_t FunctionEmitter::UpdateForReturnIns(const ir::AstNode *
astNode
, panda::pandasm::Ins *pandaIns)
in UpdateForReturnIns()
argument
190
while (
astNode
!= nullptr && !
astNode
->IsScriptFunction()) {
in UpdateForReturnIns()
191
if (
astNode
->IsBlockStatement() &&
in UpdateForReturnIns()
192
astNode
->AsBlockStatement()->Scope() &&
in UpdateForReturnIns()
193
astNode
->AsBlockStatement()->Scope()->Node() &&
in UpdateForReturnIns()
194
astNode
->AsBlockStatement()->Scope()->Node()->IsScriptFunction()) {
in UpdateForReturnIns()
195
astNode
=
astNode
->AsBlockStatement()->Scope()->Node();
in UpdateForReturnIns()
198
astNode
in UpdateForReturnIns()
211
const ir::AstNode *
astNode
= ins->Node();
GenInstructionDebugInfo()
local
[all...]
H
A
D
emitter.h
21
#include <ir/
astNode
.h>
90
uint32_t UpdateForReturnIns(const ir::AstNode *
astNode
, panda::pandasm::Ins *pandaIns);
/arkcompiler/ets_frontend/es2panda/ir/
H
A
D
statement.h
19
#include <ir/
astNode
.h>
H
A
D
expression.h
19
#include <ir/
astNode
.h>
H
A
D
astDump.h
19
#include <ir/
astNode
.h>
H
A
D
astDump.cpp
18
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/ets2panda/ir/
H
A
D
srcDump.h
19
#include <ir/
astNode
.h>
H
A
D
srcDump.cpp
18
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/es2panda/ir/module/
H
A
D
assertClause.h
19
#include <ir/
astNode
.h>
H
A
D
assertEntry.h
19
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H
A
D
emitter.cpp
201
const ir::AstNode *
astNode
= ins->Node();
in GenInstructionDebugInfo()
local
203
ASSERT(
astNode
!= nullptr);
in GenInstructionDebugInfo()
205
if (
astNode
== FIRST_NODE_OF_FUNCTION) {
in GenInstructionDebugInfo()
206
astNode
= cg_->Debuginfo().FirstStatement();
in GenInstructionDebugInfo()
207
if (
astNode
== nullptr) {
in GenInstructionDebugInfo()
212
auto nodeRange =
astNode
->Range();
in GenInstructionDebugInfo()
/arkcompiler/ets_frontend/es2panda/compiler/core/
H
A
D
compilerContext.h
23
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/es2panda/util/
H
A
D
concurrent.cpp
21
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/es2panda/ir/base/
H
A
D
scriptFunction.h
19
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
statementParser.cpp
18
#include <ir/
astNode
.h>
2246
ThrowSyntaxError("Unexpected
astNode
type", it->Start());
in AddImportEntryItem()
3178
ir::AstNode *
astNode
= ParseImportDefaultSpecifier(specifiers, isType);
in ParseImportSpecifiers()
local
3179
if (
astNode
!= nullptr) {
in ParseImportSpecifiers()
3180
return
astNode
;
in ParseImportSpecifiers()
3260
ir::AstNode *
astNode
= ParseImportSpecifiers(&specifiers, isType, isLazy);
in ParseImportDeclaration()
local
3261
if (
astNode
!= nullptr) {
in ParseImportDeclaration()
3262
ASSERT(
astNode
->IsTSImportEqualsDeclaration());
in ParseImportDeclaration()
3263
astNode
->SetRange({startLoc, lexer_->GetToken().End()});
in ParseImportDeclaration()
3264
ConsumeSemicolon(
astNode
in ParseImportDeclaration()
[all...]
H
A
D
parserImpl.h
21
#include <ir/
astNode
.h>
H
A
D
expressionParser.cpp
16
#include <ir/
astNode
.h>
H
A
D
parserImpl.cpp
23
#include <ir/
astNode
.h>
/arkcompiler/ets_frontend/es2panda/binder/
H
A
D
scope.cpp
23
#include <ir/
astNode
.h>
Completed in 29 milliseconds