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:unionType
(Results
1 - 4
of
4
) sorted by relevance
/drivers/hdf_core/framework/tools/hdi-gen/parser/
H
A
D
parser.h
144
void ParseUnionMember(const AutoPtr<ASTUnionType> &
unionType
);
147
const AutoPtr<ASTUnionType> &
unionType
, const AutoPtr<ASTType> &type, const std::string &name) const;
H
A
D
parser.cpp
1226
AutoPtr<ASTUnionType>
unionType
= new ASTUnionType;
in ParseUnionDeclaration()
local
1227
unionType
->SetAttribute(ParseUserDefTypeAttr(attrs));
in ParseUnionDeclaration()
1234
unionType
->SetName(token.value);
in ParseUnionDeclaration()
1245
ParseUnionMember(
unionType
);
in ParseUnionDeclaration()
1261
unionType
->SetNamespace(ast_->ParseNamespace(ast_->GetFullName()));
in ParseUnionDeclaration()
1262
ast_->AddTypeDefinition(
unionType
.Get());
in ParseUnionDeclaration()
1265
void Parser::ParseUnionMember(const AutoPtr<ASTUnionType> &
unionType
)
in ParseUnionMember()
argument
1286
if (!AddUnionMember(
unionType
, memberType, memberName)) {
in ParseUnionMember()
1306
const AutoPtr<ASTUnionType> &
unionType
, const AutoPtr<ASTType> &type, const std::string &name) const
in AddUnionMember()
1308
for (size_t i = 0; i <
unionType
in AddUnionMember()
1305
AddUnionMember( const AutoPtr<ASTUnionType> &
unionType
, const AutoPtr<ASTType> &type, const std::string &name) const
AddUnionMember()
argument
[all...]
/drivers/hdf_core/framework/tools/hdi-gen/codegen/
H
A
D
cpp_custom_types_code_emitter.cpp
173
AutoPtr<ASTUnionType>
unionType
= dynamic_cast<ASTUnionType *>(type.Get());
in EmitCustomTypeDecl()
local
174
sb.Append(
unionType
->EmitCppTypeDecl()).Append("\n");
in EmitCustomTypeDecl()
H
A
D
c_custom_types_code_emitter.cpp
161
AutoPtr<ASTUnionType>
unionType
= dynamic_cast<ASTUnionType *>(type.Get());
in EmitCustomTypeDecl()
local
162
sb.Append(
unionType
->EmitCTypeDecl()).Append("\n");
in EmitCustomTypeDecl()
Completed in 5 milliseconds