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:PeekChar
(Results
1 - 5
of
5
) sorted by relevance
/drivers/hdf_core/framework/tools/hdi-gen/lexer/
H
A
D
lexer.cpp
182
char c = file_->
PeekChar
();
in ReadToken()
237
c = file_->
PeekChar
();
in ReadId()
257
char c = file_->
PeekChar
();
in ReadNum()
260
c = file_->
PeekChar
();
in ReadNum()
289
c = file_->
PeekChar
();
in ReadBinaryNum()
310
char c = file_->
PeekChar
();
in ReadOctNum()
334
c = file_->
PeekChar
();
in ReadHexNum()
355
c = file_->
PeekChar
();
in ReadDecNum()
371
char c = file_->
PeekChar
();
in ReadNumSuffix()
384
char next = file_->
PeekChar
();
in ReadShiftLeftOp()
[all...]
/drivers/hdf_core/framework/tools/hc-gen/src/
H
A
D
lexer.cpp
87
if (!
PeekChar
(c, true)) {
in Lex()
142
bool Lexer::
PeekChar
(char &c, bool skipSpace)
in PeekChar()
function in Lexer
279
while (
PeekChar
(c, false) && (IsNum(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))) {
in LexHexAndBinaryNum()
287
while (
PeekChar
(c, false) && (c == '0' || c == '1')) {
in LexHexAndBinaryNum()
307
if (!
PeekChar
(c, true)) {
in LexFromNumber()
312
while (
PeekChar
(c) && IsNum(c)) {
in LexFromNumber()
325
while (
PeekChar
(c, true) && IsNum(c)) {
in LexFromNumber()
348
while (
PeekChar
(c, false) && !IsSpace(c)) {
in LexFromLiteral()
H
A
D
lexer.h
70
bool
PeekChar
(char &c, bool skipSpace = true);
/drivers/hdf_core/framework/tools/hdi-gen/util/
H
A
D
file.cpp
80
PeekChar
();
in OpenByRead()
85
char c =
PeekChar
();
in GetChar()
100
char File::
PeekChar
()
in PeekChar()
function in OHOS::HDI::File
H
A
D
file.h
38
char
PeekChar
();
Completed in 3 milliseconds