• Home
  • Raw
  • Download

Lines Matching refs:str

988 	QString str;  in symbolInfo()  local
990 str += "<big>Symbol: <b>"; in symbolInfo()
991 str += print_filter(sym->name); in symbolInfo()
992 str += "</b></big><br><br>value: "; in symbolInfo()
993 str += print_filter(sym_get_string_value(sym)); in symbolInfo()
994 str += "<br>visibility: "; in symbolInfo()
995 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; in symbolInfo()
996 str += "<br>"; in symbolInfo()
997 str += debug_info(sym); in symbolInfo()
999 setText(str); in symbolInfo()
1122 QString ConfigInfoView::print_filter(const QString &str) in print_filter() argument
1125 QString res = str; in print_filter()
1153 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) in expr_print_help() argument
1159 *stream << print_filter(str); in expr_print_help()
1162 *stream << print_filter(str); in expr_print_help()
1168 QByteArray str = url.toEncoded(); in clicked() local
1169 const std::size_t count = str.size(); in clicked()
1179 memcpy(data, str.constData(), count); in clicked()
1515 QString str; in loadConfig() local
1519 str = QFileDialog::getOpenFileName(this, "", configname); in loadConfig()
1520 if (str.isNull()) in loadConfig()
1523 ba = str.toLocal8Bit(); in loadConfig()
1548 QString str; in saveConfigAs() local
1552 str = QFileDialog::getSaveFileName(this, "", configname); in saveConfigAs()
1553 if (str.isNull()) in saveConfigAs()
1556 ba = str.toLocal8Bit(); in saveConfigAs()
1755 static const QString str = in showIntro() local
1776 QMessageBox::information(this, "qconf", str); in showIntro()
1781 static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n" in showAbout() local
1785 QMessageBox::information(this, "qconf", str); in showAbout()