Home
last modified time | relevance | path

Searched refs:stringTwo (Results 1 – 14 of 14) sorted by relevance

/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringComparisonOperators/
H A DStringComparisonOperators.ino15 String stringOne, stringTwo;
26 stringTwo = String("that");
39 if (stringOne != stringTwo) {
45 stringTwo = "this";
46 if (stringOne != stringTwo) {
50 if (stringOne.equals(stringTwo)) {
74 stringTwo = "1";
75 if (stringOne >= stringTwo) {
103 stringTwo = "Cucuracha";
116 stringTwo = "Sensor: ";
[all …]
/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringAppendOperator/
H A DStringAppendOperator.ino15 String stringOne, stringTwo;
25 stringTwo = String("value");
35 stringOne += stringTwo;
60 stringTwo = "The millis(): ";
67 stringTwo.concat(millis());
68 …Serial.println(stringTwo); // prints "The millis(): 43534" or whatever the value of the millis() is
/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringCaseChanges/
H A DStringCaseChanges.ino35 String stringTwo = "</BODY></HTML>";
36 Serial.println(stringTwo);
37 stringTwo.toLowerCase();
38 Serial.println(stringTwo);
/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringReplace/
H A DStringReplace.ino32 String stringTwo = stringOne;
34 stringTwo.replace("<", "</");
38 Serial.println("Modified string: " + stringTwo);
/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringAdditionOperator/
H A DStringAdditionOperator.ino17 String stringOne, stringTwo, stringThree;
27 stringTwo = String("this string");
51 stringThree = stringOne + stringTwo;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Services/Test/System.Web.Services.Description/
H A DServiceDescriptionReflectorTest.cs357 public string stringTwo; field in MonoTests.System.Web.Services.Description.ServiceDescriptionReflectorTest.Bug79807Item
363 public string stringTwo; field in MonoTests.System.Web.Services.Description.ServiceDescriptionReflectorTest.Bug79807AnotherItem
376 arr [i].stringTwo = "two"; in Method1()
387 arr [i].stringTwo = "two"; in Method2()
/dports/devel/arduino-core/Arduino-b439a77/build/shared/examples/08.Strings/StringConstructors/
H A DStringConstructors.ino37 String stringTwo = String("This is a string");
38 Serial.println(stringTwo); // prints "This is a string"
41 stringOne = String(stringTwo + " with more");
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.expressions/src/org/eclipse/core/internal/expressions/util/
H A DToStringSorter.java36 public boolean compare(String stringOne, String stringTwo) { in compare() argument
37 return stringOne.compareTo(stringTwo) < 0; in compare()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/util/
H A DToStringSorter.java27 public boolean compare(String stringOne, String stringTwo) { in compare() argument
28 return stringOne.compareTo(stringTwo) < 0; in compare()
/dports/games/galaxyhack/galaxyhack/src/
H A DGenWindow.cpp462 GenWindow::GenWindow(WindowChoice iType, const string& stringOne, const string& stringTwo, int iPar… in GenWindow() argument
465 hWindow = new DeleteBox(stringOne, stringTwo, iParentID); in GenWindow()
469 hWindow = new CopyBox(stringOne, stringTwo, iParentID); in GenWindow()
H A DGenWindow.h45 GenWindow(WindowChoice iType, const string& stringOne, const string& stringTwo, int iParentID);
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/fm2js/
H A Dxfa_fm2jscontext.cpp3338 CFX_ByteString stringTwo; in At() local
3339 ValueToUTF8String(argTwo.get(), stringTwo); in At()
3340 if (stringTwo.IsEmpty()) { in At()
3347 FX_STRSIZE iPosition = stringOne.Find(stringTwo.AsStringC()); in At()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/fxjs/xfa/
H A Dcfxjse_formcalc_context.cpp3557 ByteString stringTwo = ValueToUTF8String(argTwo.get()); in At() local
3558 if (stringTwo.IsEmpty()) { in At()
3564 auto pos = stringOne.Find(stringTwo.AsStringView()); in At()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/fxjs/xfa/
H A Dcfxjse_formcalc_context.cpp3933 ByteString stringTwo = ValueToUTF8String(pThis, argTwo.get()); in At() local
3934 if (stringTwo.IsEmpty()) { in At()
3940 auto pos = stringOne.Find(stringTwo.AsStringView()); in At()