Home
last modified time | relevance | path

Searched refs:sCap (Results 1 – 14 of 14) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/chart2/qa/extras/
H A Dchart2geometry.cxx97 const OString sCap("/style:graphic-properties[@svg:stroke-linecap='round']"); in testTdf135184RoundLineCap() local
103 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap()
108 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap()
113 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap()
124 const OString sCap("/style:graphic-properties[@svg:stroke-linecap='round']"); in testTdf135184RoundLineCap2() local
131 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap2()
136 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap2()
141 assertXPath(pXmlDoc, sStyleStart + "/style:style" + sPredicate + sCap); in testTdf135184RoundLineCap2()
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/security/podsecuritypolicy/capabilities/
H A Dcapabilities.go126 sCap := string(cap)
127 if !defaultAdd.Has(sCap) && !allowedAdd.Has(sCap) {
128 …allErrs = append(allErrs, field.Invalid(fldPath.Child("add"), sCap, "capability may not be added"))
/dports/irc/znc/znc-1.8.2/src/
H A DClient.cpp724 CString sCap = sToken; in HandleCap() local
725 if (sCap.TrimPrefix("-")) bVal = false; in HandleCap()
728 const auto& it = m_mCoreCaps.find(sCap); in HandleCap()
747 CString sCap = sToken; in HandleCap() local
748 if (sCap.TrimPrefix("-")) bVal = false; in HandleCap()
750 auto handler_it = m_mCoreCaps.find(sCap); in HandleCap()
758 m_ssAcceptedCaps.insert(sCap); in HandleCap()
760 m_ssAcceptedCaps.erase(sCap); in HandleCap()
828 for (const CString& sCap : ssCaps) { in NotifyServerDependentCaps() local
829 const auto& it = m_mCoreCaps.find(sCap); in NotifyServerDependentCaps()
[all …]
H A DIRCSock.cpp250 CString sCap = *m_ssPendingCaps.begin(); in SendNextCap() local
252 PutIRC("CAP REQ :" + sCap); in SendNextCap()
264 bool CIRCSock::OnServerCapAvailable(const CString& sCap) { in OnServerCapAvailable() argument
266 IRCSOCKMODULECALL(OnServerCapAvailable(sCap), &bResult); in OnServerCapAvailable()
389 for (const CString& sCap : vsTokens) { in OnCapabilityMessage() local
390 if (OnServerCapAvailable(sCap) || mSupportedCaps.count(sCap)) { in OnCapabilityMessage()
391 m_ssPendingCaps.insert(sCap); in OnCapabilityMessage()
H A DModules.cpp1001 bool CModule::OnServerCapAvailable(const CString& sCap) { return false; } in OnServerCapAvailable() argument
1002 void CModule::OnServerCapResult(const CString& sCap, bool bSuccess) {} in OnServerCapResult() argument
1072 bool CModule::IsClientCapSupported(CClient* pClient, const CString& sCap, in IsClientCapSupported() argument
1076 void CModule::OnClientCapRequest(CClient* pClient, const CString& sCap, in OnClientCapRequest() argument
1494 bool CModules::OnServerCapAvailable(const CString& sCap) { in OnServerCapAvailable() argument
1503 bResult |= pMod->OnServerCapAvailable(sCap); in OnServerCapAvailable()
1507 bResult |= pMod->OnServerCapAvailable(sCap); in OnServerCapAvailable()
1519 bool CModules::OnServerCapResult(const CString& sCap, bool bSuccess) { in OnServerCapResult() argument
1520 MODUNLOADCHK(OnServerCapResult(sCap, bSuccess)); in OnServerCapResult()
1589 bool CModules::OnClientCapRequest(CClient* pClient, const CString& sCap, in OnClientCapRequest() argument
[all …]
/dports/irc/znc/znc-1.8.2/modules/
H A Dsasl.cpp219 bool OnServerCapAvailable(const CString& sCap) override { in OnServerCapAvailable() argument
220 return sCap.Equals("sasl"); in OnServerCapAvailable()
223 void OnServerCapResult(const CString& sCap, bool bSuccess) override { in OnServerCapResult() argument
224 if (sCap.Equals("sasl")) { in OnServerCapResult()
/dports/irc/znc/znc-1.8.2/include/znc/
H A DIRCSock.h161 bool IsCapAccepted(const CString& sCap) { in IsCapAccepted() argument
162 return 1 == m_ssAcceptedCaps.count(sCap); in IsCapAccepted()
194 bool OnServerCapAvailable(const CString& sCap);
H A DModules.h1005 virtual bool OnServerCapAvailable(const CString& sCap);
1011 virtual void OnServerCapResult(const CString& sCap, bool bSuccess);
1298 virtual bool IsClientCapSupported(CClient* pClient, const CString& sCap,
1309 virtual void OnClientCapRequest(CClient* pClient, const CString& sCap,
1545 bool OnServerCapAvailable(const CString& sCap);
1546 bool OnServerCapResult(const CString& sCap, bool bSuccess);
1587 bool IsClientCapSupported(CClient* pClient, const CString& sCap,
1589 bool OnClientCapRequest(CClient* pClient, const CString& sCap, bool bState);
H A DClient.h275 bool IsCapEnabled(const CString& sCap) const { in IsCapEnabled() argument
276 return 1 == m_ssAcceptedCaps.count(sCap); in IsCapEnabled()
/dports/irc/znc/znc-1.8.2/modules/modpython/
H A Dfunctions.in63 bool OnServerCapAvailable(const CString& sCap)
64 void OnServerCapResult(const CString& sCap, bool bSuccess)
110 bool IsClientCapSupported(CClient* pClient, const CString& sCap, bool bState)
111 void OnClientCapRequest(CClient* pClient, const CString& sCap, bool bState)
H A Dmodule.h138 bool OnServerCapAvailable(const CString& sCap) override;
139 void OnServerCapResult(const CString& sCap, bool bSuccess) override;
190 bool IsClientCapSupported(CClient* pClient, const CString& sCap,
192 void OnClientCapRequest(CClient* pClient, const CString& sCap,
H A Dznc.py405 def OnServerCapAvailable(self, sCap): argument
408 def OnServerCapResult(self, sCap, bSuccess): argument
451 def IsClientCapSupported(self, pClient, sCap, bState): argument
454 def OnClientCapRequest(self, pClient, sCap, bState): argument
/dports/irc/znc/znc-1.8.2/modules/modperl/
H A Dfunctions.in63 bool OnServerCapAvailable(const CString& sCap)
64 void OnServerCapResult(const CString& sCap, bool bSuccess)
H A Dmodule.h118 bool OnServerCapAvailable(const CString& sCap) override;
119 void OnServerCapResult(const CString& sCap, bool bSuccess) override;