Home
last modified time | relevance | path

Searched refs:expectedName (Results 1 – 10 of 10) sorted by relevance

/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java125 protected String expectedName; field in TypeData.TypeName
132 expectedName = null; in TypeName()
203 if (update(cp, expectedName, typeName)) in setType()
204 expectedName = typeName; in setType()
215 name = this.expectedName; in evalExpectedType()
220 if (update(cp, name, tn.expectedName)) in evalExpectedType()
221 name = tn.expectedName; in evalExpectedType()
230 tn.expectedName = name; in evalExpectedType()
293 String en = expectedName; in getExpected()
303 String en = expectedName; in toString()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
DInternetDomainNameTest.java356 String expectedName = Ascii.toLowerCase(inputName); in testToString() local
357 expectedName = expectedName.replaceAll("[\u3002\uFF0E\uFF61]", "."); in testToString()
359 if (expectedName.endsWith(".")) { in testToString()
360 expectedName = expectedName.substring(0, expectedName.length() - 1); in testToString()
363 assertEquals(expectedName, domain.toString()); in testToString()
/external/guava/guava-tests/test/com/google/common/net/
DInternetDomainNameTest.java358 String expectedName = Ascii.toLowerCase(inputName); in testToString() local
359 expectedName = expectedName.replaceAll("[\u3002\uFF0E\uFF61]", "."); in testToString()
361 if (expectedName.endsWith(".")) { in testToString()
362 expectedName = expectedName.substring(0, expectedName.length() - 1); in testToString()
365 assertEquals(expectedName, domain.toString()); in testToString()
/external/junit-params/src/test/java/junitparams/naming/
DNamingStrategyIsUsedByRunnerTest.java43 private static Description getChildDescriptionByName(Description parent, String expectedName) { in getChildDescriptionByName() argument
45 if (expectedName.equals(childDescription.getDisplayName())) { in getChildDescriptionByName()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
DImageViewHasDrawableMatcher.java30 String expectedName = nameOrUnset(resourceLoader, expectedResourceId); in matchesSafely() local
31 …ResourceId + " (" + actualName + ")] to equal [" + expectedResourceId + " (" + expectedName + ")]"; in matchesSafely()
/external/skia/tests/
DSkDOMTest.cpp16 const SkDOM::Node* node, const char* expectedName, in check_node() argument
20 REPORTER_ASSERT(r, !strcmp(dom.getName(node), expectedName)); in check_node()
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DLightCodeInsightParsingTestCase.java175 String expectedName = targetDataName + "." + language.getID() + ".txt"; in doCheckResult() local
176 …doCheckResult(myFullDataPath, expectedName, toParseTreeText(root, skipSpaces, printRanges).trim()); in doCheckResult()
/external/icu/icu4c/source/test/intltest/
Dloctest.cpp760 UnicodeString expectedName; in doTestDisplayNames() local
778 expectedName = dataTable[compareIndex + 4][i]; in doTestDisplayNames()
779 if (expectedName.length() == 0) in doTestDisplayNames()
780 expectedName = dataTable[DNAME_EN][i]; in doTestDisplayNames()
790 if (testName != expectedName) in doTestDisplayNames()
791 …) of (" + UnicodeString(testLocale.getName()) + ") got " + testName + " expected " + expectedName); in doTestDisplayNames()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c889 UChar* expectedName = 0; in doTestDisplayNames() local
995 expectedName=dataTable[compareIndex + 4][i]; in doTestDisplayNames()
996 if(u_strlen(expectedName) == 0) in doTestDisplayNames()
997 expectedName=dataTable[DNAME_EN][i]; in doTestDisplayNames()
1015 if(0 != u_strcmp(testName, expectedName)) { in doTestDisplayNames()
1016 …layLocale=%s (Are you missing data?)\n", austrdup(testName), austrdup(expectedName), displayLocale… in doTestDisplayNames()
/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceQueryTestCase.cpp615 std::ostringstream expectedName; in validateSingleVariable() local
617 expectedName << firstComponent.getInterfaceBlock()->interfaceName; in validateSingleVariable()
619 expectedName << "[0]"; in validateSingleVariable()
622 if (blockName != expectedName.str()) in validateSingleVariable()
624 …m_testCtx.getLog() << tcu::TestLog::Message << "\tError, expected " << expectedName.str() << tcu::… in validateSingleVariable()