Home
last modified time | relevance | path

Searched refs:strParam (Results 1 – 25 of 224) sorted by relevance

123456789

/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/public.sdk/samples/vst/channelcontext/source/
H A Dplugcontroller.cpp75 parameters.addParameter (strParam); in initialize()
79 parameters.addParameter (strParam); in initialize()
83 parameters.addParameter (strParam); in initialize()
87 parameters.addParameter (strParam); in initialize()
91 parameters.addParameter (strParam); in initialize()
93 strParam = in initialize()
98 strParam = in initialize()
101 parameters.addParameter (strParam); in initialize()
106 parameters.addParameter (strParam); in initialize()
110 parameters.addParameter (strParam); in initialize()
[all …]
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vst3sdk/public.sdk/samples/vst/channelcontext/source/
H A Dplugcontroller.cpp73 StringListParameter* strParam = in initialize() local
76 parameters.addParameter (strParam); in initialize()
80 parameters.addParameter (strParam); in initialize()
84 parameters.addParameter (strParam); in initialize()
88 parameters.addParameter (strParam); in initialize()
92 parameters.addParameter (strParam); in initialize()
94 strParam = in initialize()
99 strParam = in initialize()
102 parameters.addParameter (strParam); in initialize()
107 parameters.addParameter (strParam); in initialize()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/utils/
H A DHttpHeader.cpp75 std::string strParam(headerLine, 0, valueStart); in ParseLine() local
78 StringUtils::Trim(strParam, m_whitespaceChars); in ParseLine()
79 StringUtils::ToLower(strParam); in ParseLine()
83 if (!strParam.empty() && !strValue.empty()) in ParseLine()
84 m_params.push_back(HeaderParams::value_type(strParam, strValue)); in ParseLine()
123 std::string CHttpHeader::GetValue(const std::string& strParam) const in GetValue()
125 std::string paramLower(strParam); in GetValue()
131 std::string CHttpHeader::GetValueRaw(const std::string& strParam) const in GetValueRaw()
136 if (iter->first == strParam) in GetValueRaw()
145 StringUtils::ToLower(strParam); in GetValues()
[all …]
H A DHttpHeader.h28 std::string GetValue(const std::string& strParam) const;
29 std::vector<std::string> GetValues(std::string strParam) const;
44 std::string GetValueRaw(const std::string& strParam) const;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/messaging/
H A DThreadMessage.h64 strParam(std::move(param)),
77 strParam(std::move(other.strParam)), in ThreadMessage()
93 strParam = other.strParam;
109 strParam = std::move(other.strParam);
121 std::string strParam; variable
H A DApplicationMessenger.cpp47 …).PostMsg(m_msg.dwMessage, m_msg.param1, m_msg.param1, m_msg.lpVoid, m_msg.strParam, m_msg.params); in Process()
164 …Messenger::SendMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam) in SendMsg() argument
166 return SendMsg(ThreadMessage{messageId, param1, param2, payload, std::move(strParam), in SendMsg()
171 …(uint32_t messageId, int param1, int param2, void* payload, std::string strParam, std::vector<std:… in SendMsg() argument
174 ThreadMessage{messageId, param1, param2, payload, std::move(strParam), std::move(params)}, in SendMsg()
193 …Messenger::PostMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam) in PostMsg() argument
195 SendMsg(ThreadMessage{messageId, param1, param2, payload, std::move(strParam), in PostMsg()
200 …(uint32_t messageId, int param1, int param2, void* payload, std::string strParam, std::vector<std:… in PostMsg() argument
202 SendMsg(ThreadMessage{messageId, param1, param2, payload, std::move(strParam), std::move(params)}, in PostMsg()
H A DApplicationMessenger.h286 int SendMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam);
306 …int SendMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam, std::…
356 void PostMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam);
371 …void PostMsg(uint32_t messageId, int param1, int param2, void* payload, std::string strParam, std:…
/dports/misc/sdformat/osrf-sdformat-f555f9a69f8f/src/
H A DParam_TEST.cc54 strParam.Get<bool>(value); in TEST()
57 strParam.Set("false"); in TEST()
58 strParam.Get<bool>(value); in TEST()
61 strParam.Set("1"); in TEST()
62 strParam.Get<bool>(value); in TEST()
65 strParam.Set("0"); in TEST()
66 strParam.Get<bool>(value); in TEST()
69 strParam.Set("True"); in TEST()
70 strParam.Get<bool>(value); in TEST()
73 strParam.Set("TRUE"); in TEST()
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/Ecas/
H A DEcasUtil.cs248 c.Value = strParam; in ParametersToDataGridView()
253 c.Value = StrUtil.StringToBool(strParam); in ParametersToDataGridView()
265 if(eei.ID.ToString() == strParam) iFound = e; in ParametersToDataGridView()
275 c.Value = FilterTypeI64(strParam); in ParametersToDataGridView()
280 c.Value = FilterTypeU64(strParam); in ParametersToDataGridView()
447 string strParam = ecasObj.Parameters[i]; in ParametersToString()
454 strAppend = strParam; in ParametersToString()
466 strAppend = FilterTypeI64(strParam); in ParametersToString()
468 strAppend = FilterTypeU64(strParam); in ParametersToString()
469 else { Debug.Assert(false); strAppend = strParam; } in ParametersToString()
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/doc/lib/pgBackRestDoc/Common/
H A DString.pm40 foreach my $strParam (@_)
42 if (defined($strParam))
44 return $strParam;
H A DLog.pm523 foreach my $strParam (sort(keys(%$oParamHash)))
530 …my $strValueRef = defined($oParamHash->{$strParam}{value}) ? logDebugBuild($oParamHash->{$strParam
532 …defined($$strValueRef) && defined($$oParamHash{$strParam}{default}) ? $$oParamHash{$strParam}{defa…
535 "${strParam} = " .
536 ($oParamHash->{$strParam}{redact} && defined($$strValueRef) ? '<redacted>' :
539 ($strParam =~ /^(b|is)/ ? ($$strValueRef ? 'true' : 'false'):
/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/Spr/
H A DSprEngine.PickChars.cs60 string strParam = str.Substring(iStart + strStart.Length, in ReplacePickPw()
62 string[] vParams = strParam.Split(new char[] { ':' }); in ReplacePickPw()
122 string strParam = str.Substring(iStart + strStart.Length, in ReplacePickChars()
128 if(strParam.Length == 0) in ReplacePickChars()
131 else if(strParam.StartsWith(":")) in ReplacePickChars()
133 string strParams = strParam.Substring(1); in ReplacePickChars()
/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/SendInputExt/
H A DSiEngineUnix.cs101 private static void RunXDoTool(string strVerb, string strParam) in RunXDoTool() argument
106 if(!string.IsNullOrEmpty(strParam)) in RunXDoTool()
107 str += " " + strParam; in RunXDoTool()
/dports/graphics/azpainter/azpainter-2.1.7/mlib/src/widget/
H A DmWidgetBuilder.c68 mStr strParam; member
182 mStrSetTextLen(&p->strParam, p->pcur, pc - p->pcur); in _getNextParam()
199 pc = p->strParam.buf; in _splitParam()
206 pc2 = pc + p->strParam.len; in _splitParam()
396 pc = p->strParam.buf; in _setParam()
661 mStrAlloc(&wb.strParam, 64); in mWidgetBuilderCreateFromText()
671 pc = wb.strParam.buf; in mWidgetBuilderCreateFromText()
705 mStrFree(&wb.strParam); in mWidgetBuilderCreateFromText()
/dports/graphics/azpainterb/azpainterb-1.1.3/mlib/src/widget/
H A DmWidgetBuilder.c68 mStr strParam; member
182 mStrSetTextLen(&p->strParam, p->pcur, pc - p->pcur); in _getNextParam()
199 pc = p->strParam.buf; in _splitParam()
206 pc2 = pc + p->strParam.len; in _splitParam()
396 pc = p->strParam.buf; in _setParam()
661 mStrAlloc(&wb.strParam, 64); in mWidgetBuilderCreateFromText()
671 pc = wb.strParam.buf; in mWidgetBuilderCreateFromText()
705 mStrFree(&wb.strParam); in mWidgetBuilderCreateFromText()
/dports/editors/lazarus/lazarus/components/messagecomposer/
H A Dmessagecomposer.pas385 strParam := #32;
388 strParam := IntToStr(intParam);
396 strParam := FloatToStr(floatParam);
397 if pos('.',strParam) = 0 then
398 strParam := strParam+'.0';
406 strParam := IntToStr(intParam);
410 strParam := IntToStr(intParam);
412 if strParam<>#32 then
413 MsgButtons := MsgButtons+#32+strParam+',';
415 if strParam=#32 then
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/messagecomposer/
H A Dmessagecomposer.pas385 strParam := #32;
388 strParam := IntToStr(intParam);
396 strParam := FloatToStr(floatParam);
397 if pos('.',strParam) = 0 then
398 strParam := strParam+'.0';
406 strParam := IntToStr(intParam);
410 strParam := IntToStr(intParam);
412 if strParam<>#32 then
413 MsgButtons := MsgButtons+#32+strParam+',';
415 if strParam=#32 then
[all …]
/dports/editors/lazarus-qt5/lazarus/components/messagecomposer/
H A Dmessagecomposer.pas385 strParam := #32;
388 strParam := IntToStr(intParam);
396 strParam := FloatToStr(floatParam);
397 if pos('.',strParam) = 0 then
398 strParam := strParam+'.0';
406 strParam := IntToStr(intParam);
410 strParam := IntToStr(intParam);
412 if strParam<>#32 then
413 MsgButtons := MsgButtons+#32+strParam+',';
415 if strParam=#32 then
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/messagecomposer/
H A Dmessagecomposer.pas385 strParam := #32;
388 strParam := IntToStr(intParam);
396 strParam := FloatToStr(floatParam);
397 if pos('.',strParam) = 0 then
398 strParam := strParam+'.0';
406 strParam := IntToStr(intParam);
410 strParam := IntToStr(intParam);
412 if strParam<>#32 then
413 MsgButtons := MsgButtons+#32+strParam+',';
415 if strParam=#32 then
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/guilib/
H A DGUIMessage.cpp118 void CGUIMessage::SetStringParam(const std::string& strParam) in SetStringParam() argument
121 if (strParam.size()) in SetStringParam()
122 m_params.push_back(strParam); in SetStringParam()
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/cucumber/godog/godog-0.9.0/
H A Dcolor_tag_test.go192 strParam := cw.paramBuf.String()
193 if len(strParam) <= 0 {
194 strParam = "0"
196 csiParam := strings.Split(strParam, string(separatorChar))
/dports/net-im/licq-qt-gui/licq-f271d55/msn/src/
H A Dmsnbuffer.cpp206 string strParam; in GetParameter() local
221 strParam += cCheck; in GetParameter()
224 return strParam; in GetParameter()
/dports/net-im/licq-osd/licq-f271d55/msn/src/
H A Dmsnbuffer.cpp206 string strParam; in GetParameter() local
221 strParam += cCheck; in GetParameter()
224 return strParam; in GetParameter()
/dports/net-im/licq/licq-f271d55/msn/src/
H A Dmsnbuffer.cpp206 string strParam; in GetParameter() local
221 strParam += cCheck; in GetParameter()
224 return strParam; in GetParameter()
/dports/net-im/licq-icq/licq-f271d55/msn/src/
H A Dmsnbuffer.cpp206 string strParam; in GetParameter() local
221 strParam += cCheck; in GetParameter()
224 return strParam; in GetParameter()

123456789