Home
last modified time | relevance | path

Searched refs:sDomain (Results 1 – 25 of 39) sorted by relevance

12

/dports/irc/znc/znc-1.8.2/src/
H A DTranslation.cpp56 const std::locale& loc = LoadTranslation(sDomain); in Singular()
66 const std::locale& loc = LoadTranslation(sDomain); in Plural()
86 auto& domain = m_Translations[sDomain]; in LoadTranslation()
91 gen.add_messages_domain(sDomain); in LoadTranslation()
107 void CTranslation::NewReference(const CString& sDomain) { in NewReference() argument
108 m_miReferences[sDomain]++; in NewReference()
110 void CTranslation::DelReference(const CString& sDomain) { in DelReference() argument
111 if (!--m_miReferences[sDomain]) { in DelReference()
112 m_Translations.erase(sDomain); in DelReference()
150 : m_sDomain(sDomain) { in CTranslationDomainRefHolder()
[all …]
/dports/mail/squirrelmail-compatibility-plugin/squirrelmail-compatibility-plugin-php74-2.0.16_1/compatibility/includes/1.5.1/
H A Dglobal.php130 function sqsetcookie($sName, $sValue='deleted', $iExpire=0, $sPath="", $sDomain="", argument
156 if (!empty($sDomain)) {
158 if (strtolower(substr($sDomain, 0, 4)) == 'www.') $sDomain = substr($sDomain, 4);
159 $sDomain = '.' . $sDomain;
162 $Port = strpos($sDomain, ':');
163 if ($Port !== false) $sDomain = substr($sDomain, 0, $Port);
169 . (empty($sDomain) ? '' : '; domain=' . $sDomain)
/dports/net-mgmt/nagvis/nagvis-1.9.29/share/server/core/classes/
H A DCoreSessionHandler.php34 $sDomain = cfg('global', 'sesscookiedomain');
45 if(strpos($sDomain, '.') === false)
46 $sDomain = null;
50 && preg_match('/\d.\d+.\d+.\d+/', $sDomain))
51 $sDomain = null;
55 session_set_cookie_params(0, $sPath, $sDomain, $bSecure, $bHTTPOnly);
57 session_set_cookie_params(0, $sPath, $sDomain, $bSecure);
86 … setcookie(SESSION_NAME, $_COOKIE[SESSION_NAME], $exp, $sPath, $sDomain, $bSecure, $bHTTPOnly);
/dports/mail/squirrelmail/squirrelmail.stable/squirrelmail/functions/
H A Dglobal.php507 * @param string $sDomain The domain that the cookie is available.
528 function sqsetcookie($sName, $sValue='deleted', $iExpire=0, $sPath="", $sDomain="", argument
584 if (!empty($sDomain)) {
586 if (strtolower(substr($sDomain, 0, 4)) == 'www.') $sDomain = substr($sDomain, 4);
587 $sDomain = '.' . $sDomain;
590 $Port = strpos($sDomain, ':');
591 if ($Port !== false) $sDomain = substr($sDomain, 0, $Port);
597 . (empty($sDomain) ? '' : '; domain=' . $sDomain)
/dports/irc/znc/znc-1.8.2/include/znc/
H A DTranslation.h34 CString Singular(const CString& sDomain, const CString& sContext,
36 CString Plural(const CString& sDomain, const CString& sContext,
43 void NewReference(const CString& sDomain);
44 void DelReference(const CString& sDomain);
48 const std::locale& LoadTranslation(const CString& sDomain);
62 explicit CTranslationDomainRefHolder(const CString& sDomain);
73 CDelayedTranslation(const CString& sDomain, const CString& sContext, in CDelayedTranslation() argument
75 : m_sDomain(sDomain), m_sContext(sContext), m_sEnglish(sEnglish) {} in CDelayedTranslation()
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/RainLoop/
H A DKeyPathHelper.php38 * @param string $sDomain
42 static public function LicensingDomainKeyValue($sDomain) argument
44 return '/Licensing/DomainKey/Value/'.$sDomain;
48 * @param string $sDomain
52 static public function LicensingDomainKeyOtherValue($sDomain) argument
54 return '/Licensing/DomainKeyOther/Value/'.$sDomain;
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/RainLoop/
H A DKeyPathHelper.php38 * @param string $sDomain
42 static public function LicensingDomainKeyValue($sDomain) argument
44 return '/Licensing/DomainKey/Value/'.$sDomain;
48 * @param string $sDomain
52 static public function LicensingDomainKeyOtherValue($sDomain) argument
54 return '/Licensing/DomainKeyOther/Value/'.$sDomain;
H A DUtils.php494 …public static function SetCookie($sName, $sValue = '', $iExpire = 0, $sPath = null, $sDomain = nul… argument
513 @\setcookie($sName, $sValue, $iExpire, $sPath, $sDomain, $bSecure, $bHttpOnly);
/dports/security/ftimes/ftimes-3.11.0/tools/dig/
H A Dhipdig.pl1134 foreach my $sDomain (sort(keys(%hDomainList)))
1136 if (length($sDomain) == 2 && $sDomain =~ /$sLetter(.)/)
1147 foreach my $sDomain (sort(keys(%hDomainList)))
1149 if (length($sDomain) == $sLength)
1151 push(@aList, $sDomain);
1160 foreach my $sDomain (sort(keys(%hDomainList)))
1162 print "$sDomain|$hDomainList{$sDomain}\n";
/dports/math/minizinc/libminizinc-2.5.5/lib/
H A DMIPdomains.cpp1175 SetOfIntvReal sDomain; member in MiniZinc::MIPD::DomainDecomp
1240 for (const auto& intv : sDomain) { in doProcess()
1271 sDomain.intersect(sD1); in projectVariableConstr()
1317 sDomain.intersect(SS); in projectVariableConstr()
1408 auto bnds = sDomain.getBounds(); in makeRangeDomains()
1432 auto bnds = sDomain.getBounds(); in syncWithEqEncoding()
1445 for (const auto& intv : sDomain) { in syncWithEqEncoding()
1481 sDomain.cardInt() <= mipd.dMaxNValueDensity * sDomain.size()) { in considerDenseEncoding()
1482 sDomain.split2Bits(); in considerDenseEncoding()
1496 for (const auto& intv : sDomain) { in createDomainFlags()
[all …]
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/RainLoop/Providers/
H A DPrem.php112 public function Activate($sDomain, $sKey, &$iCode) argument
119 …$sResult = $oHttp->GetUrlAsString(APP_API_PATH.'activate/'.\urlencode($sDomain).'/'.\urlencode($sK…
138 $sDomain = \trim(APP_SITE);
146 …if (0 === \strlen($sDomain) || $oHttp->CheckLocalhost($sDomain) || !$oCacher || !$oConfig || !$oCa…
151 $sDomainKeyValue = \RainLoop\KeyPathHelper::LicensingDomainKeyValue($sDomain);
152 $sDomainLongKeyValue = \RainLoop\KeyPathHelper::LicensingDomainKeyOtherValue($sDomain);
192 $sValue = $oHttp->GetUrlAsString(APP_API_PATH.'status/'.\urlencode($sDomain),
/dports/finance/moneymanagerex/moneymanagerex-1.2.7/3rd/ctpp/include/
H A DCTPP2GetText.hpp69 …void AddTranslation(const STLW::string & sFileName, const STLW::string & sDomain, const STLW::stri…
78 …sage(const STLW::string & sLang, const STLW::string & sMessage, const STLW::string & sDomain = "");
96 void SetDefaultDomain(const STLW::string & sDomain);
288 …T_32 CalculatePluralForm(UINT_32 iCount, const STLW::string & sLang, const STLW::string & sDomain);
/dports/www/firefox-legacy/firefox-52.8.0esr/ipc/ril/
H A DRilConnector.cpp185 static const int sDomain = AF_UNIX; in CreateStreamSocket() local
187 static const int sDomain = AF_INET; in CreateStreamSocket()
192 nsresult rv = CreateSocket(sDomain, fd.rwget()); in CreateStreamSocket()
201 rv = CreateAddress(sDomain, *aAddress, *aAddressLength); in CreateStreamSocket()
/dports/textproc/ctpp2/ctpp2-2.8.3/include/
H A DCTPP2GetText.hpp69 …void AddTranslation(const STLW::string & sFileName, const STLW::string & sDomain, const STLW::stri…
78 …sage(const STLW::string & sLang, const STLW::string & sMessage, const STLW::string & sDomain = "");
96 void SetDefaultDomain(const STLW::string & sDomain);
288 …T_32 CalculatePluralForm(UINT_32 iCount, const STLW::string & sLang, const STLW::string & sDomain);
/dports/mail/libdkim/libdkim/src/
H A Ddkimverify.h43 SelectorInfo(const string &sSelector, const string &sDomain);
117 SelectorInfo& GetSelector( const string &sSelector, const string &sDomain );
119 int GetADSP( const string &sDomain, int &iADSP );
H A Ddkimverify.cpp1202 …:SelectorInfo(const string &sSelector, const string &sDomain) : Selector(sSelector), Domain(sDomai… in SelectorInfo() argument
1362 SelectorInfo &CDKIMVerify::GetSelector( const string &sSelector, const string &sDomain ) in GetSelector() argument
1367 …if ( _stricmp(i->Selector.c_str(), sSelector.c_str()) == 0 && _stricmp(i->Domain.c_str(), sDomain.… in GetSelector()
1373 Selectors.push_back( SelectorInfo(sSelector, sDomain) ); in GetSelector()
1378 sFQDN += sDomain; in GetSelector()
1419 int CDKIMVerify::GetADSP( const string &sDomain, int &iADSP ) in GetADSP() argument
1422 sFQDN += sDomain; in GetADSP()
1437 int DomainDNSResult = DNSGetTXT( sDomain.c_str(), Buffer, BufLen ); in GetADSP()
H A Ddkimsign.cpp89 sDomain.assign( pOptions->szDomain ); in Init()
537 if( sDomain.empty() ) in ParseFromAddress()
539 sDomain.assign( sAddress.c_str() + pos + 1 ); in ParseFromAddress()
540 RemoveSWSP( sDomain ); in ParseFromAddress()
831 AddTagToSig( "d", sDomain, 0, false ); in ConstructSignature()
H A Ddkimsign.h79 string sDomain; variable
/dports/finance/moneymanagerex/moneymanagerex-1.2.7/3rd/ctpp/src/
H A DCTPP2GetText.cpp254 sWorkableDomain = sDomain; in AddTranslation()
337 STLW::string sDomain = sDomain_; in FindMessage() local
338 if (sDomain.empty()) { sDomain = sDefaultDomain; } in FindMessage()
343 MessageMap & oMessages = mCatalog[sLang][sDomain].m_messages; in FindMessage()
357 STLW::string sDomain = sDomain_; in FindPluralMessage() local
358 if (sDomain.empty()) { sDomain = sDefaultDomain; } in FindPluralMessage()
361 mCatalog[sLang].find(sDomain) == mCatalog[sLang].end() || in FindPluralMessage()
362 … mCatalog[sLang][sDomain].m_messages.find(sMessage) == mCatalog[sLang][sDomain].m_messages.end()) in FindPluralMessage()
368 UINT_32 iN = CalculatePluralForm(iCount, sLang, sDomain); in FindPluralMessage()
385 void CTPP2GetText::SetDefaultDomain(const STLW::string & sDomain) { sDefaultDomain = sDomain; } in SetDefaultDomain() argument
[all …]
/dports/textproc/ctpp2/ctpp2-2.8.3/src/
H A DCTPP2GetText.cpp254 sWorkableDomain = sDomain; in AddTranslation()
337 STLW::string sDomain = sDomain_; in FindMessage() local
338 if (sDomain.empty()) { sDomain = sDefaultDomain; } in FindMessage()
343 MessageMap & oMessages = mCatalog[sLang][sDomain].m_messages; in FindMessage()
357 STLW::string sDomain = sDomain_; in FindPluralMessage() local
358 if (sDomain.empty()) { sDomain = sDefaultDomain; } in FindPluralMessage()
361 mCatalog[sLang].find(sDomain) == mCatalog[sLang].end() || in FindPluralMessage()
362 … mCatalog[sLang][sDomain].m_messages.find(sMessage) == mCatalog[sLang][sDomain].m_messages.end()) in FindPluralMessage()
368 UINT_32 iN = CalculatePluralForm(iCount, sLang, sDomain); in FindPluralMessage()
385 void CTPP2GetText::SetDefaultDomain(const STLW::string & sDomain) { sDefaultDomain = sDomain; } in SetDefaultDomain() argument
[all …]
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/MailSo/Base/
H A DUtils.php996 * @param string $sDomain
1000 public static function GetClearDomainName($sDomain) argument
1004 '', $sDomain);
1006 return false === \strpos($sResultDomain, '.') ? $sDomain : $sResultDomain;
2378 * @param string $sDomain
2383 public static function ValidateDomain($sDomain, $bSimple = false) argument
2454 $sDomain = $sStr;
2458 $sDomain = \MailSo\Base\Utils::GetDomainFromEmail($sStr);
2461 if (0 < \strlen($sDomain) && \preg_match('/[^\x20-\x7E]/', $sDomain))
2465 $sDomain = self::idn()->encode($sDomain);
[all …]
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/MailSo/Base/
H A DUtils.php996 * @param string $sDomain
1000 public static function GetClearDomainName($sDomain) argument
1004 '', $sDomain);
1006 return false === \strpos($sResultDomain, '.') ? $sDomain : $sResultDomain;
2378 * @param string $sDomain
2383 public static function ValidateDomain($sDomain, $bSimple = false) argument
2454 $sDomain = $sStr;
2458 $sDomain = \MailSo\Base\Utils::GetDomainFromEmail($sStr);
2461 if (0 < \strlen($sDomain) && \preg_match('/[^\x20-\x7E]/', $sDomain))
2465 $sDomain = self::idn()->encode($sDomain);
[all …]
/dports/www/itop/web/core/
H A Ddata.generator.class.inc.php321 $sDomain = $this->m_OrganizationDomains[rand(0, count($this->m_OrganizationDomains)-1)];
325 $sDomain = $this->m_OrganizationDomains;
327 return $sDomain;
/dports/devel/py-pycalendar/pycalendar-2.0/src/pycalendar/vcard/
H A Dcard.py30 sDomain = "mulberrymail.com" variable in Card
38 Card.sDomain = domain
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Mapping/ViewGeneration/Structures/
H A DMemberDomainMap.cs284 CellConstantSet sDomain = updateDomainMap.GetDomainInternal(sPath); in PropagateUpdateDomainToQueryDomain()
288 … cDomain.Unite(sDomain.Where(constant => !constant.IsNull() && !(constant is NegatedConstant))); in PropagateUpdateDomainToQueryDomain()

12