HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 251 - 275 of 14177) sorted by null

<<11121314151617181920>>

  /external/compiler-rt/test/builtins/Unit/
floatunssidfvfp_test.c 25 double actual = __floatunssidfvfp(a); local
27 if (actual != expected)
29 a, actual, expected);
30 return actual != expected;
floatunssisfvfp_test.c 24 float actual = __floatunssisfvfp(a); local
26 if (actual != expected)
28 a, actual, expected);
29 return actual != expected;
negdf2vfp_test.c 24 double actual = __negdf2vfp(a); local
26 if (actual != expected)
28 a, actual, expected);
29 return actual != expected;
negsf2vfp_test.c 25 float actual = __negsf2vfp(a); local
27 if (actual != expected)
29 a, actual, expected);
30 return actual != expected;
truncdfsf2vfp_test.c 25 float actual = __truncdfsf2vfp(a); local
27 if (actual != expected)
29 a, actual, expected);
30 return actual != expected;
  /external/curl/tests/data/
test509 26 initialization with memory callbacks and actual usage
  /external/droiddriver/src/io/appium/droiddriver/finders/
Predicates.java 176 Boolean actual = element.get(attribute);
177 return actual != null && actual;
195 Boolean actual = element.get(attribute);
196 return actual == null || !actual;
215 Object actual = element.get(attribute);
216 return actual == expected || (actual != null && actual.equals(expected))
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/
DateFormatProviderICU.java 45 ULocale actual = ICULocaleServiceProvider.toULocaleNoSpecialVariant(locale); local
47 icuDfmt = com.ibm.icu.text.DateFormat.getTimeInstance(tstyle, actual);
49 icuDfmt = com.ibm.icu.text.DateFormat.getDateInstance(dstyle, actual);
51 icuDfmt = com.ibm.icu.text.DateFormat.getDateTimeInstance(dstyle, tstyle, actual);
  /external/junit/src/main/java/junit/framework/
ComparisonCompactor.java 15 public ComparisonCompactor(int contextLength, String expected, String actual) {
18 fActual = actual;
29 String actual = compactString(fActual); local
30 return Assert.format(message, expected, actual);
  /external/libmojo/base/android/
path_utils_unittest.cc 20 const std::string& actual) {
21 EXPECT_TRUE(expected1 == actual || expected2 == actual)
22 << "Value of: " << actual << std::endl
  /external/libxml2/test/schemas/
src-attribute2_0.xsd 3 If default and use are both present, use must have the ?actual value? optional
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Any.java 19 public boolean matches(Object actual) {
  /external/syslinux/core/
prefix.inc 2 ; The prefix is a small structure that prefaces the actual code;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
AssertHelpers.java 134 * @param actual array to test.
137 public static <T> void assertArrayContains(String message, T[] actual, T checkVals) {
138 assertCollectionContainsAnyOf(message, buildList(actual), Arrays.asList(checkVals));
146 * @param actual array to test.
149 public static void assertArrayContains(String message, int[] actual, int checkVals) {
150 assertCollectionContainsAnyOf(message, buildList(actual), Arrays.asList(checkVals));
157 * @param actual array to test
161 public static <T> T assertArrayContainsAnyOf(String message, T[] actual, T[] checkVals) {
162 return assertCollectionContainsAnyOf(message, buildList(actual), buildList(checkVals));
169 * @param actual array to tes
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
RawByteElementTest.java 44 RawByteElement actual = RawByteElement.parse(TEST_ELEMENT_ID, ByteBuffer.wrap(data)); local
46 assertEquals(expected, actual);
58 RawByteElement actual = RawByteElement.parse(TEST_ELEMENT_ID, ByteBuffer.wrap(data)); local
60 assertEquals(expected, actual);
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAKeyTest.java 51 private void assertDSAParamsEquals(DSAParams expected, DSAParams actual) {
52 assertEquals("P differ", expected.getP(), actual.getP());
53 assertEquals("Q differ", expected.getQ(), actual.getQ());
54 assertEquals("G differ", expected.getG(), actual.getG());
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/util/
NameDistanceTest.java 73 float actual = mNameDistance.getDistance(s1, s2); local
74 assertTrue("Expected Jaro-Winkler distance: " + expected + ", actual: " + actual,
75 Math.abs(actual - expected) < 0.001);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
stride.h 13 cloog_int_t stride; /**< The actual stride. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 13 cloog_int_t stride; /**< The actual stride. */
  /prebuilts/go/darwin-x86/src/runtime/debug/
debug.s 9 // The actual implementations are in package runtime.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16193.go 8 // function literal, colliding with an actual function named "glob".
  /prebuilts/go/linux-x86/src/runtime/debug/
debug.s 9 // The actual implementations are in package runtime.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16193.go 8 // function literal, colliding with an actual function named "glob".
  /prebuilts/misc/common/jacoco/
build.gradle 1 // NOTE: This is not used during the actual build. Added to conveniently import into intellij
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvers/
vers4.c 4 * the actual symbol is exported. This is built both with and without

Completed in 579 milliseconds

<<11121314151617181920>>