Home
last modified time | relevance | path

Searched refs:iVersion (Results 1 – 25 of 1020) sorted by relevance

12345678910>>...41

/dports/security/beid/eid-mw-5.0.8/cardcomm/pkcs11/src/cardlayer/
H A Dpinpadlib.cpp77 unsigned long ulLanguage, int iVersion, in CheckLib() argument
208 const std::string & csPinpadPrefix, int iVersion) in GetSearchString() argument
213 _itoa_s(iVersion, csBuf, sizeof(csBuf), 10); in GetSearchString()
245 for (int iVersion = 2; iVersion >= 2 && !bPinpadLibFound; iVersion--) in Load() local
248 csPinpadPrefix, iVersion); in Load()
261 ulLanguage, iVersion, hContext, hCard, csReader); in Load()
305 for (int iVersion = 2; iVersion >= 2 && !bPinpadLibFound; iVersion--) in Load() local
308 csPinpadPrefix, iVersion); in Load()
319 sprintf_s(csBuf,sizeof(csBuf), "lib%s%i", csPinpadPrefix.c_str(), iVersion); in Load()
327 ulLanguage, iVersion, hContext, hCard, csReader); in Load()
/dports/www/moinmoin/moin-1.9.11/MoinMoin/web/static/htdocs/applets/FCKeditor/
H A Dfckeditor.pl104 $iVersion = substr($sAgent,index($sAgent,'MSIE') + 5,3);
105 return($iVersion >= 5.5) ;
109 $iVersion = substr($sAgent,index($sAgent,'Gecko/') + 6,8);
110 return($iVersion >= 20030210) ;
112 $iVersion = substr($sAgent,index($sAgent,'Opera/') + 6,4);
113 return($iVersion >= 9.5) ;
H A Dfckeditor.afp113 iVersion=VAL(SUBSTR(sAgent,AT("msie",sAgent)+5,3))
114 llRetval= iVersion > 5.5
117 iVersion=VAL(SUBSTR(sAgent,AT("gecko/",sAgent)+6,4))
118 IF ( 2000 > iVersion )
121 iVersion=VAL(SUBSTR(sAgent,AT("gecko/",sAgent)+6,8))
122 llRetval =iVersion > 20030210
127 iVersion=VAL(SUBSTR(sAgent,AT("opera/",sAgent)+6,4))
128 llRetval =iVersion >= 9.5
132 iVersion=VAL(SUBSTR(sAgent,AT("applewebkit/",sAgent)+12,3))
133 llRetval =iVersion >= 522
H A Dfckeditor.py117 iVersion = float(sAgent[i+5:i+5+3])
118 if (iVersion >= 5.5):
125 iVersion = int(sAgent[i+6:i+6+8])
126 if (iVersion >= 20030210):
131 iVersion = float(sAgent[i+6:i+6+4])
132 if (iVersion >= 9.5):
H A Dfckeditor_php4.php52 $iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
53 return ($iVersion >= 5.5) ;
60 $iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
61 return ($iVersion >= 20030210) ;
70 $iVersion = $matches[1] ;
H A Dfckeditor_php5.php52 $iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
53 return ($iVersion >= 5.5) ;
60 $iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
61 return ($iVersion >= 20030210) ;
70 $iVersion = $matches[1] ;
/dports/editors/abiword/abiword-3.0.5/src/af/xap/xp/
H A Dxad_Document.cpp397 iVersion = 0; in areDocumentHistoriesEqual()
416 iVersion = v1->getId(); in areDocumentHistoriesEqual()
518 iVersion = iMinVersion; in verifyHistoryState()
530 if(v->getId() == iVersion) in findHistoryRecord()
926 iVersion)); in findAutoRevisionId()
965 iVersion, bLesser)); in findNearestAutoRevisionId()
1111 if(v->getId() == iVersion) in _restoreVersion()
1117 if(v->getId() > iVersion) in _restoreVersion()
1132 setDocVersion(iVersion); in _restoreVersion()
1177 if(iVersion) in showHistory()
[all …]
/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/mupen64plus-core/tools/
H A Dsavestate_convert.c114 int iVersion; in main() local
145 iVersion = inbuf[0]; in main()
146 iVersion = (iVersion << 8) | inbuf[1]; in main()
147 iVersion = (iVersion << 8) | inbuf[2]; in main()
148 iVersion = (iVersion << 8) | inbuf[3]; in main()
156 else if (iVersion == savestate_newest_version) in main()
163 printf("This savestate file uses an unknown version (%08x)\n", iVersion); in main()
/dports/www/p5-CGI-FCKeditor/CGI-FCKeditor-0.02/lib/CGI/
H A DFCKeditor.pm80 my $iVersion = undef;
83 $iVersion = substr($sAgent,index($sAgent,'MSIE') + 5,3);
84 if ($iVersion >= 5.5){
88 $iVersion = substr($sAgent,index($sAgent,'Gecko/') + 6,8);
89 if ($iVersion >= 20030210){
/dports/www/lagrange/lagrange-1.7.3/lib/the_Foundation/include/the_Foundation/
H A Dversion.h42 int cmp_Version(const iVersion *, const iVersion *other);
44 extern const iVersion version_Foundation;
/dports/chinese/fcitx/fcitx-4.2.9.7/tools/cli/
H A Dmb2txt.c117 char iVersion = 0; in main() local
151 fread(&iVersion, sizeof(char), 1, fpDict); in main()
152 printf(templ[TEMPL_VERNEW], iVersion); in main()
166 if (iVersion) { in main()
236 if (iVersion) in main()
246 if (iVersion) { in main()
/dports/www/lagrange/lagrange-1.7.3/lib/the_Foundation/src/
H A Dversion.c30 const iVersion version_Foundation = iFoundationLibraryVersion;
32 int cmp_Version(const iVersion *d, const iVersion *other) { in cmp_Version()
/dports/devel/rth/rth/FCKeditor/
H A Dfckeditor.pl99 $iVersion = substr($sAgent,index($sAgent,'MSIE') + 5,3);
100 return($iVersion >= 5.5) ;
102 $iVersion = substr($sAgent,index($sAgent,'Gecko/') + 6,8);
103 return($iVersion >= 20030210) ;
H A Dfckeditor.php102 $iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
103 return ($iVersion >= 5.5) ;
107 $iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
108 return ($iVersion >= 20030210) ;
/dports/devel/truc/truc_0.12.0/FCKeditor/
H A Dfckeditor.pl99 $iVersion = substr($sAgent,index($sAgent,'MSIE') + 5,3);
100 return($iVersion >= 5.5) ;
102 $iVersion = substr($sAgent,index($sAgent,'Gecko/') + 6,8);
103 return($iVersion >= 20030210) ;
H A Dfckeditor.php101 $iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
102 return ($iVersion >= 5.5) ;
106 $iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
107 return ($iVersion >= 20030210) ;
/dports/deskutils/coolreader/coolreader-cr3.2.55/thirdparty_unman/antiword/
H A Driscos.c189 int iVersion; in iGetRiscOsVersion() local
193 NULL, &iVersion); in iGetRiscOsVersion()
199 switch (iVersion) { in iGetRiscOsVersion()
219 if (iVersion >= 0xa9 && iVersion <= 0xaf) { in iGetRiscOsVersion()
/dports/textproc/antiword/antiword-0.37/
H A Driscos.c189 int iVersion; in iGetRiscOsVersion() local
193 NULL, &iVersion); in iGetRiscOsVersion()
199 switch (iVersion) { in iGetRiscOsVersion()
219 if (iVersion >= 0xa9 && iVersion <= 0xaf) { in iGetRiscOsVersion()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/
H A DPVRDatabase.cpp176 if (iVersion < 13) in UpdateTables()
179 if (iVersion < 20) in UpdateTables()
182 if (iVersion < 21) in UpdateTables()
185 if (iVersion < 22) in UpdateTables()
188 if (iVersion < 23) in UpdateTables()
191 if (iVersion < 24) in UpdateTables()
194 if (iVersion < 25) in UpdateTables()
197 if (iVersion < 26) in UpdateTables()
205 if (iVersion < 27) in UpdateTables()
208 if (iVersion < 28) in UpdateTables()
[all …]
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/RainLoop/Common/
H A DPdoAbstract.php397 * @param int $iVersion
401 protected function setVersion($sName, $iVersion) argument
411 $bResult = !!$oStmt->execute(array($sName.'_version', $iVersion));
420 $bResult = !!$oStmt->execute(array($sName.'_version', $iVersion));
557 foreach ($aData as $iVersion => $aQuery)
570 if ($iFromVersion < $iVersion && $oPdo)
598 $this->setVersion($sName, $iVersion);
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/RainLoop/Common/
H A DPdoAbstract.php397 * @param int $iVersion
401 protected function setVersion($sName, $iVersion) argument
411 $bResult = !!$oStmt->execute(array($sName.'_version', $iVersion));
420 $bResult = !!$oStmt->execute(array($sName.'_version', $iVersion));
557 foreach ($aData as $iVersion => $aQuery)
570 if ($iFromVersion < $iVersion && $oPdo)
598 $this->setVersion($sName, $iVersion);
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/openh264/src/codec/processing/src/common/
H A DWelsFrameWork.cpp47 EResult WelsCreateVpInterface (void** ppCtx, int iVersion) { in WelsCreateVpInterface() argument
48 if (iVersion & 0x8000) in WelsCreateVpInterface()
50 else if (iVersion & 0x7fff) in WelsCreateVpInterface()
56 EResult WelsDestroyVpInterface (void* pCtx, int iVersion) { in WelsDestroyVpInterface() argument
57 if (iVersion & 0x8000) in WelsDestroyVpInterface()
59 else if (iVersion & 0x7fff) in WelsDestroyVpInterface()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openh264/src/codec/processing/src/common/
H A DWelsFrameWork.cpp47 EResult WelsCreateVpInterface (void** ppCtx, int iVersion) { in WelsCreateVpInterface() argument
48 if (iVersion & 0x8000) in WelsCreateVpInterface()
50 else if (iVersion & 0x7fff) in WelsCreateVpInterface()
56 EResult WelsDestroyVpInterface (void* pCtx, int iVersion) { in WelsDestroyVpInterface() argument
57 if (iVersion & 0x8000) in WelsDestroyVpInterface()
59 else if (iVersion & 0x7fff) in WelsDestroyVpInterface()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openh264/src/codec/processing/src/common/
H A DWelsFrameWork.cpp47 EResult WelsCreateVpInterface (void** ppCtx, int iVersion) { in WelsCreateVpInterface() argument
48 if (iVersion & 0x8000) in WelsCreateVpInterface()
50 else if (iVersion & 0x7fff) in WelsCreateVpInterface()
56 EResult WelsDestroyVpInterface (void* pCtx, int iVersion) { in WelsDestroyVpInterface() argument
57 if (iVersion & 0x8000) in WelsDestroyVpInterface()
59 else if (iVersion & 0x7fff) in WelsDestroyVpInterface()
/dports/multimedia/openh264/openh264-2.1.1/codec/processing/src/common/
H A DWelsFrameWork.cpp47 EResult WelsCreateVpInterface (void** ppCtx, int iVersion) { in WelsCreateVpInterface() argument
48 if (iVersion & 0x8000) in WelsCreateVpInterface()
50 else if (iVersion & 0x7fff) in WelsCreateVpInterface()
56 EResult WelsDestroyVpInterface (void* pCtx, int iVersion) { in WelsDestroyVpInterface() argument
57 if (iVersion & 0x8000) in WelsDestroyVpInterface()
59 else if (iVersion & 0x7fff) in WelsDestroyVpInterface()

12345678910>>...41