Home
last modified time | relevance | path

Searched refs:strText (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Utility/
H A DMessageService.cs53 m_strText = (strText ?? string.Empty); in MessageServiceEventArgs()
183 return MessageBox.Show(strText, strTitle, mb, mi, mdb); in SafeShowMessageBox()
200 return MessageBox.Show(strText, strTitle, mb, mi, mdb); in SafeShowMessageBox()
213 return MessageBox.Show(strText, strTitle, mb, mi, mdb); in SafeShowMessageBox()
242 string strText = ObjectsToMessage(vLines); in ShowInfoEx()
246 strTitle, strText, MessageBoxButtons.OK, m_mbiInfo)); in ShowInfoEx()
307 strTitle, strText, MessageBoxButtons.OK, m_mbiFatal)); in ShowFatal()
320 string strTextEx = (strText ?? string.Empty); in Ask()
339 string strTextEx = (strText ?? string.Empty); in AskYesNo()
364 public static bool AskYesNo(string strText) in AskYesNo() argument
[all …]
H A DStrUtil.cs536 string strText = string.Empty; in FormatException()
554 strText += MessageService.NewLine; in FormatException()
580 strText += MessageService.NewLine; in FormatException()
588 return strText; in FormatException()
726 Debug.Assert(strText != null); in CompactString3Dots()
731 if(strText.Length <= cchMax) return strText; in CompactString3Dots()
786 if(string.IsNullOrEmpty(strText)) return strText; in SafeXmlString()
788 int nLength = strText.Length; in SafeXmlString()
793 char ch = strText[i]; in SafeXmlString()
803 char chLow = strText[i + 1]; in SafeXmlString()
[all …]
/dports/multimedia/kodi-addon-inputstream.adaptive/inputstream.adaptive-19.0.1-Matrix/src/parser/
H A DWebVTT.cpp57 std::string strText; in Parse() local
71 strText.clear(); in Parse()
103 if (strText.empty()) in Parse()
106 sub.id = strText; in Parse()
121 strText = std::string(cbuf, next - cbuf); in Parse()
122 if (!strText.empty() && strText.back() == '\r') in Parse()
123 strText.resize(strText.size() - 1); in Parse()
128 strText = std::string(cbuf, next - cbuf); in Parse()
129 if (!strText.empty() && strText.back() == '\r') in Parse()
130 strText.resize(strText.size() - 1); in Parse()
[all …]
/dports/security/keepass/KeePass-2.49-Source/Translation/TrlUtil/
H A DAccelKeysCheck.cs64 string strText = Translate(kpfc, c); in Validate()
65 if(string.IsNullOrEmpty(strText)) continue; in Validate()
69 MessageService.NewLine + "text: \"" + strText + "\"."; in Validate()
72 char chKey = GetAccelKey(strText, out strError); in Validate()
115 private static char GetAccelKey(string strText, out string strError) in GetAccelKey() argument
118 if(string.IsNullOrEmpty(strText)) return char.MinValue; in GetAccelKey()
120 strText = strText.Replace(@"&&", string.Empty); in GetAccelKey()
122 int iL = strText.IndexOf('&'); in GetAccelKey()
125 int iR = strText.LastIndexOf('&'); in GetAccelKey()
132 if(iL == (strText.Length - 1)) in GetAccelKey()
[all …]
/dports/games/openclonk/openclonk-release-8.1-src/src/game/
H A DC4GraphicsSystem.cpp379 StdStrBuf strText; in DrawHelp() local
381 strText.AppendFormat("[%s]\n\n", LoadResStr("IDS_CTL_GAMEFUNCTIONS")); in DrawHelp()
383strText.AppendFormat("<c ffff00>%s</c> - %s\n", GetKeyboardInputName("ToggleShowHelp").getData(), … in DrawHelp()
384strText.AppendFormat("<c ffff00>%s</c> - %s\n", GetKeyboardInputName("MusicToggle").getData(), Loa… in DrawHelp()
392strText.AppendFormat("\n<c ffff00>%s</c> - %s\n", GetKeyboardInputName("ToggleChat").getData(), Lo… in DrawHelp()
399 pDraw->TextOut(strText.getData(), ::GraphicsResource.FontRegular, 1.0, FullScreen.pSurface, in DrawHelp()
403 strText.Clear(); in DrawHelp()
408 strText.AppendFormat("\n\n[%s]\n\n", "Debug"); in DrawHelp()
410strText.AppendFormat("<c ffff00>%s</c> - %s\n", GetKeyboardInputName("DbgShowVtxToggle").getData()… in DrawHelp()
412strText.AppendFormat("<c ffff00>%s</c> - %s\n", GetKeyboardInputName("DbgShow8BitSurface").getData… in DrawHelp()
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/UI/
H A DAsyncPwListUpdate.cs62 public delegate string PwTextUpdateDelegate(string strText, PwListItem li); in PwTextUpdateDelegate() argument
103 public void Queue(string strText, PwListItem li, int iIndexHint, in Queue() argument
106 if(strText == null) { Debug.Assert(false); return; } in Queue()
114 state.Text = strText; in Queue()
212 private delegate void SetItemTextDelegate(string strText, LviUpdInfo lui); in SetItemTextDelegate() argument
214 private static void SetItemText(string strText, LviUpdInfo lui) in SetItemText() argument
237 lvi.SubItems[lui.SubItem].Text = strText; in SetItemText()
245 internal static string SprCompileFn(string strText, PwListItem li) in SprCompileFn() argument
247 if(string.IsNullOrEmpty(strText)) return string.Empty; in SprCompileFn()
257 str = SprEngine.Compile(strText, ctx); in SprCompileFn()
[all …]
H A DHotKeyControlEx.cs148 string strText = string.Empty; in UpdateUI()
152 strText = m_strTextNone; in UpdateUI()
154 strText = UIUtil.GetKeysName(kFixed); in UpdateUI()
158 strText = UIUtil.GetKeysName(kUser & Keys.Modifiers) + "+"; in UpdateUI()
161 strText = KPRes.Invalid; in UpdateUI()
164 else strText = UIUtil.GetKeysName(kFixed); in UpdateUI()
170 if(strText != this.Text) // Avoid flicker in UpdateUI()
172 this.Text = strText; in UpdateUI()
173 Select(strText.Length, 0); in UpdateUI()
H A DFileDialogsEx.cs55 string strText = KPRes.DatabaseModifiedNoDot; in ShowFileSaveQuestion()
56 if(bFile) strText += ":\r\n" + strFile; in ShowFileSaveQuestion()
57 else strText += "."; in ShowFileSaveQuestion()
61 dlg.Content = strText; in ShowFileSaveQuestion()
170 string strText = sb.ToString(); in ShowConfigError()
175 dlg.Content = strText; in ShowConfigError()
206 strText += MessageService.NewParagraph + strBackupText; in ShowConfigError()
207 strText = VistaTaskDialog.Unlink(strText); in ShowConfigError()
209 MessageService.ShowWarning(KPRes.ConfigError + "!", strText); in ShowConfigError()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/wxspellchecker/include/
H A DSpellCheckEngineOption.h38 SpellCheckEngineOption(wxString strName, wxString strText);
39 …SpellCheckEngineOption(wxString strName, wxString strText, wxString strValue, int nType = SpellChe…
40 SpellCheckEngineOption(wxString strName, wxString strText, long nValue);
41 SpellCheckEngineOption(wxString strName, wxString strText, double dblValue);
42 SpellCheckEngineOption(wxString strName, wxString strText, bool bValue);
46 …void SetText(wxString strText) { m_strDialogText = strText; if (m_strOptionName.IsEmpty()) m_strOp… in SetText() argument
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/guilib/
H A DPVRGUIProgressHandler.cpp32 void CPVRGUIProgressHandler::UpdateProgress(const std::string& strText, float fProgress) in UpdateProgress() argument
36 m_strText = strText; in UpdateProgress()
40 void CPVRGUIProgressHandler::UpdateProgress(const std::string& strText, int iCurrent, int iMax) in UpdateProgress() argument
46 UpdateProgress(strText, fPercentage); in UpdateProgress()
69 std::string strText; in Process() local
78 strText = m_strText; in Process()
86 progressHandle->SetText(strText); in Process()
/dports/databases/pgadmin3/pgadmin3-1.22.2/docs/
H A DcreateConf.vbs23 strText = objConfFile.ReadAll
25 strText = Replace(strText, "PGADMIN_LONG_VERSION", strLongVer)
26 strText = Replace(strText, "PGADMIN_SHORT_VERSION", strShortVer)
28 objConfFile.WriteLine strText
/dports/chinese/scim-fcitx/fcitx/src/
H A Dpunc.cpp26 char strText[11]; in LoadPuncDict() local
43 if (!fgets (strText, 10, fpDict)) in LoadPuncDict()
45 i = strlen (strText) - 1; in LoadPuncDict()
47 while ((strText[i] == '\n') || (strText[i] == ' ')) { in LoadPuncDict()
54 strText[i + 1] = '\0'; in LoadPuncDict()
55 pstr = strText; in LoadPuncDict()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/wxspellchecker/src/
H A DSpellCheckEngineOption.cpp27 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText) in SpellCheckEngineOption() argument
30 m_strDialogText = strText; in SpellCheckEngineOption()
37 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, wxString strValu… in SpellCheckEngineOption() argument
40 m_strDialogText = strText; in SpellCheckEngineOption()
66 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, long nValue) in SpellCheckEngineOption() argument
69 m_strDialogText = strText; in SpellCheckEngineOption()
78 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, double dblValue) in SpellCheckEngineOption() argument
81 m_strDialogText = strText; in SpellCheckEngineOption()
90 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, bool bValue) in SpellCheckEngineOption() argument
93 m_strDialogText = strText; in SpellCheckEngineOption()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Xml/ModuleCore/
H A Dcltmconsole.cs32 public override void Write(string strText) in Write() argument
34 CError.Write(strText); in Write()
49 public override void WriteLine(string strText) in WriteLine() argument
51 Write(strText + this.NewLine); in WriteLine()
/dports/security/keepass/KeePass-2.49-Source/KeePass/Forms/
H A DStatusProgressForm.cs132 public delegate void Priv_SetProgressInternal(string strText, int nPercent); in Priv_SetProgressInternal() argument
134 private void SetProgressInternal(string strText, int nPercent) in SetProgressInternal() argument
140 if(strText != null) m_lblTotal.Text = strText; in SetProgressInternal()
146 private bool SetProgressGlobal(string strText, int nPercent) in SetProgressGlobal() argument
150 strText, nPercent); in SetProgressGlobal()
151 else SetProgressInternal(strText, nPercent); in SetProgressGlobal()
/dports/games/openbor4432/openbor-ba1eb4f/engine/xbox/common/src/
H A Dxbfont.cpp233 if( NULL==strText || NULL==pWidth || NULL==pHeight ) in GetTextExtent()
245 while( *strText ) in GetTextExtent()
247 WCHAR letter = *strText++; in GetTextExtent()
314 const WCHAR* strText, DWORD dwFlags ) in DrawText() argument
327 GetTextExtent( strText, &w, &h ); in DrawText()
334 while( *strText ) in DrawText()
343 GetTextExtent( strText, &w, &h, TRUE ); in DrawText()
355 WCHAR letter = *strText++; in DrawText()
497 LPDIRECT3DTEXTURE8 CXBFont::CreateTexture( const WCHAR* strText, in CreateTexture() argument
505 GetTextExtent( strText, &fTexWidth, &fTexHeight ); in CreateTexture()
[all …]
/dports/games/openbor/openbor-3caaddd5/engine/xbox/common/src/
H A Dxbfont.cpp233 if( NULL==strText || NULL==pWidth || NULL==pHeight ) in GetTextExtent()
245 while( *strText ) in GetTextExtent()
247 WCHAR letter = *strText++; in GetTextExtent()
314 const WCHAR* strText, DWORD dwFlags ) in DrawText() argument
327 GetTextExtent( strText, &w, &h ); in DrawText()
334 while( *strText ) in DrawText()
343 GetTextExtent( strText, &w, &h, TRUE ); in DrawText()
355 WCHAR letter = *strText++; in DrawText()
497 LPDIRECT3DTEXTURE8 CXBFont::CreateTexture( const WCHAR* strText, in CreateTexture() argument
505 GetTextExtent( strText, &fTexWidth, &fTexHeight ); in CreateTexture()
[all …]
/dports/games/openbor3979/openbor-2bcf25b/engine/xbox/common/src/
H A Dxbfont.cpp233 if( NULL==strText || NULL==pWidth || NULL==pHeight ) in GetTextExtent()
245 while( *strText ) in GetTextExtent()
247 WCHAR letter = *strText++; in GetTextExtent()
314 const WCHAR* strText, DWORD dwFlags ) in DrawText() argument
327 GetTextExtent( strText, &w, &h ); in DrawText()
334 while( *strText ) in DrawText()
343 GetTextExtent( strText, &w, &h, TRUE ); in DrawText()
355 WCHAR letter = *strText++; in DrawText()
497 LPDIRECT3DTEXTURE8 CXBFont::CreateTexture( const WCHAR* strText, in CreateTexture() argument
505 GetTextExtent( strText, &fTexWidth, &fTexHeight ); in CreateTexture()
[all …]
/dports/games/openbor3482/openbor-2c1ecd7/engine/xbox/common/src/
H A Dxbfont.cpp233 if( NULL==strText || NULL==pWidth || NULL==pHeight ) in GetTextExtent()
245 while( *strText ) in GetTextExtent()
247 WCHAR letter = *strText++; in GetTextExtent()
314 const WCHAR* strText, DWORD dwFlags ) in DrawText() argument
327 GetTextExtent( strText, &w, &h ); in DrawText()
334 while( *strText ) in DrawText()
343 GetTextExtent( strText, &w, &h, TRUE ); in DrawText()
355 WCHAR letter = *strText++; in DrawText()
497 LPDIRECT3DTEXTURE8 CXBFont::CreateTexture( const WCHAR* strText, in CreateTexture() argument
505 GetTextExtent( strText, &fTexWidth, &fTexHeight ); in CreateTexture()
[all …]
/dports/games/openbor3711/openbor-6ec17fa/engine/xbox/common/src/
H A Dxbfont.cpp233 if( NULL==strText || NULL==pWidth || NULL==pHeight ) in GetTextExtent()
245 while( *strText ) in GetTextExtent()
247 WCHAR letter = *strText++; in GetTextExtent()
314 const WCHAR* strText, DWORD dwFlags ) in DrawText() argument
327 GetTextExtent( strText, &w, &h ); in DrawText()
334 while( *strText ) in DrawText()
343 GetTextExtent( strText, &w, &h, TRUE ); in DrawText()
355 WCHAR letter = *strText++; in DrawText()
497 LPDIRECT3DTEXTURE8 CXBFont::CreateTexture( const WCHAR* strText, in CreateTexture() argument
505 GetTextExtent( strText, &fTexWidth, &fTexHeight ); in CreateTexture()
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/Formats/
H A DRoboFormHtml69.cs169 string strText = XmlUtil.SafeInnerText(e); in ImportPriv()
175 strText = ParseTitle(strText, pd, out pg); in ImportPriv()
176 ImportUtil.AppendToField(pe, PwDefs.TitleField, strText, pd); in ImportPriv()
180 ImportUtil.FixUrl(strText), pd); in ImportPriv()
184 if(strText.EndsWith(":") && !bNotesHeaderFound) in ImportPriv()
188 strText.Trim(), pd); in ImportPriv()
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/Gwen/Controls/
H A DRadioButtonController.cpp52 LabeledRadioButton* RadioButtonController::AddOption(const Gwen::String& strText, const Gwen::Strin… in AddOption() argument
54 return AddOption(Gwen::Utility::StringToUnicode(strText), strOptionName); in AddOption()
57 LabeledRadioButton* RadioButtonController::AddOption(const Gwen::UnicodeString& strText, const Gwen… in AddOption() argument
62 lrb->GetLabel()->SetText(strText); in AddOption()
/dports/devel/py-bullet3/bullet3-3.21/examples/ThirdPartyLibs/Gwen/Controls/
H A DRadioButtonController.cpp52 LabeledRadioButton* RadioButtonController::AddOption(const Gwen::String& strText, const Gwen::Strin… in AddOption() argument
54 return AddOption(Gwen::Utility::StringToUnicode(strText), strOptionName); in AddOption()
57 LabeledRadioButton* RadioButtonController::AddOption(const Gwen::UnicodeString& strText, const Gwen… in AddOption() argument
62 lrb->GetLabel()->SetText(strText); in AddOption()
/dports/security/pear-HTML_Crypt/HTML_Crypt-1.3.4/examples/
H A Dhtml-abc.php66 foreach ($arTexts as $strText) {
67 echo '<p>' . $strText . '<br/>' . "\n";
68 $c = new HTML_Crypt($strText, $nOffset);
/dports/graphics/bmeps/dktools-4.31.1/src/libdk4wx/
H A DDk4WxHelpController.cpp168 const wxChar *strText = NULL; in ShowErrorMessage() local
173 strText = pAppHelp->GetBasicString(i_text); in ShowErrorMessage()
181 if (NULL == strText) { in ShowErrorMessage()
183 strText = dk4wxhc_kw_def[i_text]; in ShowErrorMessage()
186 wxMessageBox(strText, strTitle, (wxOK | wxCENTRE | wxICON_ERROR)); in ShowErrorMessage()

12345678910>>...25