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:NAMESPACE
(Results
1 - 11
of
11
) sorted by relevance
/arkcompiler/ets_frontend/es2panda/binder/
H
A
D
variableFlags.h
34
_(
NAMESPACE
, NamespaceDecl) \
95
_(
NAMESPACE
, NamespaceVariable) \
132
NAMESPACE
= 1 << 17,
member in panda::es2panda::binder::VariableFlags
176
NAMESPACE
= 0,
member in panda::es2panda::binder::TSBindingType
H
A
D
scope.cpp
598
case DeclType::
NAMESPACE
: {
in AddBinding()
599
return AddTSBinding<NamespaceVariable>(allocator, newDecl, VariableFlags::
NAMESPACE
);
in AddBinding()
716
case DeclType::
NAMESPACE
: {
in AddBinding()
717
return AddTSBinding<NamespaceVariable>(allocator, newDecl, VariableFlags::
NAMESPACE
);
in AddBinding()
796
case DeclType::
NAMESPACE
: {
in AddBinding()
797
return AddTSBinding<NamespaceVariable>(allocator, newDecl, VariableFlags::
NAMESPACE
);
in AddBinding()
H
A
D
variable.h
280
return VariableType::
NAMESPACE
;
H
A
D
declaration.h
270
return DeclType::
NAMESPACE
;
H
A
D
binder.cpp
1060
fn(currentScope->FindLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(name));
in FindIdentifierTSVariables()
1064
fn(currentScope->AsTSModuleScope()->FindExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name));
in FindIdentifierTSVariables()
H
A
D
scope.h
1317
case VariableFlags::
NAMESPACE
: {
in AddTSBinding()
1318
return tsBindings_.AddTSVariable<TSBindingType::
NAMESPACE
>(
in AddTSBinding()
/arkcompiler/ets_runtime/ecmascript/ts_types/
H
A
D
global_ts_type_ref.h
40
NAMESPACE
,
member in panda::ecmascript::TSTypeKind
/arkcompiler/ets_frontend/ets2panda/varbinder/
H
A
D
variableFlags.h
37
_(
NAMESPACE
, NameSpaceDecl) \
H
A
D
declaration.h
263
return DeclType::
NAMESPACE
;
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H
A
D
transformer.cpp
1696
binder::Variable *res = exportTSBindings->FindExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in FindTSModuleVariable()
1719
auto *res = FindTSVariable<binder::TSBindingType::
NAMESPACE
>(currentScope, name);
in FindTSModuleVariable()
2342
const std::vector<binder::TSBindingType> types = {binder::TSBindingType::
NAMESPACE
,
in FindFrontIdentifierTSVariables()
2405
case binder::TSBindingType::
NAMESPACE
: {
in FindLocalTSVariables()
2406
v = scope->FindLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in FindLocalTSVariables()
2441
case binder::TSBindingType::
NAMESPACE
: {
in FindExportTSVariables()
2442
v = scope->AsTSModuleScope()->FindExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in FindExportTSVariables()
2501
case binder::VariableFlags::
NAMESPACE
: {
in VerifyMemberExpressionDeque()
2506
binder::Variable *v = exportTSBindings->FindExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in VerifyMemberExpressionDeque()
2797
var = scope->FindLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(nam
in IsValueReference()
[all...]
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
statementParser.cpp
415
binder::Variable *res = parentScope->FindLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in ParseTsModuleOrNamespaceDelaration()
417
res = parentScope->AsTSModuleScope()->FindExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in ParseTsModuleOrNamespaceDelaration()
419
parentScope->AddLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(name, res);
in ParseTsModuleOrNamespaceDelaration()
424
res = parentScope->FindLocalTSVariable<binder::TSBindingType::
NAMESPACE
>(name);
in ParseTsModuleOrNamespaceDelaration()
426
parentScope->AsTSModuleScope()->AddExportTSVariable<binder::TSBindingType::
NAMESPACE
>(name, res);
in ParseTsModuleOrNamespaceDelaration()
Completed in 19 milliseconds