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:FindType
(Results
1 - 8
of
8
) sorted by relevance
/foundation/ability/idl_tool/parser/
H
A
D
parser.cpp
541
type = module_->
FindType
(lexer_.DumpToken());
in ParseType()
552
type = module_->
FindType
(lexer_.GetIdentifier());
in ParseType()
581
type = module_->
FindType
(arrayType->ToString());
in ParseType()
618
AutoPtr<ASTType> ret = module_->
FindType
(list->ToString());
in ParseList()
668
AutoPtr<ASTType> ret = module_->
FindType
(map->ToString());
in ParseMap()
/foundation/ability/idl_tool/test/unittest/ast_module_test/
H
A
D
ast_module_test.cpp
147
AutoPtr<ASTType> result = module->
FindType
(typeName);
in HWTEST_F()
/foundation/ability/idl_tool/ast/
H
A
D
ast_module.h
97
AutoPtr<ASTType>
FindType
(const String& typeName);
H
A
D
ast_module.cpp
180
AutoPtr<ASTType> ASTModule::
FindType
(const String& typeName)
in FindType()
function in OHOS::Idl::ASTModule
/foundation/ability/idl_tool/idl_tool_2/ast/
H
A
D
ast.cpp
227
AutoPtr<ASTType> AST::
FindType
(const std::string &typeName, bool lookImports)
in FindType()
function in OHOS::Idl::AST
251
type = importPair.second->
FindType
(typeName, false);
in FindType()
H
A
D
ast.h
154
AutoPtr<ASTType>
FindType
(const std::string &typeName, bool lookImports = true);
/foundation/ability/idl_tool/idl_tool_2/parser/
H
A
D
parser.cpp
728
if (token.kind == TokenType::ID && ast_->
FindType
(token.value) == nullptr) {
in ParseMethodReturnType()
783
AutoPtr<ASTType> type = ast_->
FindType
("unsigned int");
in CreateGetVersionMethod()
1041
type = ast_->
FindType
(token.value);
in ParseBasicType()
1059
type = ast_->
FindType
(namePrefix + " " + token.value);
in ParseUnsignedType()
1087
AutoPtr<ASTType> retType = ast_->
FindType
(arrayType->ToString(), false);
in ParseArrayType()
1121
AutoPtr<ASTType> retType = ast_->
FindType
(listType->ToString(), false);
in ParseListType()
1171
AutoPtr<ASTType> retType = ast_->
FindType
(mapType->ToString(), false);
in ParseMapType()
1228
return ast_->
FindType
(token.value);
in ParseUserDefType()
1237
AutoPtr<ASTType> type = ast_->
FindType
(token.value);
in ParseUserDefType()
1290
return ast_->
FindType
("in
in ParseEnumBaseType()
[all...]
/foundation/ability/idl_tool/idl_tool_2/metadata/
H
A
D
metadata_reader.cpp
171
AutoPtr<ASTType> astType = ast_->
FindType
(typeName);
in ReadMetaType()
Completed in 7 milliseconds