HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 1026 - 1050 of 9217) sorted by null

<<41424344454647484950>>

  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
virtio_balloon.h 31 __le32 actual; member in struct:virtio_balloon_config
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
virtio_balloon.h 31 __le32 actual; member in struct:virtio_balloon_config
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
application.py 25 _encoder is a function which will perform the actual encoding for
image.py 30 _encoder is a function which will perform the actual encoding for
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
application.py 25 _encoder is a function which will perform the actual encoding for
image.py 30 _encoder is a function which will perform the actual encoding for
  /external/markdown/
test-markdown.py 133 <td>Actual</td>
293 def get_benchmark_html (actual, expected) :
296 if actual > expected * 1.5:
298 elif actual * 1.5 < expected :
302 if ( (actual <= 0 and expected < 0.015) or
303 (expected <= 0 and actual < 0.015)) :
307 buffer += "<td class='%s'>%.2f</td>" % (tdiff, actual)
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
Rfc822OutputTests.java 235 String actual; local
236 actual = Rfc822Output.getHtmlBody(HTML_FULL_BODY);
237 assertEquals(HTML_FULL_RESULT, actual);
238 actual = Rfc822Output.getHtmlBody(HTML_BODY_BODY);
239 assertEquals(HTML_BODY_RESULT, actual);
240 actual = Rfc822Output.getHtmlBody(HTML_NO_BODY_BODY);
241 assertEquals(HTML_NO_BODY_RESULT, actual);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LayoutTestBase.java 163 * @param actual actual collection
165 public static void assertContainsSame(Collection<String> expected, Collection<String> actual) {
166 if (expected.size() != actual.size()) {
168 + actual.size());
175 List<String> actualList = new ArrayList<String>(actual);
185 System.out.println("Actual items : " + actualList);
  /external/google-breakpad/src/processor/
fast_source_line_resolver_unittest.cc 122 // Verify that, for every association in ACTUAL, EXPECTED has the same
123 // association. (That is, ACTUAL's associations should be a subset of
124 // EXPECTED's.) Also verify that ACTUAL has associations for ".ra" and
129 const CFIFrameInfo::RegisterValueMap<uint32_t> &actual) {
131 a = actual.find(".cfa");
132 if (a == actual.end())
134 a = actual.find(".ra");
135 if (a == actual.end())
137 for (a = actual.begin(); a != actual.end(); a++)
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_xml_output_unittest.py 158 """Verifies XML output for a Google Test binary without actual tests.
172 actual = self._GetXmlOutput('gtest_no_test_unittest', 0)
173 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
189 actual.unlink()
262 actual = minidom.parse(xml_path)
263 return actual
273 actual = self._GetXmlOutput(gtest_prog_name, expected_exit_code)
275 self.NormalizeXml(actual.documentElement)
277 actual.documentElement)
279 actual.unlink(
    [all...]
  /external/gtest/test/
gtest_xml_output_unittest.py 168 """Verifies XML output for a Google Test binary without actual tests.
182 actual = self._GetXmlOutput('gtest_no_test_unittest', [], 0)
183 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
199 actual.unlink()
283 actual = minidom.parse(xml_path)
284 return actual
295 actual = self._GetXmlOutput(gtest_prog_name, extra_args or [],
298 self.NormalizeXml(actual.documentElement)
300 actual.documentElement)
302 actual.unlink(
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSchemaRegistryImpl.java 96 // Return the actual prefix
298 * Associates an alias name with an actual name.
302 * where the alias and actual have the same data type. It is also possible
305 * Multiple alias names may map to the same actual, as long as the forms
318 * The namespace URI for the actual. Must not be null or the
321 * The name of the actual. Must be a simple name, not null or the
328 * direct aliases regardless of whether the actual data type is
349 throw new XMPException("Alias and actual property names must be simple",
362 throw new XMPException("Actual namespace is not registered",
376 "Actual property is already an alias, use the base property"
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyStoreTest.java 377 public static void assertPrivateKey(Key actual)
379 assertEquals(getPrivateKey().getPrivateKey(), actual); local
381 public static void assertPrivateKey(String keyType, Key actual)
383 assertEquals(getPrivateKey(keyType).getPrivateKey(), actual); local
385 public static void assertPrivateKey2(Key actual)
387 assertEquals(getPrivateKey2().getPrivateKey(), actual); local
389 public static void assertPrivateKey(Entry actual)
391 assertNotNull(actual);
392 assertSame(PrivateKeyEntry.class, actual.getClass());
393 PrivateKeyEntry privateKey = (PrivateKeyEntry) actual;
402 assertEquals(getSecretKey(), actual); local
406 assertEquals(getSecretKey2(), actual); local
416 assertEquals(getPrivateKey().getCertificate(), actual); local
420 assertEquals(getPrivateKey2().getCertificate(), actual); local
1650 String actual = keyStore.getCertificateAlias(getPrivateKey().getCertificate()); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 95 assertEquals("character encoding is non equal to actual value",
99 assertEquals("is non equal to actual value", Level.FINE, handler
119 assertEquals("character encoding is non equal to actual value",
123 assertEquals("is non equal to actual value", Level.FINE, handler
201 assertEquals("character encoding is non equal to actual value",
205 assertEquals("is non equal to actual value", Level.FINE, handler
239 assertEquals("character encoding is non equal to actual value",
243 assertEquals("is non equal to actual value", Level.FINE, handler
287 assertEquals("character encoding is non equal to actual value",
291 assertEquals("is non equal to actual value", Level.FINE, handle
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_output_unittest.py 158 """Verifies XML output for a Google Test binary without actual tests.
172 actual = self._GetXmlOutput('gtest_no_test_unittest', 0)
173 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
189 actual.unlink()
262 actual = minidom.parse(xml_path)
263 return actual
273 actual = self._GetXmlOutput(gtest_prog_name, expected_exit_code)
275 self.NormalizeXml(actual.documentElement)
277 actual.documentElement)
279 actual.unlink(
    [all...]
  /device/generic/goldfish/camera/
CallbackNotifier.h 53 /* Actual handler for camera_device_ops_t::set_callbacks callback.
63 /* Actual handler for camera_device_ops_t::enable_msg_type callback.
69 /* Actual handler for camera_device_ops_t::disable_msg_type callback.
75 /* Actual handler for camera_device_ops_t::store_meta_data_in_buffers
108 /* Actual handler for camera_device_ops_t::msg_type_enabled callback.
  /external/clang/bindings/python/tests/cindex/
test_translation_unit.py 75 def eq(expected, actual):
76 if not actual.is_input_file:
77 return normpaths_equal(expected[0], actual.source.name) and \
78 normpaths_equal(expected[1], actual.include.name)
80 return normpaths_equal(expected[1], actual.include.name)
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 222 private static void checkArrayEquals(Object[] expected, Object[] actual) {
224 + " actual(" + actual.getClass() + "): " + Arrays.toString(actual),
225 arrayEquals(expected, actual));
  /external/jsoncpp/src/jsontestrunner/
main.cpp 120 const std::string &actual,
138 FILE *factual = fopen( actual.c_str(), "wt" );
141 printf( "Failed to create %s actual file.\n", kind.c_str() );
267 std::string actualPath = basePath + ".actual";
269 std::string rewriteActualPath = basePath + ".actual-rewrite";
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldInitializer.java 22 * If the given field is already initialized, then <strong>the actual instance is returned</strong>.
76 * Initialize field if not initialized and return the actual instance.
78 * @return Actual field instance.
127 * Represents the strategy used to resolve actual instances
206 * call the ConstructorArgResolver to get actual argument instances.
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3ZslStream.cpp 302 nsecs_t actual = pinnedBuffer->getBufferItem().mTimestamp; local
304 if (actual != timestamp) {
307 " requested timestamp = %" PRId64 ", actual timestamp = %" PRId64,
308 __FUNCTION__, timestamp, actual);
314 *actualTimestamp = actual;
  /frameworks/base/libs/androidfw/
ObbFile.cpp 130 ssize_t actual; local
137 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize));
138 if (actual != kFooterTagSize) {
179 actual = TEMP_FAILURE_RETRY(read(fd, scanBuf, footerSize));
181 if (actual != (ssize_t)footerSize) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 55 private static void assertStartsWith(String message, String prefix, String actual) {
56 if (!actual.startsWith(prefix)) {
57 throw new ComparisonFailure(message, prefix, actual);
155 assertEquals("Actual file and resolved file should be the same",
179 assertEquals("Actual file and resolved file should be the same", file.getPath(),
  /frameworks/compile/slang/tests/
test.py 29 def CompareFiles(actual, expect):
30 """Compares actual and expect for equality."""
31 if not os.path.isfile(actual):
33 print 'Could not find %s' % actual
40 return filecmp.cmp(actual, expect, False)

Completed in 660 milliseconds

<<41424344454647484950>>