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:importName
(Results
1 - 3
of
3
) sorted by relevance
/drivers/hdf_core/framework/tools/hdi-gen/preprocessor/
H
A
D
preprocessor.cpp
220
for (const auto &
importName
: ownerFileDetail.imports_) {
in LoadOtherIdlFiles()
221
if (allFileDetails.find(
importName
) != allFileDetails.end()) {
in LoadOtherIdlFiles()
225
std::string otherFilePath = Options::GetInstance().GetImportFilePath(
importName
);
in LoadOtherIdlFiles()
227
Logger::E(TAG, "
importName
:%s, is failed",
importName
.c_str());
in LoadOtherIdlFiles()
/drivers/hdf_core/framework/tools/hdi-gen/parser/
H
A
D
parser.cpp
224
std::string
importName
= token.value;
in ParseImportInfo()
local
225
if (
importName
.empty()) {
in ParseImportInfo()
230
if (!CheckImport(
importName
)) {
in ParseImportInfo()
235
auto iter = allAsts_.find(
importName
);
in ParseImportInfo()
238
LogError(token, StringHelper::Format("can not find idl file from import name '%s'",
importName
.c_str()));
in ParseImportInfo()
248
LogError(token, StringHelper::Format("multiple import of '%s'",
importName
.c_str()));
in ParseImportInfo()
1751
bool Parser::CheckImport(const std::string &
importName
)
in CheckImport()
argument
1753
if (!std::regex_match(
importName
.c_str(), RE_IMPORT)) {
in CheckImport()
1754
LogError(StringHelper::Format("invalid impirt name '%s'",
importName
.c_str()));
in CheckImport()
1758
std::string idlFilePath = Options::GetInstance().GetImportFilePath(
importName
);
in CheckImport()
[all...]
H
A
D
parser.h
190
bool CheckImport(const std::string &
importName
);
Completed in 6 milliseconds