Home
last modified time | relevance | path

Searched refs:sInput (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/dports/devel/xopcodecalc/XOpcodeCalc-0.03/gui_source/
H A Dmodevalidator.cpp33 QValidator::State ModeValidator::validate(QString &sInput, int &pos) const in validate() argument
39 if(!sInput.isEmpty()) in validate()
50 nValueU=sInput.toULong(&bSuccess,16); in validate()
52 nValueS=sInput.toULongLong(&bSuccess,16); in validate()
58 nValueS=sInput.toLong(&bSuccess,16); in validate()
60 nValueS=sInput.toLongLong(&bSuccess,10); in validate()
66 nValueU=sInput.toULong(&bSuccess,10); in validate()
68 nValueU=sInput.toULongLong(&bSuccess,10); in validate()
74 if(sInput=="-") in validate()
/dports/misc/openmvg/openMVG-2.0/src/openMVG/stl/
H A Dsplit_test.cpp18 const std::string sInput = ""; in TEST() local
21 EXPECT_FALSE( stl::split(sInput, sDelimiter, vec_str)); in TEST()
27 const std::string sInput = "A string"; in TEST() local
30 EXPECT_FALSE( stl::split(sInput, sDelimiter, vec_str)); in TEST()
36 const std::string sInput = "A string"; in TEST() local
39 EXPECT_TRUE( stl::split(sInput, sDelimiter, vec_str)); in TEST()
45 const std::string sInput = "A string useless"; in TEST() local
48 EXPECT_TRUE( stl::split(sInput, sDelimiter, vec_str)); in TEST()
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/hsl/
H A Dhslsettings.cpp58 sInput(nullptr), in Private()
73 DDoubleNumInput* sInput; member in Digikam::HSLSettings::Private
112 d->sInput->setDecimals(2); in HSLSettings()
113 d->sInput->setRange(-100.0, 100.0, 0.01); in HSLSettings()
114 d->sInput->setDefaultValue(0.0); in HSLSettings()
186 d->sInput->blockSignals(true); in slotHSChanged()
188 d->sInput->setValue(sat); in slotHSChanged()
191 d->sInput->blockSignals(false); in slotHSChanged()
228 prm.saturation = d->sInput->value(); in settings()
239 d->sInput->setValue(settings.saturation); in setSettings()
[all …]
/dports/sysutils/webjob/webjob-1.9.0/lib/perl/t/
H A DWebJob-TimeRoutines.t41 my (@aPairs, $sActualResult, $sDateTime, $sDhms, $sInput, $sSeconds);
173 my ($sInput, $sExpectedResult) = split(/:/, $sPair);
174 $sActualResult = SecondsToDuration($sInput);
186 my ($sExpectedResult, $sInput) = split(/:/, $sPair);
187 $sActualResult = DurationToSeconds($sInput);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/starmath/qa/cppunit/
H A Dtest_cursor.cxx70 OUString const sInput("a * b + c"); in testCopyPaste() local
71 auto xTree = SmParser().Parse(sInput); in testCopyPaste()
93 OUString const sInput("a * b + c"); in testCopySelectPaste() local
94 auto xTree = SmParser().Parse(sInput); in testCopySelectPaste()
120 OUString const sInput("a * b + c"); in testCutPaste() local
121 auto xTree = SmParser().Parse(sInput); in testCutPaste()
143 OUString const sInput("a * b + c"); in testCutSelectPaste() local
144 auto xTree = SmParser().Parse(sInput); in testCutSelectPaste()
H A Dtest_nodetotextvisitors.cxx464 OUString sInput = OUString::createFromAscii(formula); in ParseAndCheck() local
465 auto pNode = SmParser().ParseExpression(sInput); in ParseAndCheck()
507 OUString sInput, sExpected; in testBinomInBinHor() local
510 sInput += "binom a b + c"; in testBinomInBinHor()
511 auto pTree = SmParser().Parse(sInput); in testBinomInBinHor()
532 OUString sInput, sExpected; in testBinVerInUnary() local
535 sInput += "- 1"; in testBinVerInUnary()
536 auto pTree = SmParser().Parse(sInput); in testBinVerInUnary()
586 OUString sInput = "- 1"; in testUnaryInMixedNumberAsNumerator() local
587 auto pTree = SmParser().Parse(sInput); in testUnaryInMixedNumberAsNumerator()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/nunit24/NUnitFramework/framework/
H A DAssertionFailureMessage.cs520 static protected string ConvertWhitespace( string sInput ) in ConvertWhitespace() argument
522 if( null != sInput ) in ConvertWhitespace()
524 sInput = sInput.Replace( "\\", "\\\\" ); in ConvertWhitespace()
525 sInput = sInput.Replace( "\r", "\\r" ); in ConvertWhitespace()
526 sInput = sInput.Replace( "\n", "\\n" ); in ConvertWhitespace()
527 sInput = sInput.Replace( "\t", "\\t" ); in ConvertWhitespace()
529 return sInput; in ConvertWhitespace()
/dports/www/itop/web/core/oql/
H A Doqlexception.class.inc.php29 public function __construct($sIssue, $sInput, $iLine, $iCol, $sUnexpected, $aExpecting = null) argument
32 $this->m_sInput = $sInput;
40 $sMessage = "$sIssue - found '{$this->m_sUnexpected}' at $iCol in '$sInput'";
46 …$sMessage = "$sIssue - found '{$this->m_sUnexpected}' at $iCol in '$sInput', expecting $sExpectati…
103 static public function FindClosestString($sInput, $aDictionary) argument
113 $fDist = levenshtein($sInput, $sSuggestion);
H A Doqlinterpreter.class.inc.php30 public function __construct($sIssue, $sInput, OqlName $oName, $aExpecting = null) argument
32 parent::__construct($sIssue, $sInput, 0, $oName->GetPos(), $oName->GetValue(), $aExpecting);
37 public function __construct($sInput, OqlName $oName, $aExpecting = null) argument
39 parent::__construct('Unknown class', $sInput, $oName, $aExpecting);
/dports/games/bzflag-server/bzflag-2.4.22/src/common/
H A DWordFilter.cxx89 std::string sInput = input; in aggressiveFilter()
113 char c = tolower(sInput[counter]); in aggressiveFilter()
140 if (regexec(i->compiled, sInput.c_str(), 1, match, 0) == 0) in aggressiveFilter()
142 if ( (match[0].rm_eo < inputLength) && isalpha(sInput[match[0].rm_eo]) ) in aggressiveFilter()
145 if ( (match[0].rm_so > 0) && isalpha(sInput[match[0].rm_so - 1]) ) in aggressiveFilter()
149 appendUniqueChar(wordIndices, tolower(sInput[match[0].rm_eo])); in aggressiveFilter()
177 regCode = regexec(i->compiled, sInput.c_str(), 1, match, 0); in aggressiveFilter()
189 if ( (startOffset>1) && (isalpha(sInput[startOffset-1])) ) in aggressiveFilter()
230 if ( (endOffset<inputLength-1) && (isalpha(sInput[endOffset])) ) in aggressiveFilter()
280 … for (std::string::const_iterator position = sInput.begin(); position != sInput.end(); position++) in aggressiveFilter()
[all …]
/dports/games/bzflag/bzflag-2.4.22/src/common/
H A DWordFilter.cxx89 std::string sInput = input; in aggressiveFilter()
113 char c = tolower(sInput[counter]); in aggressiveFilter()
140 if (regexec(i->compiled, sInput.c_str(), 1, match, 0) == 0) in aggressiveFilter()
142 if ( (match[0].rm_eo < inputLength) && isalpha(sInput[match[0].rm_eo]) ) in aggressiveFilter()
145 if ( (match[0].rm_so > 0) && isalpha(sInput[match[0].rm_so - 1]) ) in aggressiveFilter()
149 appendUniqueChar(wordIndices, tolower(sInput[match[0].rm_eo])); in aggressiveFilter()
177 regCode = regexec(i->compiled, sInput.c_str(), 1, match, 0); in aggressiveFilter()
189 if ( (startOffset>1) && (isalpha(sInput[startOffset-1])) ) in aggressiveFilter()
230 if ( (endOffset<inputLength-1) && (isalpha(sInput[endOffset])) ) in aggressiveFilter()
280 … for (std::string::const_iterator position = sInput.begin(); position != sInput.end(); position++) in aggressiveFilter()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sax/qa/cppunit/
H A Dparser.cxx62 uno::Reference< io::XInputStream > createStream(const OString& sInput);
73 uno::Reference< io::XInputStream > ParserTest::createStream(const OString& sInput) in createStream() argument
77 …uno::Sequence< sal_Int8 > aSeq( reinterpret_cast<sal_Int8 const *>(sInput.getStr()), sInput.getLen… in createStream()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sax/qa/cppunit/
H A Dparser.cxx59 uno::Reference< io::XInputStream > createStream(const OString& sInput);
70 uno::Reference< io::XInputStream > ParserTest::createStream(const OString& sInput) in createStream() argument
74 …uno::Sequence< sal_Int8 > aSeq( reinterpret_cast<sal_Int8 const *>(sInput.getStr()), sInput.getLen… in createStream()
/dports/misc/p5-I18N-Charset/I18N-Charset-1.394/t/
H A Dutf8.t54 my $sInput = 'Adobe Zapf Ding Bats';
57 my $sActual = umu8_charset_name($sInput);
59 if (! is($sActual, $sExpect, $sInput))
65 $sInput = ' c p 1 0 0 7 9 ';
68 $sActual = umu8_charset_name($sInput);
70 if (! is($sActual, $sExpect, $sInput))
/dports/editors/libreoffice/libreoffice-7.2.6.2/sax/test/sax/
H A Dtestsax.cxx447 OUString sInput; in testSimple() local
449 sInput = "internal"; in testSimple()
455 source.sSystemId = sInput; in testSimple()
511 OUString sInput; in testNamespaces() local
514 sInput = "internal"; in testNamespaces()
520 source.sSystemId = sInput; in testNamespaces()
564 OUString sInput; in testEncoding() local
567 sInput = "internal"; in testEncoding()
573 source.sSystemId = sInput; in testEncoding()
601 OUString sInput = "testsax.xml"; in testFile() local
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sax/test/sax/
H A Dtestsax.cxx448 OUString sInput; in testSimple() local
450 sInput = "internal"; in testSimple()
456 source.sSystemId = sInput; in testSimple()
512 OUString sInput; in testNamespaces() local
515 sInput = "internal"; in testNamespaces()
521 source.sSystemId = sInput; in testNamespaces()
565 OUString sInput; in testEncoding() local
568 sInput = "internal"; in testEncoding()
574 source.sSystemId = sInput; in testEncoding()
602 OUString sInput = "testsax.xml"; in testFile() local
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/Formats/
H A DPwMemory2008Xml104.cs52 public override void Import(PwDatabase pwStorage, Stream sInput, in Import() argument
55 string str = Preprocess(sInput); in Import()
101 private static string Preprocess(Stream sInput) in Preprocess() argument
103 StreamReader sr = new StreamReader(sInput, Encoding.UTF8); in Preprocess()
H A DKeePassKdb1x.cs81 public override void Import(PwDatabase pwStorage, Stream sInput, in Import() argument
86 BinaryReader br = new BinaryReader(sInput); in Import()
87 byte[] pb = br.ReadBytes((int)sInput.Length); in Import()
H A DTurboPwsCsv5.cs51 public override void Import(PwDatabase pwStorage, Stream sInput, in Import() argument
54 StreamReader sr = new StreamReader(sInput, Encoding.Default); in Import()
57 sInput.Close(); in Import()
H A DGenericCsv.cs52 public override void Import(PwDatabase pwStorage, Stream sInput, in Import() argument
55 byte[] pb = MemUtil.Read(sInput); in Import()
/dports/misc/jbidwatcher/jbidwatcher-2.5.6/src/com/jbidwatcher/util/script/
H A DScripting.java24 private static FauxInputStream sInput; field in Scripting
59 public static void setInput(InputStream stream) { sInput.setInput(stream); } in setInput()
66 sInput = new FauxInputStream(); in initialize()
73 setInput(sInput); in initialize()
/dports/editors/libreoffice/libreoffice-7.2.6.2/starmath/qa/cppunit/
H A Dtest_nodetotextvisitors.cxx469 OUString sInput = OUString::createFromAscii(formula); in ParseAndCheck() local
470 auto pNode = SmParser5().ParseExpression(sInput); in ParseAndCheck()
510 OUString sInput, sExpected; in testBinomInBinHor() local
513 sInput += "binom a b + c"; in testBinomInBinHor()
514 auto pTree = SmParser5().Parse(sInput); in testBinomInBinHor()
535 OUString sInput, sExpected; in testBinVerInUnary() local
538 sInput += "- 1"; in testBinVerInUnary()
539 auto pTree = SmParser5().Parse(sInput); in testBinVerInUnary()
/dports/biology/canu/canu-2.2/src/meryl/src/meryl-simple/
H A Dmeryl-simple.C30 char *sInput = NULL; // input sequences in main() local
46 sInput = argv[++arg]; in main()
100 dnaSeqFile *seqFile = new dnaSeqFile(sInput, false); in main()
127 seqFile = new dnaSeqFile(sInput, false); in main()
/dports/devel/codeworker/CodeWorker4_5_3/
H A DGrfStringAsStandardInput.cpp41 std::string sInput = _pText->getValue(visibility); in executeInternal() local
42 CGStandardInputOutput theInput(sInput); in executeInternal()
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/
H A DFileFormatProvider.cs135 public virtual void Import(PwDatabase pwStorage, Stream sInput, in Import() argument
143 GxiImporter.Import(pwStorage.RootGroup, sInput, p, pwStorage, slLogger); in Import()

12345678910>>...12