OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:expectedHash
(Results
1 - 4
of
4
) sorted by null
/external/webkit/WebKitTools/DumpRenderTree/
PixelDumpSupport.cpp
43
void dumpWebViewAsPixelsAndCompareWithExpected(const std::string&
expectedHash
)
55
if (
expectedHash
.length() > 0) {
56
ASSERT(
expectedHash
.length() == 32);
58
printf("\nExpectedHash: %s\n",
expectedHash
.c_str());
60
if (
expectedHash
== actualHash) // FIXME: do case insensitive compare
PixelDumpSupport.h
41
void dumpWebViewAsPixelsAndCompareWithExpected(const std::string&
expectedHash
);
/libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java
481
int
expectedHash
;
482
for (
expectedHash
= 0; iterator.hasNext();
expectedHash
+= iterator
485
assertTrue("Incorrect hashCode returned. Wanted: " +
expectedHash
486
+ " got: " + ht10.hashCode(),
expectedHash
== ht10.hashCode());
/external/webkit/WebKitTools/Scripts/
run-webkit-tests
606
if (open
EXPECTEDHASH
, "$expectedPixelDir/$base-$expectedTag.checksum") {
607
my $
expectedHash
= <
EXPECTEDHASH
>;
608
chomp($
expectedHash
);
609
close
EXPECTEDHASH
;
612
$suffixExpectedHash = "'$
expectedHash
";
724
my $
expectedHash
= "";
731
} elsif (/
ExpectedHash
: ([a-f0-9]{32})/) {
732
$
expectedHash
= $1;
740
if ($actualHash eq "" && $
expectedHash
eq "")
[
all
...]
Completed in 121 milliseconds