OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PutChar
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp
289
/// EmitPutChar - Emit a call to the
putchar
function. This assumes that Char
293
if (!TLI->has(LibFunc::
putchar
))
297
Value *
PutChar
= M->getOrInsertFunction("
putchar
", B.getInt32Ty(),
299
CallInst *CI = B.CreateCall(
PutChar
,
304
"
putchar
");
306
if (const Function *F = dyn_cast<Function>(
PutChar
->stripPointerCasts()))
/bootable/recovery/
wear_ui.cpp
544
PutChar
(ch);
553
void WearRecoveryUI::
PutChar
(char ch) {
screen_ui.cpp
644
void ScreenRecoveryUI::
PutChar
(char ch) {
706
while (text_row_ < text_rows_ - 1)
PutChar
('\n');
709
PutChar
(ch);
Completed in 3682 milliseconds