• Home
  • Raw
  • Download

Lines Matching refs:str

43 static inline QString qgettext(const char* str)  in qgettext()  argument
45 return QString::fromLocal8Bit(str); in qgettext()
1057 QString str; in symbolInfo() local
1059 str += "<big>Symbol: <b>"; in symbolInfo()
1060 str += print_filter(sym->name); in symbolInfo()
1061 str += "</b></big><br><br>value: "; in symbolInfo()
1062 str += print_filter(sym_get_string_value(sym)); in symbolInfo()
1063 str += "<br>visibility: "; in symbolInfo()
1064 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; in symbolInfo()
1065 str += "<br>"; in symbolInfo()
1066 str += debug_info(sym); in symbolInfo()
1068 setText(str); in symbolInfo()
1180 QString ConfigInfoView::print_filter(const QString &str) in print_filter() argument
1183 QString res = str; in print_filter()
1211 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) in expr_print_help() argument
1214 QString str2 = print_filter(str); in expr_print_help()
1525 QString str; in loadConfig() local
1529 str = QFileDialog::getOpenFileName(this, "", configname); in loadConfig()
1530 if (str.isNull()) in loadConfig()
1533 ba = str.toLocal8Bit(); in loadConfig()
1558 QString str; in saveConfigAs() local
1562 str = QFileDialog::getSaveFileName(this, "", configname); in saveConfigAs()
1563 if (str.isNull()) in saveConfigAs()
1566 ba = str.toLocal8Bit(); in saveConfigAs()
1769 static const QString str = "Welcome to the qconf graphical configuration tool.\n\n" in showIntro() local
1781 QMessageBox::information(this, "qconf", str); in showIntro()
1786 static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n" in showAbout() local
1790 QMessageBox::information(this, "qconf", str); in showAbout()