HomeSort by relevance Sort by last modified time
    Searched refs:testString (Results 51 - 75 of 92) sorted by null

1 23 4

  /cts/tests/tests/widget/src/android/widget/cts/
AutoCompleteTextViewTest.java 168 String testString = "TryToTest";
169 mAutoCompleteTextView.setText(testString);
177 String testString = "No";
178 mAutoCompleteTextView.setText(testString);
511 String testString = "";
514 testString = "8337777";
516 testString = "tes";
526 mInstrumentation.sendStringSync(testString);
535 testString = "84428";
537 testString = "that"
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
PrintStreamTest.java 566 String testString = "My Test String";
569 printStream.append(testString);
571 assertEquals(testString, out.toString());
579 String testString = "My Test String";
582 printStream.append(testString, 1, 3);
584 assertEquals(testString.substring(1, 3), out.toString());
PrintWriterTest.java 694 String testString = "My Test String";
697 printWriter.append(testString);
699 assertEquals(testString, out.toString());
708 String testString = "My Test String";
711 printWriter.append(testString, 1, 3);
713 assertEquals(testString.substring(1, 3), out.toString());
StreamTokenizerTest.java 48 String testString;
586 testString = s;
587 r = new Support_StringReader(testString);
  /external/chromium/third_party/icu/source/test/intltest/
rbbitst.cpp     [all...]
rbbiapts.cpp 51 UnicodeString testString="Testing word break iterators's clone() and equals()";
52 bi1->setText(testString);
53 bi2->setText(testString);
54 biequal->setText(testString);
426 UnicodeString testString="0123456789";
427 bi->setText(testString);
    [all...]
regextst.cpp 749 UnicodeString testString("This is test data");
750 RegexMatcher m(".*", testString, 0, status);
753 REGEX_ASSERT(m.regionEnd() == testString.length());
766 REGEX_ASSERT(m.regionEnd() == testString.length());
802 UnicodeString testString("aabb");
803 RegexMatcher m1(".*", testString, 0, status);
810 RegexMatcher m2("a*", testString, 0, status);
817 RegexMatcher m3(".*$", testString, 0, status);
855 UnicodeString testString("aaaaaaaaaaaaaaaaaaaaa");
856 RegexMatcher matcher("(a+)+b", testString, 0, status)
    [all...]
csdetest.cpp 142 void CharsetDetectionTest::checkEncoding(const UnicodeString &testString, const UnicodeString &encoding, const UnicodeString &id)
145 int32_t testLength = testString.length();
157 char *bytes = extractBytes(testString, codepage, byteLength);
205 if (testString.compare(decoded, dLength) != 0) {
210 if(testString[i] != decoded[i]) {
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
rbbiapts.cpp 51 UnicodeString testString="Testing word break iterators's clone() and equals()";
52 bi1->setText(testString);
53 bi2->setText(testString);
54 biequal->setText(testString);
413 UnicodeString testString="0123456789";
414 bi->setText(testString);
    [all...]
dcfmtest.cpp 202 UnicodeString testString(FALSE, testData, len);
222 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(?m)^(.*?)$"), testString, 0, status);
regextst.cpp 928 UnicodeString testString("This is test data");
929 RegexMatcher m(".*", testString, 0, status);
932 REGEX_ASSERT(m.regionEnd() == testString.length());
945 REGEX_ASSERT(m.regionEnd() == testString.length());
    [all...]
csdetest.cpp 145 void CharsetDetectionTest::checkEncoding(const UnicodeString &testString, const UnicodeString &encoding, const UnicodeString &id)
148 int32_t testLength = testString.length();
160 char *bytes = extractBytes(testString, codepage, byteLength);
208 if (testString.compare(decoded, dLength) != 0) {
213 if(testString[i] != decoded[i]) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
FloatTest.java 473 String testString;
474 testString = "3.4028234663852886e-" + i;
475 doTestCompareRawBits(testString, rawBitsFor3_4eN38To38[38 - i],
500 String testString;
501 testString = "3.4028234663852886e+" + i;
502 doTestCompareRawBits(testString, rawBitsFor3_4eN38To38[38 + i],
508 String testString;
509 testString = "-1.1754943508222875e-" + i;
510 doTestCompareRawBits(testString, rawBitsFor1_17eN38To38[38 - i],
535 String testString;
    [all...]
DoubleTest.java 564 String testString, expectedString;
565 testString = expectedString = "3.4e-" + i;
566 doTestCompareRawBits(testString, rawBitsFor3_4en324ToN1[324 - i], expectedString);
581 String testString, expectedString;
582 testString = expectedString = "1.2e" + i;
583 doTestCompareRawBits(testString, rawBitsFor1_2e0To309[i], expectedString);
    [all...]
  /libcore/luni/src/test/java/tests/SQLite/
FunctionContextTest.java 74 TestFCString testString = new TestFCString();
77 db.create_function("test", 1, testString);
349 public String testString = "TestString";
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventContainer.java 44 private CompareMethod(String name, String testString) {
46 mTestString = testString;
60 public String testString() {
  /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_super/d/
TSuper.d 67 .method public testString(Ljava/lang/String;)V
  /cts/tools/vm-tests/src/dot/junit/opcodes/invoke_super_range/d/
TSuper.d 67 .method public testString(Ljava/lang/String;)V
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 87 private static final String testString = "Hello World";
593 byte[] ba = new byte[testString.getBytes().length];
600 testString.equals(buf.trim()));
603 BufferedReader r = new BufferedReader(new InputStreamReader(i),testString.getBytes().length);
606 testString.equals(buf.trim()));
646 BufferedReader r = new BufferedReader(new InputStreamReader(helloWorld2),testString.getBytes().length);
648 testString.equals(r.readLine().trim()));
733 assertEquals(testString.getBytes().length,
    [all...]
  /libcore/luni/src/test/java/tests/sql/
ResultSetGetterTests.java 311 String testString = "HelloWorld";
316 stPrep.setBytes(1, testString.getBytes());
326 assertEquals(testString, helloTest);
359 String testString = "HelloWorld";
363 stPrep.setBytes(1, testString.getBytes());
373 assertEquals(testString, helloTest);
437 String testString = "HelloWorld";
442 stPrep.setBytes(1, testString.getBytes());
452 assertEquals(testString, helloTest);
486 String testString = "HelloWorld"
    [all...]
  /external/tinyxml/
xmltest.cpp 29 bool XmlTest (const char* testString, const char* expected, const char* found, bool noEcho = false)
38 printf (" %s\n", testString);
40 printf (" %s [%s][%s]\n", testString, expected, found);
50 bool XmlTest( const char* testString, int expected, int found, bool noEcho = false )
59 printf (" %s\n", testString);
61 printf (" %s [%d][%d]\n", testString, expected, found);
  /external/chromium/third_party/icu/source/test/cintltst/
cbiapts.c 617 UChar testString[TEST_STRING_LENGTH];
630 u_uastrncpy(testString, "ABC", TEST_STRING_LENGTH);
633 bi = ubrk_openRules(rules, -1, testString, -1, NULL, &status);
  /external/icu4c/test/cintltst/
cbiapts.c 619 UChar testString[TEST_STRING_LENGTH];
632 u_uastrncpy(testString, "ABC", TEST_STRING_LENGTH);
635 bi = ubrk_openRules(rules, -1, testString, -1, NULL, &status);
  /packages/apps/Email/tests/src/com/android/email/mail/
AddressUnitTests.java 81 String testString = "xyza\0\"";
83 int len = testString.length();
87 String prefix = testString.substring(0, i);

Completed in 1914 milliseconds

1 23 4