HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 376 - 400 of 12216) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/samples/translit/
Makefile 21 # the actual rules (this is a simple sample)
  /external/icu/icu4c/source/samples/uciter8/
Makefile 19 # the actual rules (this is a simple sample)
  /external/icu/icu4c/source/samples/ucnv/
Makefile 22 # the actual rules (this is a simple sample)
  /external/icu/icu4c/source/samples/ugrep/
Makefile 23 # the actual rules (this is a simple sample)
  /external/icu/icu4c/source/samples/ustring/
Makefile 19 # the actual rules (this is a simple sample)
  /external/icu/icu4c/source/test/intltest/
tsmthred.h 17 * Tests actual threading
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UFormat.java 40 * for locale <tt>en_US_CALIFORNIA</tt>, the actual data may be
41 * drawn from <tt>en</tt> (the <i>actual</i> locale), and
46 * contains a partial preview implementation. The <i>actual</i>
69 * should be null. The actual locale must be at the same level or
75 * @param actual the locale containing data used to construct this
81 final void setLocale(ULocale valid, ULocale actual) {
83 if ((valid == null) != (actual == null)) {
88 // Another check we could do is that the actual locale is at
91 this.actualLocale = actual;
  /external/libchrome/base/json/
string_escape_unittest.cc 136 std::string actual; local
137 EXPECT_TRUE(EscapeJSONString(test, false, &actual));
138 EXPECT_EQ("a\xF0\x90\x8C\x80!", actual);
147 std::string actual; local
148 EXPECT_TRUE(EscapeJSONString(test, false, &actual));
149 EXPECT_EQ("\xF0\xA0\x80\xA1\xF0\xA0\x80\xAB", actual);
157 std::string actual; local
158 EXPECT_FALSE(EscapeJSONString(test, false, &actual));
159 EXPECT_EQ("?\xEF\xBF\xBD@", actual);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
AbstractCommandHandlerTestCase.java 121 * Assert that the actual is equal to the expected, using arrays equality comparison if
126 * @param actual - the actual value
128 private void assertEqualsAllTypes(String message, Object expected, Object actual) {
130 if (expected instanceof byte[] || actual instanceof byte[]) {
131 assertEquals(message, (byte[]) expected, (byte[]) actual);
132 } else if (expected instanceof Object[] || actual instanceof Object[]) {
133 assertEquals(message, (Object[]) expected, (Object[]) actual);
135 assertEquals(message, expected, actual);
  /external/mockito/src/org/mockito/internal/matchers/
Any.java 21 public boolean matches(Object actual) {
  /external/nanopb-c/tests/common/
unittestproto.proto 21 // Nanopb does not care about the actual defined data type for callback
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 47 def AssertEq(expected, actual):
48 if expected != actual:
50 print ' Actual: %s' % (actual,)
  /external/skia/experimental/DrawingBoard/
SkNetPipeController.h 18 virtual void* requestBlock(size_t minRequest, size_t* actual);
  /external/skia/platform_tools/android/tests/expectations/
SkUserConfig-h.txt 7 // reference, followed by the actual defines set for Android.
  /external/tpm2/
PCR_Read.c 19 // to reflect the actual PCR being returned
  /external/v8/test/mjsunit/
bit-not.js 31 var actual = ~x;
32 assertEquals(expected, actual, "x: " + name);
37 actual = ~(x - 0.01);
38 assertEquals(expected, actual, "x - 0.01: " + name);
math-exp-precision.js 38 function assertAlmostEquals(expected, actual, x) {
39 if (expected == 0 && actual == 0) return; // OK
41 actual == Number.POSITIVE_INFINITY) {
44 relative_diff = Math.abs(expected/actual - 1);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_uninitialized_test.py 47 def AssertEq(expected, actual):
48 if expected != actual:
50 print ' Actual: %s' % (actual,)
  /frameworks/base/core/java/android/text/
package.html 11 the actual wrapping and drawing of your text.
  /frameworks/base/tools/split-select/
TestRules.cpp 76 const sp<Rule>& actual, const Rule& expected) {
78 const String8 actualStr(actual != NULL ? actual->toJson() : String8());
83 << " Actual: " << actualStr.string();
  /libcore/luni/src/test/java/libcore/xml/
DomSerializationTest.java 68 String actual = toXml(document); local
71 assertTrue(actual, actual.equals(declarationA + expectedXml)
72 || actual.equals(declarationB + expectedXml));
NodeTest.java 69 private void assertFileUriEquals(File expectedFile, String actual) {
70 assertTrue("Expected URI for: " + expectedFile + " but was " + actual + ". ",
71 actual.equals("file:" + expectedFile)
72 || actual.equals("file://" + expectedFile));
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 104 String fragment, Boolean isAbsolute, String actual) {
107 assertNotNull(assertID, actual);
109 String uri = actual;
111 int lastPound = actual.lastIndexOf("#");
117 uri = actual.substring(0, lastPound);
118 actualFragment = actual.substring(lastPound + 1);
130 uri = actual.substring(0, lastQuestion);
131 actualQuery = actual.substring(lastQuestion + 1);
185 // Jar URL's will have any actual path like file:/c:/somedrive...
  /ndk/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 47 def AssertEq(expected, actual):
48 if expected != actual:
50 print ' Actual: %s' % (actual,)
  /packages/apps/Email/res/xml/
senders_product.xml 16 <!-- Actual entries should be in the overlay files found elsewhere -->

Completed in 931 milliseconds

<<11121314151617181920>>