OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LastEmitted
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp
147
const char *
LastEmitted
= AsmStr; // One past the last character emitted.
150
while (*
LastEmitted
) {
151
switch (*
LastEmitted
) {
154
const char *LiteralEnd =
LastEmitted
+1;
159
OS.write(
LastEmitted
, LiteralEnd-
LastEmitted
);
160
LastEmitted
= LiteralEnd;
164
++
LastEmitted
; // Consume newline character.
168
++
LastEmitted
; // Consume '$' character.
172
switch (*
LastEmitted
) {
[
all
...]
/external/llvm/utils/TableGen/
AsmWriterInst.cpp
65
std::string::size_type
LastEmitted
= 0;
66
while (
LastEmitted
!= AsmString.size()) {
68
AsmString.find_first_of("$\\",
LastEmitted
);
72
if (DollarPos !=
LastEmitted
) {
73
for (;
LastEmitted
!= DollarPos; ++
LastEmitted
)
74
switch (AsmString[
LastEmitted
]) {
101
AddLiteralString(std::string(1, AsmString[
LastEmitted
]));
130
LastEmitted
= DollarPos+2;
136
LastEmitted
= DollarPos+2
[
all
...]
Completed in 96 milliseconds