HomeSort by relevance Sort by last modified time
    Searched full:teststring (Results 176 - 200 of 290) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 308 String testString = "dacaacaacaaddaaacaacaaddd";
311 Matcher mat = pat.matcher(testString);
327 String testString = "cccabbabbabbabbabb";
329 Matcher mat = pat.matcher(testString);
341 testString = "aaaa123456789045";
344 Matcher mat2 = pat2.matcher(testString);
348 assertEquals(testString.substring(start, start + length), mat2
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 287 String testString = "blah";
289 stream.write(testString.getBytes());
295 assertTrue(tmpFileContents.contains(testString));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
FloatTest.java 305 String testString;
306 testString = "3.4028234663852886e-" + i;
307 doTestCompareRawBits(testString, rawBitsFor3_4eN38To38[38 - i],
332 String testString;
333 testString = "3.4028234663852886e+" + i;
334 doTestCompareRawBits(testString, rawBitsFor3_4eN38To38[38 + i],
340 String testString;
341 testString = "-1.1754943508222875e-" + i;
342 doTestCompareRawBits(testString, rawBitsFor1_17eN38To38[38 - i],
367 String testString;
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 269 String testString = "HelloWorld";
274 stPrep.setBytes(1, testString.getBytes());
283 assertEquals(testString, helloTest);
302 String testString = "HelloWorld";
306 stPrep.setBytes(1, testString.getBytes());
315 assertEquals(testString, helloTest);
351 String testString = "HelloWorld";
356 stPrep.setBytes(1, testString.getBytes());
365 assertEquals(testString, helloTest);
384 String testString = "HelloWorld"
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ReadableUriExtraToClipDataTest.java 43 public static final String TEST_INPUT = "testString";
IntentTest.java 251 expected.add("testString");
434 final String expected = "testString";
441 final CharSequence expected = "testString";
562 expected.add("testString");
680 + "extras(Stest=testString!btestbyte=1!"
690 assertEquals("testString", mIntent.getStringExtra("test"));
820 String stringValue = "testString";
    [all...]
  /external/icu/icu4c/source/test/intltest/
utxttest.cpp 82 // being carried out in another function, TestString().
87 TestString("abcd\\U00010001xyz");
88 TestString("");
91 TestString("\\U00010001");
92 TestString("abc\\U00010001");
93 TestString("\\U00010001abc");
106 TestString(s);
117 TestString(s);
151 TestString(s);
156 // TestString() Run a suite of UText tests on a string
    [all...]
rbbiapts.cpp 55 UnicodeString testString="Testing word break iterators's clone() and equals()";
56 bi1->setText(testString);
57 bi2->setText(testString);
58 biequal->setText(testString);
421 UnicodeString testString="0123456789";
422 bi->setText(testString);
    [all...]
rbbitst.cpp 739 UnicodeString testString("boo.");
746 wb->setText(testString);
    [all...]
csdetest.cpp 157 void CharsetDetectionTest::checkEncoding(const UnicodeString &testString, const UnicodeString &encoding, const UnicodeString &id)
160 int32_t testLength = testString.length();
172 char *bytes = extractBytes(testString, codepage, byteLength);
220 if (testString.compare(decoded, dLength) != 0) {
225 if(testString[i] != decoded[i]) {
    [all...]
tsmthred.cpp 185 name = "TestString";
187 TestString();
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PrintStreamTest.java 576 String testString = "My Test String";
579 printStream.append(testString);
581 assertEquals(testString, out.toString());
589 String testString = "My Test String";
592 printStream.append(testString, 1, 3);
594 assertEquals(testString.substring(1, 3), out.toString());
PrintWriterTest.java 695 String testString = "My Test String";
698 printWriter.append(testString);
700 assertEquals(testString, out.toString());
709 String testString = "My Test String";
712 printWriter.append(testString, 1, 3);
714 assertEquals(testString.substring(1, 3), out.toString());
StreamTokenizerTest.java 36 String testString;
438 testString = s;
439 r = new Support_StringReader(testString);
  /external/chromium_org/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);
418 UnicodeString testString="0123456789";
419 bi->setText(testString);
    [all...]
utxttest.cpp 82 // being carried out in another function, TestString().
87 TestString("abcd\\U00010001xyz");
88 TestString("");
91 TestString("\\U00010001");
92 TestString("abc\\U00010001");
93 TestString("\\U00010001abc");
106 TestString(s);
117 TestString(s);
151 TestString(s);
156 // TestString() Run a suite of UText tests on a string
    [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]) {
tsmthred.cpp 179 name = "TestString";
181 TestString();
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 293 String testString = "I love unicode \u1234\u5678 characters";
294 LiteralByteString unicode = new LiteralByteString(testString.getBytes(UTF_8));
296 assertEquals(classUnderTest + " unicode must match", testString, roundTripString);
  /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);
  /cts/tests/tests/database/src/android/database/cts/
AbstractWindowedCursorTest.java 29 private static final String TEST_STRING = "TESTSTRING";
  /external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
JsoMapTest.java 197 public void testString() throws Exception {
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
ios_plist_writer_unittest.py 134 def testString(self):
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatterTest.java 76 String retValue = "testString";

Completed in 1410 milliseconds

1 2 3 4 5 6 78 91011>>