Lines Matching refs:y
91 static void PrintFrom ( s16 x, s16 y, MsgData* msgData );
92 static void PrintTo ( s16 x, s16 y, MsgData* msgData );
93 static void PrintSubject ( s16 x, s16 y, MsgData* msgData );
94 static void PrintBodyText ( s16 x, s16 y, MsgData* msgData );
566 static void PrintFrom( s16 x, s16 y, MsgData* msgData ) in PrintFrom() argument
568 (void)DEMORFPrintf( x, y, 0, "%s", msgData->from ); in PrintFrom()
580 static void PrintTo( s16 x, s16 y, MsgData* msgData ) in PrintTo() argument
586 x += DEMORFPrintf( x, y, 0, "%s", msgData->to[i] ); in PrintTo()
589 x += DEMORFPrintf( x, y, 0, ", " ); in PrintTo()
604 static void PrintSubject( s16 x, s16 y, MsgData* msgData ) in PrintSubject() argument
612 x += DEMORFPrintf( x, y, 0, "%c", *pt ); in PrintSubject()
629 static void PrintBodyText( s16 x, s16 y, MsgData* msgData ) in PrintBodyText() argument
670 printY = (s16)(y + ((rowCount - g_lineTopOfBodyText) * FONT_LEADING)); in PrintBodyText()