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:typeArgTypes
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
typeRelationContext.cpp
78
ArenaVector<Type *>
typeArgTypes
(checker_->Allocator()->Adapter());
in InstantiateType()
79
typeArgTypes
.reserve(type->TypeArguments().size());
in InstantiateType()
98
typeArgTypes
.push_back(paramType);
in InstantiateType()
102
while (
typeArgTypes
.size() < type->TypeArguments().size()) {
in InstantiateType()
103
auto *defaultType = type->TypeArguments().at(
typeArgTypes
.size())->AsETSTypeParameter()->GetDefaultType();
in InstantiateType()
104
typeArgTypes
.push_back(defaultType);
in InstantiateType()
108
InstantiateType(type, std::move(
typeArgTypes
), pos);
in InstantiateType()
150
void InstantiationContext::InstantiateType(ETSObjectType *type, ArenaVector<Type *> &&
typeArgTypes
,
in InstantiateType()
argument
153
util::StringView hash = checker_->GetHashFromTypeArguments(
typeArgTypes
);
in InstantiateType()
156
while (
typeArgTypes
in InstantiateType()
[all...]
H
A
D
typeRelationContext.h
199
void InstantiateType(ETSObjectType *type, ArenaVector<Type *> &&
typeArgTypes
, const lexer::SourcePosition &pos);
200
util::StringView GetHashFromTypeArguments(ArenaVector<Type *> &
typeArgTypes
);
H
A
D
helpers.cpp
2088
util::StringView ETSChecker::GetHashFromTypeArguments(const ArenaVector<Type *> &
typeArgTypes
)
in GetHashFromTypeArguments()
argument
2092
for (auto *it :
typeArgTypes
) {
in GetHashFromTypeArguments()
/arkcompiler/ets_frontend/ets2panda/checker/
H
A
D
ETSAnalyzer.cpp
295
ArenaVector<checker::Type *>
typeArgTypes
(checker->Allocator()->Adapter());
in Check()
296
typeArgTypes
.push_back(exprType); // NOTE: Box it if it's a primitive type
in Check()
298
checker::InstantiationContext ctx(checker, checker->GlobalBuiltinTypeType(), std::move(
typeArgTypes
),
in Check()
H
A
D
ETSchecker.h
607
util::StringView GetHashFromTypeArguments(const ArenaVector<Type *> &
typeArgTypes
);
Completed in 11 milliseconds