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:importAst
(Results
1 - 5
of
5
) sorted by relevance
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H
A
D
ast.cpp
240
bool AST::AddImport(const AutoPtr<AST> &
importAst
)
in AddImport()
argument
242
if (imports_.find(
importAst
->GetFullName()) != imports_.end()) {
in AddImport()
246
imports_[
importAst
->GetFullName()] =
importAst
;
in AddImport()
H
A
D
ast.h
157
bool AddImport(const AutoPtr<AST> &
importAst
);
/drivers/hdf_core/framework/tools/hdi-gen/codegen/
H
A
D
cpp_code_emitter.cpp
60
AutoPtr<AST>
importAst
= importPair.second;
in GetImportInclusions()
local
61
std::string fileName = (
importAst
->GetASTFileType() == ASTFileType::AST_SEQUENCEABLE) ?
in GetImportInclusions()
62
PackageToFilePath(
importAst
->GetName()) :
in GetImportInclusions()
63
PackageToFilePath(
importAst
->GetFullName());
in GetImportInclusions()
H
A
D
c_code_emitter.cpp
28
AutoPtr<AST>
importAst
= importPair.second;
in GetImportInclusions()
local
29
std::string fileName = PackageToFilePath(
importAst
->GetFullName());
in GetImportInclusions()
/drivers/hdf_core/framework/tools/hdi-gen/parser/
H
A
D
parser.cpp
236
AutoPtr<AST>
importAst
= (iter != allAsts_.end()) ? iter->second : nullptr;
in ParseImportInfo()
local
237
if (
importAst
== nullptr) {
in ParseImportInfo()
242
if (!CheckImportsVersion(
importAst
)) {
in ParseImportInfo()
247
if (!ast_->AddImport(
importAst
)) {
in ParseImportInfo()
1987
AutoPtr<AST>
importAst
= importPair.second;
in MergeImport()
local
1988
targetAst->AddImport(
importAst
);
in MergeImport()
Completed in 9 milliseconds