OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:expectedHash
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Tools/DumpRenderTree/chromium/
TestEventPrinter.cpp
45
void handleImage(const char* actualHash, const char*
expectedHash
, const unsigned char* imageData, size_t imageSize, const char* fileName) const;
57
void handleImage(const char* actualHash, const char*
expectedHash
, const unsigned char* imageData, size_t imageSize, const char* fileName) const;
94
void DRTPrinter::handleImage(const char* actualHash, const char*
expectedHash
, const unsigned char* imageData, size_t imageSize, const char*) const
98
if (
expectedHash
&&
expectedHash
[0])
99
printf("\nExpectedHash: %s\n",
expectedHash
);
TestEventPrinter.h
43
virtual void handleImage(const char* actualHash, const char*
expectedHash
, const unsigned char* imageData, size_t imageSize, const char* fileName) const = 0;
/external/webkit/Tools/DumpRenderTree/
PixelDumpSupport.h
42
void dumpWebViewAsPixelsAndCompareWithExpected(const std::string&
expectedHash
);
PixelDumpSupport.cpp
46
void dumpWebViewAsPixelsAndCompareWithExpected(const std::string&
expectedHash
)
64
if (
expectedHash
.length() > 0) {
65
ASSERT(
expectedHash
.length() == 32);
67
printf("\nExpectedHash: %s\n",
expectedHash
.c_str());
69
if (
expectedHash
== actualHash) // FIXME: do case insensitive compare
/libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java
379
int
expectedHash
;
380
for (
expectedHash
= 0; iterator.hasNext();
expectedHash
+= iterator
383
assertTrue("Incorrect hashCode returned. Wanted: " +
expectedHash
384
+ " got: " + ht10.hashCode(),
expectedHash
== ht10.hashCode());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java
318
int
expectedHash
;
319
for (
expectedHash
= 0; iterator.hasNext();
expectedHash
+= iterator
322
assertTrue("Incorrect hashCode returned. Wanted: " +
expectedHash
323
+ " got: " + ht10.hashCode(),
expectedHash
== ht10.hashCode());
/external/webkit/Tools/Scripts/
old-run-webkit-tests
755
if (open
EXPECTEDHASH
, File::Spec->catfile($expectedPixelDir, "$base-$expectedTag.checksum")) {
756
my $
expectedHash
= <
EXPECTEDHASH
>;
757
chomp($
expectedHash
);
758
close
EXPECTEDHASH
;
761
$suffixExpectedHash = "'$
expectedHash
";
762
} elsif (my $
expectedHash
= readChecksumFromPng(File::Spec->catfile($expectedPixelDir, "$base-$expectedTag.png"))) {
763
$suffixExpectedHash = "'$
expectedHash
";
[
all
...]
Completed in 495 milliseconds