HomeSort by relevance Sort by last modified time
    Searched full:golden (Results 1 - 25 of 65) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/util/
SerializableTester.java 30 private final String golden; field in class:SerializableTester
33 public SerializableTester(T value, String golden) {
34 this.golden = golden;
42 if (golden == null || golden.length() == 0) {
43 fail("No golden value supplied! Consider using this: "
51 T deserialized = (T) deserialize(hexDecode(golden));
52 assertEquals("User-constructed value doesn't equal deserialized golden value",
  /libcore/luni/src/test/java/tests/api/java/io/
DataInputOutputStreamTest.java 49 notes = "Tests against golden file missing.",
55 notes = "Tests against golden file missing.",
100 notes = "Tests against golden file missing.",
106 notes = "Tests against golden file missing.",
151 notes = "Tests against golden file missing.",
157 notes = "Tests against golden file missing.",
202 notes = "Tests against golden file missing.",
208 notes = "Tests against golden file missing.",
253 notes = "Tests against golden file missing.",
259 notes = "Tests against golden file missing."
    [all...]
ObjectInputOutputStreamTest.java 49 notes = "Tests against golden file missing. IOException can " +
57 notes = "Tests against golden file missing.",
94 notes = "Tests against golden file missing. IOException can " +
102 notes = "Tests against golden file missing.",
139 notes = "Tests against golden file missing. IOException can " +
147 notes = "Tests against golden file missing.",
184 notes = "Tests against golden file missing. IOException can " +
192 notes = "Tests against golden file missing.",
229 notes = "Tests against golden file missing. IOException can " +
237 notes = "Tests against golden file missing."
    [all...]
RandomAccessFileTest.java 460 notes = "Tests against golden file missing.",
466 notes = "Tests against golden file missing.",
511 notes = "Tests against golden file missing.",
517 notes = "Tests against golden file missing.",
571 notes = "Tests against golden file missing.",
577 notes = "Tests against golden file missing.",
631 notes = "Tests against golden file missing.",
637 notes = "Tests against golden file missing.",
682 notes = "Tests against golden file missing.",
688 notes = "Tests against golden file missing."
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 57 * is performed but golden files are produced, which contain reference
60 * The location of golden files (in both modes) is controlled via
83 * Key to a system property defining root location of golden files.
105 * Depending on testing mode, produces golden files or performs testing.
141 * Tests that data objects can be deserialized from golden files, to verify
151 * Returns golden file for an object being tested.
155 * @return corresponding golden file
170 * returned by {@link #getData() getData()}to golden files, each object to
179 + ".golden.";
353 * Verifies that object deserialized from golden file correctly
    [all...]
  /build/tools/
check_builds.sh 55 rm -rf $TEST_BUILD_DIR/golden-* $TEST_BUILD_DIR/dist-*
56 do_builds golden "$@"
64 inputs="$inputs $TEST_BUILD_DIR/golden-$1/installed-files.txt"
83 diff $TEST_BUILD_DIR/golden-$1/installed-files.txt $TEST_BUILD_DIR/dist-$1/installed-files.txt &> /dev/null
86 diff $TEST_BUILD_DIR/golden-$1/installed-files.txt $TEST_BUILD_DIR/dist-$1/installed-files.txt
  /external/libvpx/vpx/
vp8cx.h 49 /*!\brief Don't reference the golden frame
51 * When this flag is set, the encoder will not use the golden frame as a
53 * golden frame or not automatically.
75 /*!\brief Don't update the golden frame
77 * When this flag is set, the encoder will not update the golden frame with
91 /*!\brief Force golden frame update
94 * to the golden frame buffer.
  /external/emma/
test.sh 76 GOLDEN=$TESTDIR/golden.lcov
77 cat <<END >$GOLDEN
126 if ! diff <(sort $GOLDEN) <(sort $COVERAGE) >$TESTDIR/diff-sorted; then
130 if ! diff $GOLDEN $COVERAGE >$TESTDIR/diff-ordered; then
  /external/protobuf/gtest/test/
gtest_output_test.py 49 # The flag for generating the golden file
257 # sequences when we read the golden file irrespective of an operating
260 golden = ToUnixLineEnding(golden_file.read())
266 self.assert_(golden == output)
269 normalized_golden = RemoveTestCounts(self.RemoveUnsupportedTests(golden))
294 """Unable to write a golden file when compiled in an environment
301 message += """\nand typed tests). Please generate the golden file
gtest_output_test_.cc 514 // golden file to check that Google Test generates the right error message.
521 // Expected to fail. We rely on the golden file to check that Google Test
538 // Expected to fail. We rely on the golden file to check that Google Test
547 // Expected to fail. We rely on the golden file to check that Google Test
762 // We rely on the golden file to verify that tests whose test case
770 // We rely on the golden file to verify that typed tests whose test
788 // We rely on the golden file to verify that type-parameterized tests
970 // with the "golden" file.
976 // this program with the golden file.
1003 // The golden file verifies that they are set up in the order the
    [all...]
  /external/protobuf/python/google/protobuf/internal/
message_test.py 33 """Tests python protocol buffers against the golden message.
35 Note that the golden messages exercise every known field type, thus this
  /external/gtest/test/
gtest_output_test.py 51 # The flag for generating the golden file
227 golden = golden_file.read()
232 self.assert_(output == golden or
234 RemoveTestCounts(RemoveDeathTests(golden)))
gtest_output_test_.cc 521 // golden file to check that Google Test generates the right error message.
528 // Expected to fail. We rely on the golden file to check that Google Test
545 // Expected to fail. We rely on the golden file to check that Google Test
554 // Expected to fail. We rely on the golden file to check that Google Test
769 // We rely on the golden file to verify that tests whose test case
777 // We rely on the golden file to verify that typed tests whose test
795 // We rely on the golden file to verify that type-parameterized tests
977 // with the "golden" file.
981 // this program with the golden file.
1011 // The golden file verifies that they are set up in the order the
    [all...]
  /external/libvpx/vp8/encoder/
segmentation.c 38 // If using golden then set GF active flag if not already set.
onyx_int.h 288 int gold_is_last; // golden frame same as last frame ( short circuit gold searches)
366 int gf_bits; // Bits for the golden frame or ARF - 2 pass only
661 unsigned char *gf_active_flags; // Record of which MBs still refer to last golden frame either directly or through 0,0
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 404 string golden; local
407 &golden);
410 string gzip_compressed = Compress(golden, options);
413 string not_compressed = Compress(golden, options);
418 string zlib_compressed = Compress(golden, options);
422 EXPECT_GT(not_compressed.size(), golden.size());
431 EXPECT_TRUE(Uncompress(not_compressed) == golden);
432 EXPECT_TRUE(Uncompress(gzip_compressed) == golden);
433 EXPECT_TRUE(Uncompress(zlib_compressed) == golden);
684 // To test LimitingInputStream, we write our golden text to a buffer, the
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 219 * TODO(yslau): Need to setup the golden rawData and compare the
220 * the new captured rawData with the golden one.
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 747 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedCollection.golden.ser");
759 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedListRandomAccess.golden.ser");
771 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedList.golden.ser");
783 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedSet.golden.ser");
795 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedMap.golden.ser");
806 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedSortedSet.golden.ser");
817 SerializationTester.assertCompabilityEquals(c, "/serialization/org/apache/harmony/luni/tests/java/util/Collections_CheckedSortedMap.golden.ser");
  /external/libvpx/vp8/decoder/
onyxd_if.c 264 /* The alternate reference frame or golden frame can be updated
265 * using the new, last, or golden/alt ref frame. If it
267 * An update using the last or golden/alt ref frame is a copy.
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 192 * Tests that the contacts provider return the appropriate information from the golden
220 * Returns the expected Quick Search Box content values for the golden contact.
277 * Tests that the contacts provider return the appropriate information from the golden
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RRuleTest.java 54 String golden) throws Exception {
55 runRecurrenceIteratorTest(rruleText, dtStart, limit, golden, null, null, UTC);
59 String golden, String advanceTo, String tz) throws Exception {
60 runRecurrenceIteratorTest(rrule, dtstartStr, limit, golden, advanceTo, null, tz);
70 * @param golden The desired results
77 String golden, String advanceTo, String endAt, String tz) throws Exception {
128 assertEquals(golden, sb.toString());
    [all...]
  /frameworks/base/docs/html/resources/articles/
layout-tricks-merge.jd 38 android:text="Golden Gate" /&gt;
87 android:text="Golden Gate" /&gt;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MDGoldenData.java 27 * Golden data for Message Digest related tests.<br>
189 * Returns digest golden data
  /external/blktrace/
jhash.h 51 /* The golden ration: an arbitrary value */
  /external/protobuf/java/src/test/java/com/google/protobuf/
TextFormatTest.java 112 /** Print TestAllTypes and compare with golden file. */
117 // (with %g format) does not. Our golden files are used for both
124 /** Print TestAllExtensions and compare with golden file. */
129 // (with %g format) does not. Our golden files are used for both

Completed in 725 milliseconds

1 2 3