Home
last modified time | relevance | path

Searched refs:iMaxLength (Results 1 – 25 of 247) sorted by relevance

12345678910

/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fgas/crt/
H A Dfgas_stream.cpp519 ASSERT(pStr && iMaxLength > 0); in ReadString()
628 ASSERT(pStr && iMaxLength > 0); in ReadString()
629 iMaxLength = ReadData((uint8_t*)pStr, iMaxLength * 2) / 2; in ReadString()
630 if (iMaxLength <= 0) { in ReadString()
758 ASSERT(pStr && iMaxLength > 0); in ReadString()
759 iMaxLength = ReadData((uint8_t*)pStr, iMaxLength * 2) / 2; in ReadString()
760 if (iMaxLength <= 0) { in ReadString()
890 ASSERT(pStr && iMaxLength > 0); in ReadString()
1087 iMaxLength = iLen / 2; in ReadString()
1121 iMaxLength = 0; in ReadString()
[all …]
H A Dfgas_stream.h59 int32_t iMaxLength,
/dports/security/xorsearch/xorsearch-1.11.1/
H A DXORSearch.c654 iMaxPrint = iMaxLength; in PrintFinds()
665 if (iMaxLength > 0 && --iMaxPrint == 0) in PrintFinds()
899 …for (iIter = 0; iIter < iMaxLength && pucFoundCharM + 0x40 + iIter <= pucLastByteInBuffer; iIter++) in SearchForPEFile()
1473 int iMaxLength; in main() local
1535 if (iMaxLength == -1) in main()
1538 iMaxLength = 38; in main()
1540 iMaxLength = 50; in main()
1715 … iFound = SearchForPEFile((unsigned char *)pBuffer, otFileSize, OPR_XOR, 0, ucOPRIter, iMaxLength); in main()
1750 … iFound = SearchForPEFile((unsigned char *)pBuffer, otFileSize, OPR_ROL, 0, ucOPRIter, iMaxLength); in main()
1784 … iFound = SearchForPEFile((unsigned char *)pBuffer, otFileSize, OPR_ROT, 0, ucOPRIter, iMaxLength); in main()
[all …]
/dports/www/limesurvey/limesurvey/assets/packages/adminpanel/src/components/
H A Dparameter-popup.vue37 _ellipsize(text, iMaxLength, fPosition, sEllipsis){
44 if(iStrLen>iMaxLength){
45 const sBegin = cleanString.substring(0, Math.floor(iMaxLength * fPosition));
46 const sEnd = cleanString.substring(iStrLen-(iMaxLength-sBegin.length),iStrLen);
/dports/www/limesurvey/limesurvey/assets/packages/panelintegration/src/components/
H A Dparameter-popup.vue34 _ellipsize(text, iMaxLength, fPosition, sEllipsis){
41 if(iStrLen>iMaxLength){
42 const sBegin = cleanString.substring(0, Math.floor(iMaxLength * fPosition));
43 const sEnd = cleanString.substring(iStrLen-(iMaxLength-sBegin.length),iStrLen);
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/parser/
H A Dxfa_basic_imp.cpp546 int32_t iMaxLength, in ReadString() argument
549 iMaxLength = std::min(iMaxLength, m_wsBuffer.GetLength() - m_iPosition); in ReadString()
550 if (iMaxLength == 0) in ReadString()
553 FXSYS_wcsncpy(pStr, m_wsBuffer.c_str() + m_iPosition, iMaxLength); in ReadString()
554 m_iPosition += iMaxLength; in ReadString()
556 return iMaxLength; in ReadString()
H A Dxfa_basic_imp.h38 int32_t iMaxLength,
/dports/games/openclonk/openclonk-release-8.1-src/src/lib/
H A DStdCompiler.cpp76 void StdCompilerBinWrite::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
139 void StdCompilerBinRead::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
149 else if (pPos > szString + iMaxLength) in String()
308 void StdCompilerINIWrite::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
310 StringN(szString, strnlen(szString, iMaxLength), eType); in String()
661 void StdCompilerINIRead::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
664 StdBuf Buf = ReadString(iMaxLength, eType, true); in String()
666 SCopy(getBufPtr<char>(Buf), szString, iMaxLength); in String()
H A DStdCompiler.h144 virtual void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) = 0;
432 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override { }
464 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
505 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
584 void StringN(const char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped);
585 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
658 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
H A DStdAdaptors.h177 char *szString; int iMaxLength; StdCompiler::RawCompileType eRawType; member
178 …StdStringAdapt(char *szString, int iMaxLength, StdCompiler::RawCompileType eRawType = StdCompiler:…
179 : szString(szString), iMaxLength(iMaxLength), eRawType(eRawType) { } in szString()
182 pComp->String(szString, iMaxLength, eRawType); in CompileFunc()
185 …inline StdStringAdapt &operator = (const char *szDefault) { SCopy(szDefault, szString, iMaxLength)…
187 inline StdStringAdapt mkStringAdapt(char *szString, int iMaxLength, StdCompiler::RawCompileType eRa…
188 { return StdStringAdapt(szString, iMaxLength, eRawType); }
/dports/mail/nextcloud-mail/mail/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Parsing/
H A DParserState.php171 public function consumeExpression($mExpression, $iMaxLength = null) { argument
173 $sInput = $iMaxLength !== null ? $this->peek($iMaxLength) : $this->inputLeft();
/dports/www/moodle310/moodle/lib/php-css-parser/Parsing/
H A DParserState.php171 public function consumeExpression($mExpression, $iMaxLength = null) { argument
173 $sInput = $iMaxLength !== null ? $this->peek($iMaxLength) : $this->inputLeft();
/dports/www/moodle311/moodle/lib/php-css-parser/Parsing/
H A DParserState.php171 public function consumeExpression($mExpression, $iMaxLength = null) { argument
173 $sInput = $iMaxLength !== null ? $this->peek($iMaxLength) : $this->inputLeft();
/dports/www/moodle39/moodle/lib/php-css-parser/Parsing/
H A DParserState.php171 public function consumeExpression($mExpression, $iMaxLength = null) { argument
173 $sInput = $iMaxLength !== null ? $this->peek($iMaxLength) : $this->inputLeft();
/dports/games/openclonk/openclonk-release-8.1-src/src/platform/
H A DStdRegistry.h80 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
144 void String(char *szString, size_t iMaxLength, RawCompileType eType = RCT_Escaped) override;
H A DStdRegistry.cpp359 void StdCompilerConfigWrite::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
585 void StdCompilerConfigRead::String(char *szString, size_t iMaxLength, RawCompileType eType) in String() argument
589 SCopy(s.c_str(), szString, iMaxLength); in String()
/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/src/libkst/
H A Devents.h54 int iMaxLength; member
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Duastrfnc.h22 …NED WCHAR *ualstrcpynW(UNALIGNED WCHAR *lpString1,UNALIGNED const WCHAR *lpString2,int iMaxLength);
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Duastrfnc.h22 …NED WCHAR *ualstrcpynW(UNALIGNED WCHAR *lpString1,UNALIGNED const WCHAR *lpString2,int iMaxLength);
/dports/lang/perl5.30/perl-5.30.3/symbian/
H A DPerlUi.h100 TInt iMaxLength; variable
/dports/lang/perl5.32/perl-5.32.1/symbian/
H A DPerlUi.h100 TInt iMaxLength; variable
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Doptions.cpp263 thisOpt.iMaxLength = iMaxLengthIn; in add()
264 …thisOpt.sDefault = thisOpt.iMaxLength > 0 ? sDefaultIn.substr( 0, thisOpt.iMaxLength ) : sDefaultI… in add()
727 return iMaxLength; in getMaxLength()
747 … .width( iMaxLength > 80 ? 80 : iMaxLength < iMenuTextLength ? iMenuTextLength : iMaxLength + 1 ) in setNext()
749 .max_length( iMaxLength ) in setNext()
849 sSet = iMaxLength > 0 ? sSetIn.substr( 0, iMaxLength ) : sSetIn; in setValue()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Doptions.cpp263 thisOpt.iMaxLength = iMaxLengthIn; in add()
264 …thisOpt.sDefault = thisOpt.iMaxLength > 0 ? sDefaultIn.substr( 0, thisOpt.iMaxLength ) : sDefaultI… in add()
727 return iMaxLength; in getMaxLength()
747 … .width( iMaxLength > 80 ? 80 : iMaxLength < iMenuTextLength ? iMenuTextLength : iMaxLength + 1 ) in setNext()
749 .max_length( iMaxLength ) in setNext()
849 sSet = iMaxLength > 0 ? sSetIn.substr( 0, iMaxLength ) : sSetIn; in setValue()
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/public.sdk/source/vst/aaxwrapper/
H A Daaxwrapper_parameters.h119 int32_t iMaxLength) const SMTG_OVERRIDE;
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vst3sdk/public.sdk/source/vst/aaxwrapper/
H A Daaxwrapper_parameters.h119 int32_t iMaxLength) const SMTG_OVERRIDE;

12345678910