Home
last modified time | relevance | path

Searched defs:inputString (Results 1 – 25 of 833) sorted by relevance

12345678910>>...34

/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/test/java/com/servingxml/components/flatfile/scanner/bytes/
H A DByteRecordInputTest.java50 String inputString="JANE^ENGL^C-~MATH^A+|1972^BLUE^CHICAGO^IL~ATLANTA^GA"; in testStudents() local
69 String inputString="12|2007-02-02|DocType|} " in testInvoice() local
113 String inputString="{a0 b0{a1 b1{a2 b2} {c2 d2}}}"; in testNested() local
131 String inputString="JANE^ENGL^C-~MATH^A+"; in testNoSegmentDelimiters() local
147 String inputString="{a}{b}{c}{d}"; in testRepeatingBracketed() local
163 String inputString="{{a}{b}{c}{d}}"; in testWrappedRepeatingBracketed() local
182 String inputString="{{a}{b}{c}{d}}"; in testSegmentDelimiter() local
200 String inputString = in testTransaction() local
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/test/java/com/servingxml/components/flatfile/scanner/characters/
H A DCharRecordInputTest.java51 String inputString="JANE^ENGL^C-~MATH^A+|1972^BLUE^CHICAGO^IL~ATLANTA^GA"; in xtestStudents() local
70 String inputString="12|2007-02-02|DocType|} " in xtestInvoice() local
114 String inputString="{a0 b0{a1 b1{a2 b2} {c2 d2}}}"; in xtestNested() local
132 String inputString="JANE^ENGL^C-~MATH^A+"; in xtestNoSegmentDelimiters() local
148 String inputString="{a}{b}{c}{d}"; in xtestRepeatingBracketed() local
164 String inputString="{{a}{b}{c}{d}}"; in xtestWrappedRepeatingBracketed() local
183 String inputString="{{a}{b}{c}{d}}"; in xtestSegmentDelimiter() local
201 String inputString = in testTransaction() local
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/test/java/com/servingxml/components/string/
H A DConvertToDateTimeTest.java41 String inputString = "03/25/2005 1:50:00"; in testConvertToDateTime() local
52 String inputString = "03/25/2005 11:50:00"; in testConvertToDateTime2() local
63 String inputString = "03/25/2005 11:50:00"; in testConvertToDateTime3() local
77 String inputString = "03/25/2005 11:50:00"; in testConvertToDateTime4() local
91 String inputString = "03/25/2005 11:50:00"; in testConvertToDateTime5() local
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/test/unittests/front_end/platform/
H A DStringUtilities_test.ts13 const inputString = 'My string with a single quote \' in the middle'; constant
21 const inputString = 'Just a boring string'; constant
40 for (const [inputString, encodedString] of fixtures) { constant
49 const inputString = '111111F1111111F11111111F'; constant
57 const inputString = `1234 constant
93 const inputString = 'look at this!'; constant
99 const inputString = 'a b c'; constant
107 const inputString = 'abc'; constant
126 const inputString = charsThatShouldBeEscaped.join(''); constant
135 const inputString = '\nhello world\t\r'; constant
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Memory/tests/Base64/
H A DBase64DecoderUnitTests.cs81 …public void BasicDecodingWithFinalBlockFalseKnownInputNeedMoreData(string inputString, int expecte… in BasicDecodingWithFinalBlockFalseKnownInputNeedMoreData()
97 …public void BasicDecodingWithFinalBlockFalseKnownInputInvalid(string inputString, int expectedCons… in BasicDecodingWithFinalBlockFalseKnownInputInvalid()
114 …public void BasicDecodingWithFinalBlockTrueKnownInputInvalid(string inputString, int expectedConsu… in BasicDecodingWithFinalBlockTrueKnownInputInvalid()
132 …public void BasicDecodingWithFinalBlockTrueKnownInputDone(string inputString, int expectedConsumed… in BasicDecodingWithFinalBlockTrueKnownInputDone()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/src/basic/src/
H A DSequenceStatisticalOptions.C347 std::string inputString = (*m_optionsMap)[m_option_initialDiscardedPortions].as<std::string>(); in getOptionValues() local
377 std::string inputString = (*m_optionsMap)[m_option_bmm_lengths].as<std::string>(); in getOptionValues() local
442 std::string inputString = (*m_optionsMap)[m_option_psdAtZero_numBlocks].as<std::string>(); in getOptionValues() local
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/psy/psysh/src/Input/
H A DSilentInput.php23 private $inputString; variable in Psy\\Input\\SilentInput
30 public function __construct($inputString)
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Framework/tests/
H A DStringCastTest.cpp12 auto inputString = TEST_STRING_ANSI; in StringCastTest_Execute() local
17 auto inputString = TEST_STRING_WIDE; in StringCastTest_Execute() local
/dports/www/firefox-legacy/firefox-52.8.0esr/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
47 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
75 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
126 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
166 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
H A DTestStringStream.cpp21 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStream() local
34 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStreamClone() local
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/tests/System/
H A DTimeSpanTests.netcoreapp.cs116 … public static void Parse_Span(string inputString, IFormatProvider provider, TimeSpan expected) in Parse_Span()
139 …public static void Parse_Span_Invalid(string inputString, IFormatProvider provider, Type exception… in Parse_Span_Invalid()
153 … public static void ParseExact_Span_Valid(string inputString, string format, TimeSpan expected) in ParseExact_Span_Valid()
187 …public static void ParseExactTest_Span_Invalid(string inputString, string format, Type exceptionTy… in ParseExactTest_Span_Invalid()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/sun/nio/cs/
H A DSurrogateTestEUCTW.java42 private static final String testRootDir
84 // Next: test round-trip fidelity in encodeTest()
/dports/lang/spidermonkey78/firefox-78.9.0/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
85 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in NS_IMPL_ISUPPORTS() local
108 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
156 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
198 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
H A DTestStringStream.cpp20 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStream() local
32 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStreamClone() local
/dports/lang/spidermonkey60/firefox-60.9.0/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
95 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in NS_IMPL_ISUPPORTS() local
118 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
166 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
208 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
H A DTestStringStream.cpp21 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStream() local
34 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TestStringStreamClone() local
/dports/mail/thunderbird/thunderbird-91.8.0/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
85 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in NS_IMPL_ISUPPORTS() local
108 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
156 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
198 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
/dports/www/firefox/firefox-99.0/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
85 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in NS_IMPL_ISUPPORTS() local
108 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
156 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
198 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
/dports/www/firefox-esr/firefox-91.8.0/xpcom/tests/gtest/
H A DTestCloneInputStream.cpp29 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
85 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in NS_IMPL_ISUPPORTS() local
108 nsDependentCSubstring inputString(inputData.Elements(), inputData.Length()); in TEST() local
156 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
198 nsCString inputString(inputData.Elements(), inputData.Length()); in TEST() local
/dports/net/pear-SOAP/SOAP-0.14.0/example/
H A Dexample_server.php95 function echoStringSimple($inputString)
101 function echoString($inputString)
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/core/
H A Dutilities.h89 T lexicalCast(const std::string& inputString) in lexicalCast()
103 T lexicalCast(const std::string& inputString, bool& ok) in lexicalCast()
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/core/
H A Dutilities.h89 T lexicalCast(const std::string& inputString) in lexicalCast()
103 T lexicalCast(const std::string& inputString, bool& ok) in lexicalCast()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/nio/cs/
H A DSurrogateGB18030Test.java42 String inputString = "\uD800\uDC00"; in main() local
84 private void encodeTest(String inputString, byte[] expectedBytes) in encodeTest()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/nio/cs/
H A DSurrogateGB18030Test.java42 String inputString = "\uD800\uDC00"; in main() local
84 private void encodeTest(String inputString, byte[] expectedBytes) in encodeTest()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/nio/cs/
H A DSurrogateGB18030Test.java42 String inputString = "\uD800\uDC00"; in main() local
84 private void encodeTest(String inputString, byte[] expectedBytes) in encodeTest()

12345678910>>...34