Symbol: GetCurrentChar
src/tests/add-ons/print/ppd/parser/PPDFile.h
59
int GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Parser.cpp
103
if (GetCurrentChar() == '/') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
118
if (GetCurrentChar() == '"') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
139
if (GetCurrentChar() != '"') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
147
} else if (GetCurrentChar() == '^') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
167
if (GetCurrentChar() == '/') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
212
if (GetCurrentChar() == ':') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
220
if (GetCurrentChar() == kEof || GetCurrentChar() == kLf || GetCurrentChar() == kCr) {
src/tests/add-ons/print/ppd/parser/Parser.cpp
233
int ch = GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Parser.cpp
242
ch = GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Parser.cpp
28
while (IsWhitespace(GetCurrentChar())) {
src/tests/add-ons/print/ppd/parser/Parser.cpp
35
while (GetCurrentChar() != kEof && GetCurrentChar() != kCr) {
src/tests/add-ons/print/ppd/parser/Parser.cpp
43
while (IsWhitespaceSeparator(GetCurrentChar())) {
src/tests/add-ons/print/ppd/parser/Parser.cpp
51
if (GetCurrentChar() == '?') {
src/tests/add-ons/print/ppd/parser/Parser.cpp
79
bool isSymbolValue = GetCurrentChar() == '^';
src/tests/add-ons/print/ppd/parser/Parser.cpp
85
if (IsOptionChar(GetCurrentChar())) {
src/tests/add-ons/print/ppd/parser/Parser.h
21
int GetCurrentChar() { return fScanner.GetCurrentChar(); }
src/tests/add-ons/print/ppd/parser/Scanner.cpp
137
int ch = GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Scanner.cpp
158
return fCurrentFile->GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Scanner.cpp
168
if (fCurrentFile->GetCurrentChar() == kEof) {
src/tests/add-ons/print/ppd/parser/Scanner.cpp
69
while (cond(GetCurrentChar())) {
src/tests/add-ons/print/ppd/parser/Scanner.cpp
70
text->Append(GetCurrentChar(), 1);
src/tests/add-ons/print/ppd/parser/Scanner.cpp
95
int ch = GetCurrentChar();
src/tests/add-ons/print/ppd/parser/Scanner.h
32
int GetCurrentChar();
src/tests/add-ons/print/ppd/test/TestScanner.cpp
18
int ch = scanner->GetCurrentChar();
src/tests/add-ons/print/ppd/test/TestScanner.cpp
32
int ch = scanner.GetCurrentChar();
src/tests/add-ons/print/ppd/test/TestScanner.cpp
46
while (scanner.GetCurrentChar() != kEof) {