Home
last modified time | relevance | path

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

/external/libcups/ppdc/
Dppdc-source.cxx1934 nextch, // Next char in file in get_token() local
2019 nextch = fp->peek(); in get_token()
2021 if (nextch == '*') in get_token()
2026 while ((nextch = fp->get()) != EOF) in get_token()
2028 if (ch == '*' && nextch == '/') in get_token()
2031 ch = nextch; in get_token()
2034 if (nextch == EOF) in get_token()
2037 else if (nextch == '/') in get_token()
2040 while ((nextch = fp->get()) != EOF) in get_token()
2041 if (nextch == '\n') in get_token()
[all …]
/external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
DPpContext.h533 int nextch = input->get(); in getch() local
534 if (ch == '\r' && nextch == '\n') in getch()
537 ch = nextch; in getch()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/
DPpContext.h533 int nextch = input->get(); in getch() local
534 if (ch == '\r' && nextch == '\n') in getch()
537 ch = nextch; in getch()
/external/llvm-project/flang/lib/Parser/
Dtoken-parsers.h252 static constexpr auto nextch{attempt(CharLiteralChar{})}; in Parse()
253 while (auto ch{nextch.Parse(state)}) { in Parse()
/external/blktrace/
Dblktrace.c2724 char nextch; in get_online_cpus() local
2745 n = fscanf(cpus, "%d%c", &cpuid, &nextch); in get_online_cpus()
2748 if (n == 2 && nextch == '-') { in get_online_cpus()