Searched defs:expectedString (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Tools/TestWebKitAPI/
H A DJavaScriptTest.cpp37 JavaScriptCallbackContext(const char* expectedString) : didFinish(false), expectedString(expectedString), didMatchExpectedString(false) { } argument
40 const char* expectedString; member in struct:TestWebKitAPI::JavaScriptCallbackContext
60 context->didMatchExpectedString = JSStringIsEqualToUTF8CString(scriptString, context->expectedString);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DDoubleTest.java186 String expectedString) {
194 assertEquals(expectedString.toLowerCase(Locale.US), convertedString
432 String testString, expectedString;
433 testString = expectedString = "3.4e-" + i;
434 doTestCompareRawBits(testString, rawBitsFor3_4en324ToN1[324 - i], expectedString);
449 String testString, expectedString;
450 testString = expectedString = "1.2e" + i;
451 doTestCompareRawBits(testString, rawBitsFor1_2e0To309[i], expectedString);
764 String expectedString = "0x" + Long.toHexString(Double.doubleToLongBits(expected));
767 + ">.The expected result should be:<" + expectedString
185 doTestCompareRawBits(String originalDoubleString, long expectedRawBits, String expectedString) argument
[all...]
H A DFloatTest.java88 String expectedString) {
476 String expectedString = Integer.toHexString(Float.floatToIntBits(expected));
479 + ">.The expected result should be:<" + expectedString
525 String expectedString = Integer.toHexString(Float.floatToIntBits(expected));
528 + ">.The expected result should be:<" + expectedString
575 String expectedString = Integer.toHexString(Float.floatToIntBits(expected));
578 + ">.The expected result should be:<" + expectedString
625 String expectedString = Integer.toHexString(Float.floatToIntBits(expected));
628 + ">.The expected result should be:<" + expectedString
675 String expectedString
87 doTestCompareRawBits(String originalFloatString, int expectedRawBits, String expectedString) argument
[all...]
/external/icu4c/test/iotest/
H A Dstream.cpp230 const UChar* expectedString,
258 if (str != UnicodeString(expectedString)) {
259 log_err("Did not get expected results from \"%s\", expected \"%s\"\n", testString, expectedString);
227 testString( UnicodeString& str, const char* testString, const UChar* expectedString, int32_t expectedStatus) argument
/external/webkit/Source/WebCore/html/parser/
H A DHTMLTokenizer.cpp1665 inline bool HTMLTokenizer::temporaryBufferIs(const String& expectedString) argument
1667 return vectorEqualsString(m_temporaryBuffer, expectedString);
/external/icu4c/test/intltest/
H A Dbytestrietest.cpp766 const char *expectedString=data[i].s; local
767 int32_t stringLength=strlen(expectedString);
770 if(!USTRINGTRIE_MATCHES(trie.next(expectedString[j]))) {
793 result=trie.next(expectedString+partialLength,
801 next(expectedString+partialLength,
821 const char *expectedString=data[i].s; local
822 int32_t stringLength=strlen(expectedString);
823 if(!trie.next(expectedString, stringLength/2)) {
828 if(trie.next(expectedString+stringLength/2, stringLength+1-stringLength/2)) {
H A Ditrbnf.cpp1940 UnicodeString expectedString = UnicodeString(expectedWords, -1, US_INV).unescape(); local
1941 if (actualString != expectedString) {
1945 msg.append(expectedString);
H A Drbbiapts.cpp1184 void RBBIAPITest::doTest(UnicodeString& testString, int32_t start, int32_t gotoffset, int32_t expectedOffset, const char* expectedString){ argument
1186 UnicodeString expected=CharsToUnicodeString(expectedString);
H A Ducharstrietest.cpp824 UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape(); local
825 UChar32 c=expectedString[0];
826 UChar32 nextCp=expectedString.length()>1 ? expectedString[1] : 0;
838 c=expectedString.char32At(0);
840 nextCp=expectedString.length()>cLength ? expectedString.char32At(cLength) : 0;
860 UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape(); local
861 int32_t stringLength= (i&1) ? -1 : expectedString.length();
864 result=trie.next(expectedString
938 UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape(); local
993 UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape(); local
1034 UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape(); local
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DDatagramChannelTest.java1427 String expectedString) throws IOException {
1450 expectedString);
1468 InetSocketAddress address, String expectedString)
1474 assertEquals(new String(buf, 0, bufSize).trim(), expectedString);
1426 receiveByChannel(int bufSize, InetSocketAddress address, String expectedString) argument
1467 receiveByDatagramSocket(int bufSize, InetSocketAddress address, String expectedString) argument

Completed in 537 milliseconds