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:ONEWAY
(Results
1 - 13
of
13
) sorted by relevance
/foundation/ability/idl_tool/parser/
H
A
D
token.h
38
ONEWAY
,
member in OHOS::Idl::Token
H
A
D
lexer.cpp
51
keywords_[String("oneway")] = Token::
ONEWAY
;
in InitializeKeywords()
322
case Token::
ONEWAY
:
in DumpTokenSecond()
H
A
D
parser.cpp
110
if (token != Token::
ONEWAY
) {
in ParseInterface()
242
if (token != Token::
ONEWAY
&& token != Token::CACHEABLE) {
in ParseMethodProperties()
248
if (token == Token::
ONEWAY
&& isParseOneway == false) {
in ParseMethodProperties()
/foundation/ability/idl_tool/idl_tool_2/parser/
H
A
D
intf_type_check.cpp
82
if ((attr != ASTAttr::NONE) && (attr != ASTAttr::
ONEWAY
)) {
in CheckIntfSaAst()
125
bool onewayInterface = (interfaceType->GetAttribute()->GetValue() == ASTAttr::
ONEWAY
);
in CheckIntfSaAstMethods()
129
if (((method->GetAttribute()->GetValue()) & (~(ASTAttr::
ONEWAY
| ASTAttr::CACHEABLE))) != 0) {
in CheckIntfSaAstMethods()
135
!method->GetAttribute()->HasValue(ASTAttr::
ONEWAY
)) {
in CheckIntfSaAstMethods()
145
if ((onewayInterface || method->GetAttribute()->GetValue() == ASTAttr::
ONEWAY
) &&
in CheckIntfSaAstMethods()
H
A
D
parser.cpp
477
case TokenType::
ONEWAY
: {
in ParseAttrUnit()
585
case TokenType::
ONEWAY
:
in ParseInfAttrInfo()
586
infAttr->SetValue(ASTAttr::
ONEWAY
);
in ParseInfAttrInfo()
759
case TokenType::
ONEWAY
:
in ParseMethodAttr()
760
methodAttr->SetValue(ASTAttr::
ONEWAY
);
in ParseMethodAttr()
817
method->GetAttribute()->SetValue(ASTAttr::
ONEWAY
);
in CheckMethodAttr()
/foundation/ability/idl_tool/idl_tool_2/ast/
H
A
D
ast_attribute.h
30
static constexpr Attribute
ONEWAY
= 0x1U << 3;
member in OHOS::Idl::ASTAttr
H
A
D
ast_attribute.cpp
36
if (value_ & ASTAttr::
ONEWAY
) {
in ToString()
H
A
D
ast_interface_type.h
79
return attr_->HasValue(ASTAttr::
ONEWAY
);
in IsOneWay()
H
A
D
ast_method.h
65
return attr_->HasValue(ASTAttr::
ONEWAY
);
in IsOneWay()
/foundation/ability/idl_tool/idl_tool_2/lexer/
H
A
D
token.h
58
ONEWAY
, // "oneway"
member in OHOS::Idl::TokenType
H
A
D
lexer.cpp
53
{"oneway", TokenType::
ONEWAY
},
/foundation/ability/idl_tool/idl_tool_2/metadata/
H
A
D
metadata_reader.cpp
115
infAttr->SetValue(ASTAttr::
ONEWAY
);
in ReadMetaInterface()
137
methodAttr->SetValue(ASTAttr::
ONEWAY
);
in ReadMetaMethod()
H
A
D
metadata_builder.cpp
337
mi->properties_ = interface->GetAttribute()->GetValue() == ASTAttr::
ONEWAY
? INTERFACE_PROPERTY_ONEWAY : 0;
in WriteMetaInterface()
362
mm->properties_ = method->GetAttribute()->GetValue() == ASTAttr::
ONEWAY
? METHOD_PROPERTY_ONEWAY : 0;
in WriteMetaMethod()
Completed in 9 milliseconds