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:skipComment
(Results
1 - 4
of
4
) sorted by relevance
/foundation/ability/idl_tool/parser/
H
A
D
lexer.h
37
Token GetToken(bool
skipComment
= true);
39
Token PeekToken(bool
skipComment
= true);
41
bool ReadTokenPeek(bool
skipComment
, char letter);
82
Token ReadToken(bool
skipComment
);
H
A
D
lexer.cpp
69
Token Lexer::GetToken(bool
skipComment
)
in GetToken()
argument
72
currentToken_ = ReadToken(
skipComment
);
in GetToken()
78
Token Lexer::PeekToken(bool
skipComment
)
in PeekToken()
argument
81
currentToken_ = ReadToken(
skipComment
);
in PeekToken()
87
Token Lexer::ReadToken(bool
skipComment
)
in ReadToken()
argument
113
if (ReadTokenPeek(
skipComment
, c)) {
in ReadToken()
127
bool Lexer::ReadTokenPeek(bool
skipComment
, char letter)
in ReadTokenPeek()
argument
131
if (!
skipComment
) {
in ReadTokenPeek()
137
if (!
skipComment
) {
in ReadTokenPeek()
/foundation/ability/idl_tool/idl_tool_2/lexer/
H
A
D
lexer.h
47
Token PeekToken(bool
skipComment
= true);
49
Token GetToken(bool
skipComment
= true);
71
void ReadToken(Token &token, bool
skipComment
= true);
H
A
D
lexer.cpp
108
Token Lexer::PeekToken(bool
skipComment
)
in PeekToken()
argument
111
ReadToken(curToken_,
skipComment
);
in PeekToken()
117
Token Lexer::GetToken(bool
skipComment
)
in GetToken()
argument
120
ReadToken(curToken_,
skipComment
);
in GetToken()
223
void Lexer::ReadToken(Token &token, bool
skipComment
)
in ReadToken()
argument
256
if ((token.kind == TokenType::COMMENT_BLOCK || token.kind == TokenType::COMMENT_LINE) &&
skipComment
) {
in ReadToken()
Completed in 2 milliseconds