Home
last modified time | relevance | path

Searched refs:suggestedName (Results 1 – 25 of 109) sorted by relevance

12345

/dports/editors/calligra/calligra-3.2.1/words/part/dialogs/
H A DKWCreateBookmarkDialog.cpp24 KWCreateBookmark::KWCreateBookmark(const QStringList &nameList, const QString &suggestedName, QWidg… in KWCreateBookmark() argument
30 widget.bookmarkName->setEditText(suggestedName); in KWCreateBookmark()
39 …g::KWCreateBookmarkDialog(const QStringList &nameList, const QString &suggestedName, QWidget *pare… in KWCreateBookmarkDialog() argument
43 if (suggestedName.isEmpty() || m_nameList.contains(suggestedName)) { in KWCreateBookmarkDialog()
47 ui = new KWCreateBookmark(nameList, suggestedName, this); in KWCreateBookmarkDialog()
H A DKWCreateBookmarkDialog.h32 … KWCreateBookmark(const QStringList &nameList, const QString &suggestedName, QWidget *parent = 0);
46 …KWCreateBookmarkDialog(const QStringList &nameList, const QString &suggestedName, QWidget *parent …
/dports/devel/pear-PHP_CodeSniffer/PHP_CodeSniffer-3.6.1/src/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentSniff.php90 $suggestedName = Common::suggestType($typeName);
92 $suggestedNames[] = $suggestedName;
412 $suggestedTypeNames[] = $suggestedName;
420 … if (strpos($suggestedName, 'array') !== false || substr($suggestedName, -2) === '[]') {
427 $suggestedTypeHint = $suggestedName;
431 if ($suggestedName === 'string') {
433 } else if ($suggestedName === 'int' || $suggestedName === 'integer') {
435 } else if ($suggestedName === 'float') {
437 } else if ($suggestedName === 'bool' || $suggestedName === 'boolean') {
443 if ($suggestedName === 'object') {
[all …]
H A DVariableCommentSniff.php130 $suggestedName = Common::suggestType($typeName);
131 if (in_array($suggestedName, $suggestedNames, true) === false) {
132 $suggestedNames[] = $suggestedName;
/dports/graphics/kooka/kooka-3ed25fb9a1a62b88240a4f0f403b1ad49cf0adeb/libdialogutil/
H A Drecentsaver.cpp48 QUrl RecentSaver::recentUrl(const QString &suggestedName) in recentUrl() argument
51 return (QUrl::fromLocalFile(recentPath(suggestedName))); in recentUrl()
55 QString RecentSaver::recentPath(const QString &suggestedName) in recentPath() argument
61 if (!suggestedName.isEmpty()) recentDir += suggestedName; in recentPath()
H A Drecentsaver.h95 QUrl recentUrl(const QString &suggestedName = QString());
107 QString recentPath(const QString &suggestedName = QString());
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/download/home/rename/
H A DRenameDialogCustomView.java71 public void updateToErrorView(String suggestedName, @RenameResult int renameResult) { in updateToErrorView() argument
74 setEditText(suggestedName); in updateToErrorView()
99 public void initializeView(String suggestedName) { in initializeView() argument
100 setEditText(suggestedName); in initializeView()
154 private void setEditText(String suggestedName) { in setEditText() argument
155 if (!TextUtils.isEmpty(suggestedName)) { in setEditText()
156 mFileName.setText(suggestedName); in setEditText()
159 highlightEditText(suggestedName); in setEditText()
/dports/devel/kf5-kcoreaddons/kcoreaddons-5.89.0/src/lib/io/
H A Dkfileutils.cpp61 QString suggestedName = makeSuggestedName(oldName); in suggestName() local
65 while (QFileInfo::exists(basePath + suggestedName)) { in suggestName()
66 suggestedName = makeSuggestedName(suggestedName); in suggestName()
70 return suggestedName; in suggestName()
/dports/net/pimcommon/pimcommon-21.12.3/src/pimcommon/widgets/
H A Drenamefiledialog.cpp46 QString suggestedName; in suggestName() local
71 suggestedName = basename + spacer + QLatin1Char('1') + dotSuffix; in suggestName()
75 suggestedName = basename + dotSuffix; in suggestName()
78 suggestedName = basename + spacer + QLatin1Char('1') + dotSuffix; in suggestName()
86 exists = QFileInfo::exists(baseURL.toLocalFile() + QLatin1Char('/') + suggestedName); in suggestName()
90 return suggestedName; in suggestName()
92 return suggestName(baseURL, suggestedName); in suggestName()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/fix/
H A DConvertLoopOperation.java159 protected String modifybasename(String suggestedName) { in modifybasename() argument
160 String name= suggestedName; in modifybasename()
162 if(prefix.length() >= suggestedName.length()) { in modifybasename()
165 char afterPrefix= suggestedName.charAt(prefix.length()); in modifybasename()
167 if(suggestedName.toLowerCase().startsWith(prefix)) { in modifybasename()
168 String nameWithoutPrefix= suggestedName.substring(prefix.length()); in modifybasename()
/dports/irc/konversation/konversation-21.12.3/src/dcc/
H A Dresumedialog.cpp184 QString dotSuffix, suggestedName; in suggestNewName() local
203 suggestedName = basename + QLatin1Char('1') + dotSuffix; in suggestNewName()
209 suggestedName = basename + dotSuffix; in suggestNewName()
213 suggestedName = basename + QLatin1String("_1") + dotSuffix; in suggestNewName()
220 …ists(baseURL.adjusted(QUrl::StripTrailingSlash).toLocalFile() + QDir::separator() + suggestedName); in suggestNewName()
222 …ile(baseURL.adjusted(QUrl::StripTrailingSlash).toLocalFile() + QDir::separator() + suggestedName)); in suggestNewName()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/xsd2cppsax/src/de/netallied/xsd2cppsax/
H A DCppEnumNameCreator.java106 String suggestedName = new String(); in createEnumTypeName() local
108 suggestedName += stack.get(i).getName(); in createEnumTypeName()
110 suggestedName += delimiter; in createEnumTypeName()
115 + enumTypePrefix + suggestedName); in createEnumTypeName()
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/gui/views/dialogs/
H A DFileSelectorDialog.java119 public File saveFile(final File path, final String suggestedName) { in saveFile() argument
123 return saveFile(FileUtils.getPath(path), suggestedName); in saveFile()
127 public File saveFile(final String path, final String suggestedName) { in saveFile() argument
128 return getFile(path, suggestedName, I18nUtils.getString("SAVE"), in saveFile()
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/model/
H A DIFileSelectorDialog.java62 File saveFile(String path, String suggestedName); in saveFile() argument
71 File saveFile(File path, String suggestedName); in saveFile() argument
/dports/x11-fm/konqueror/konqueror-21.12.3/webenginepart/src/
H A Dwebenginepartdownloadmanager.cpp133 QString suggestedName = it->path(); in openBlob() local
135 QString suggestedName = it->suggestedFileName(); in openBlob() local
137 QString fileName = generateBlobTempFileName(suggestedName, type.preferredSuffix()); in openBlob()
148 QString WebEnginePartDownloadManager::generateBlobTempFileName(const QString& suggestedName, const … in generateBlobTempFileName() argument
150 QString baseName(suggestedName); in generateBlobTempFileName()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/plugins/platforms/winrt/
H A Dqwinrtfiledialoghelper.cpp400 QString suggestedName = QFileInfo(d->saveFileName.toLocalFile()).fileName(); in show() local
401 if (suggestedName.isEmpty() && dialogOptions->initiallySelectedFiles().size() > 0) in show()
402 suggestedName = QFileInfo(dialogOptions->initiallySelectedFiles().first().toLocalFile()) in show()
404 if (suggestedName.isEmpty()) { in show()
407 suggestedName = fileInfo.fileName(); in show()
409 if (!suggestedName.isEmpty()) { in show()
410 … HStringReference nativeSuggestedName(reinterpret_cast<const wchar_t *>(suggestedName.utf16()), in show()
411 uint(suggestedName.length())); in show()

12345