Home
last modified time | relevance | path

Searched refs:GetChar (Results 1 – 5 of 5) sorted by relevance

/drivers/hdf_core/framework/tools/hdi-gen/lexer/
Dlexer.cpp115 char c = file_->GetChar(); in SkipCurrentLine()
117 file_->GetChar(); in SkipCurrentLine()
128 int c = file_->GetChar(); in SkipCurrentLine()
134 file_->GetChar(); in SkipCurrentLine()
146 int c = file_->GetChar(); in Skip()
184 file_->GetChar(); in ReadToken()
233 char c = file_->GetChar(); in ReadId()
239 c = file_->GetChar(); in ReadId()
244 file_->GetChar(); in ReadId()
259 file_->GetChar(); in ReadNum()
[all …]
/drivers/hdf_core/framework/tools/hc-gen/src/
Dlexer.cpp125 bool Lexer::GetChar(char &c, bool skipSpace) in GetChar() function in Lexer
189 if (!GetChar(c)) { in ProcessComment()
195 while (c != '\n' && GetChar(c)) {} in ProcessComment()
201 while (GetChar(c)) { in ProcessComment()
202 if (c == '*' && GetChar(c) && c == '/') { in ProcessComment()
250 GetChar(c, false); // skip first '"' in LexFromString()
252 while (GetChar(c, false) && c != '"') { in LexFromString()
297 GetChar(c, false); in LexFromNumber()
379 (void)GetChar(c, false); in ConsumeChar()
Dlexer.h46 bool GetChar(char &c, bool skipSpace = true);
/drivers/hdf_core/framework/tools/hdi-gen/util/
Dfile.h36 char GetChar();
Dfile.cpp83 char File::GetChar() in GetChar() function in OHOS::HDI::File
337 fileStr.Append(GetChar()); in CreateParentDir()