Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:matcher_maker
(Results
1 - 2
of
2
) sorted by relevance
/third_party/googletest/googlemock/test/
H
A
D
gmock-matchers-arithmetic_test.cc
1047
//
matcher_maker
is a pointer to a function which creates a FloatingEqMatcher.
1049
testing::internal::FloatingEqMatcher<RawType> (*
matcher_maker
)(RawType)) {
in TestMatches()
1050
Matcher<RawType> m1 =
matcher_maker
(0.0);
in TestMatches()
1056
Matcher<RawType> m2 =
matcher_maker
(close_to_positive_zero_);
in TestMatches()
1059
Matcher<RawType> m3 =
matcher_maker
(1.0);
in TestMatches()
1063
// Test commutativity:
matcher_maker
(0.0).Matches(1.0) was tested above.
in TestMatches()
1066
Matcher<RawType> m4 =
matcher_maker
(-infinity_);
in TestMatches()
1069
Matcher<RawType> m5 =
matcher_maker
(infinity_);
in TestMatches()
1076
//
matcher_maker
can produce a Matcher<const RawType&>, which is needed in
in TestMatches()
1078
Matcher<const RawType&> m6 =
matcher_maker
(0.
in TestMatches()
1048
TestMatches( testing::internal::FloatingEqMatcher<RawType> (
matcher_maker
)RawType))
TestMatches()
argument
1130
TestNearMatches(testing::internal::FloatingEqMatcher<RawType> (
matcher_maker
)RawType, RawType))
TestNearMatches()
argument
[all...]
H
A
D
gmock-matchers-containers_test.cc
2976
ElementsAreArrayMatcher<int>
matcher_maker
=
in TEST()
local
2978
EXPECT_THAT(test_vector,
matcher_maker
);
in TEST()
2979
// Changing in place the values that initialized
matcher_maker
should not
in TEST()
2980
// affect
matcher_maker
anymore. It should have made its own copy of them.
in TEST()
2984
EXPECT_THAT(test_vector,
matcher_maker
);
in TEST()
2986
EXPECT_THAT(test_vector, Not(
matcher_maker
));
in TEST()
Completed in 8 milliseconds