Lines Matching refs:str
61 static inline QString qgettext(const char* str) in qgettext() argument
63 return QString::fromLocal8Bit(gettext(str)); in qgettext()
66 static inline QString qgettext(const QString& str) in qgettext() argument
68 return QString::fromLocal8Bit(gettext(str.latin1())); in qgettext()
996 QString str; in symbolInfo() local
998 str += "<big>Symbol: <b>"; in symbolInfo()
999 str += print_filter(sym->name); in symbolInfo()
1000 str += "</b></big><br><br>value: "; in symbolInfo()
1001 str += print_filter(sym_get_string_value(sym)); in symbolInfo()
1002 str += "<br>visibility: "; in symbolInfo()
1003 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; in symbolInfo()
1004 str += "<br>"; in symbolInfo()
1005 str += debug_info(sym); in symbolInfo()
1007 setText(str); in symbolInfo()
1120 QString ConfigInfoView::print_filter(const QString &str) in print_filter() argument
1123 QString res = str; in print_filter()
1151 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) in expr_print_help() argument
1154 QString str2 = print_filter(str); in expr_print_help()
1657 static const QString str = _("Welcome to the qconf graphical configuration tool.\n\n" in showIntro() local
1669 QMessageBox::information(this, "qconf", str); in showIntro()
1674 …static const QString str = _("qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\… in showAbout() local
1677 QMessageBox::information(this, "qconf", str); in showAbout()