Searched defs:__CurrentChar (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DCodeFragmentCollector.py104 if self.__CurrentChar() in (T_CHAR_NULL, T_CHAR_CR, T_CHAR_LF, T_CHAR_SPACE, T_CHAR_TAB):
105 self.__SkippedChars += str(self.__CurrentChar())
190 ## __CurrentChar() method
197 def __CurrentChar(self): member in class:CodeFragmentCollector
297 if not InComment and self.__CurrentChar() == T_CHAR_DOUBLE_QUOTE:
300 if not InComment and self.__CurrentChar() == T_CHAR_SINGLE_QUOTE:
303 if self.__CurrentChar() == T_CHAR_LF:
339 elif InComment and not DoubleSlashComment and not HashComment and self.__CurrentChar() == T_CHAR_STAR and self.__NextChar() == T_CHAR_SLASH:
340 CommentObj.Content += self.__CurrentChar()
343 CommentObj.Content += self.__CurrentChar()
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DCodeFragmentCollector.py102 if self.__CurrentChar() in (T_CHAR_NULL, T_CHAR_CR, T_CHAR_LF, T_CHAR_SPACE, T_CHAR_TAB):
103 self.__SkippedChars += str(self.__CurrentChar())
185 ## __CurrentChar() method
192 def __CurrentChar(self): member in class:CodeFragmentCollector
287 if not InComment and self.__CurrentChar() == T_CHAR_DOUBLE_QUOTE:
290 if not InComment and self.__CurrentChar() == T_CHAR_SINGLE_QUOTE:
293 if self.__CurrentChar() == T_CHAR_LF:
324 elif InComment and not DoubleSlashComment and not HashComment and self.__CurrentChar() == T_CHAR_STAR and self.__NextChar() == T_CHAR_SLASH:
335 if self.__CurrentChar() == T_CHAR_SLASH and self.__NextChar() == T_CHAR_SLASH:
343 PPDirectiveObj.Content += self.__CurrentChar()
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DFdfParserLite.py205 if self.__CurrentChar() in (T_CHAR_NULL, T_CHAR_CR, T_CHAR_LF, T_CHAR_SPACE, T_CHAR_TAB):
206 self.__SkippedChars += str(self.__CurrentChar())
290 ## __CurrentChar() method
297 def __CurrentChar(self): member in class:FdfParser
423 if self.__CurrentChar() == T_CHAR_DOUBLE_QUOTE and not InComment:
426 if self.__CurrentChar() == T_CHAR_LF:
436 elif InComment and not DoubleSlashComment and not HashComment and self.__CurrentChar() == T_CHAR_STAR and self.__NextChar() == T_CHAR_SLASH:
447 elif self.__CurrentChar() == T_CHAR_SLASH and self.__NextChar() == T_CHAR_SLASH and not self.__EndOfLine():
451 elif self.__CurrentChar() == T_CHAR_HASH and not self.__EndOfLine() and not InString:
455 elif self.__CurrentChar()
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFdfParser.py257 if self.__CurrentChar() in (T_CHAR_NULL, T_CHAR_CR, T_CHAR_LF, T_CHAR_SPACE, T_CHAR_TAB):
258 self.__SkippedChars += str(self.__CurrentChar())
342 ## __CurrentChar() method
349 def __CurrentChar(self): member in class:FdfParser
511 if self.__CurrentChar() == T_CHAR_DOUBLE_QUOTE and not InComment:
514 if self.__CurrentChar() == T_CHAR_LF:
524 elif InComment and not DoubleSlashComment and not HashComment and self.__CurrentChar() == T_CHAR_STAR and self.__NextChar() == T_CHAR_SLASH:
535 elif self.__CurrentChar() == T_CHAR_SLASH and self.__NextChar() == T_CHAR_SLASH and not self.__EndOfLine():
539 elif self.__CurrentChar() == T_CHAR_HASH and not self.__EndOfLine() and not InString:
543 elif self.__CurrentChar()
[all...]

Completed in 155 milliseconds