OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Matches
(Results
101 - 125
of
194
) sorted by null
1
2
3
4
5
6
7
8
/external/chromium/testing/gmock/include/gmock/
gmock-matchers.h
68
// used by a matcher to explain why a value
matches
or doesn't match.
114
// Returns true iff the matcher
matches
x; also explains the match
193
// Returns true iff the matcher
matches
x; also explains the match
199
// Returns true iff this matcher
matches
x.
200
bool
Matches
(T x) const {
213
// Explains why x
matches
, or doesn't match, the matcher.
246
// object that can check whether a value of type T
matches
. The
449
// A<T>() returns a matcher that
matches
any value of type T.
475
//
Matches
the value against the given matcher, prints the value and explains
486
return matcher.
Matches
(value)
2109
const bool
matches
= inner_matcher_.MatchAndExplain(*it, &inner_listener);
local
[
all
...]
/external/llvm/lib/Support/
YAMLTraits.cpp
493
bool Output::bitSetMatch(const char *Str, bool
Matches
) {
494
if (
Matches
) {
/external/chromium/net/proxy/
proxy_config.cc
41
bool bypass_proxy = bypass_rules.
Matches
(url);
/external/chromium_org/chrome/browser/prerender/
prerender_contents.h
212
bool
Matches
(
405
// A vector of URLs that this prerendered page
matches
against.
/external/chromium_org/chrome_frame/test/
test_with_web_server.cc
887
virtual bool
Matches
(const test_server::Request& r) const {
888
bool ret = SuperClass::
Matches
(r);
[
all
...]
/external/chromium_org/gpu/command_buffer/service/
mailbox_synchronizer.cc
194
if (group->definition.
Matches
(texture))
/external/chromium_org/media/mp2t/
es_parser_adts.cc
268
if (!audio_decoder_config.
Matches
(last_audio_decoder_config_)) {
/external/chromium_org/net/cert/
x509_cert_types_mac.cc
263
// byte-for-byte by a
Matches
() call.
280
bool CertPrincipal::
Matches
(const CertPrincipal& against) const {
/external/chromium_org/net/proxy/
proxy_config.cc
52
bool bypass_proxy = bypass_rules.
Matches
(url);
/external/chromium_org/sandbox/win/src/
crosscall_server.cc
293
if (it->params.
Matches
(ipc)) {
sandbox_policy_base.cc
431
if (ping1.
Matches
(ipc) || ping2.
Matches
(ipc)) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
hybridvideoengine.h
263
if (i->
Matches
(codec)) {
testutils.h
229
// Checks whether |codecs| contains |codec|; checks using Codec::
Matches
().
234
if (it->
Matches
(codec)) {
/external/chromium_org/third_party/re2/re2/
bitstate.cc
218
if (ip->
Matches
(c)) {
prog.h
114
inline bool
Matches
(int c) {
190
// full
matches
.
195
kManyMatch // for SearchDFA, records set of
matches
270
// If
matches
!= NULL and kind == kManyMatch and there is a match,
271
// SearchDFA fills
matches
with the match IDs of the final matching state.
275
vector<int>*
matches
);
/external/chromium_org/third_party/re2/re2/testing/
backtrack.cc
182
if (ip->
Matches
(c))
/external/mockito/src/org/mockito/
Matchers.java
74
* public boolean
matches
(Object list) {
728
* <code>String</code> argument that
matches
the given regular expression.
736
public static String
matches
(String regex) {
method in class:Matchers
737
return reportMatcher(new
Matches
(regex)).returnString();
774
* @param matcher decides whether argument
matches
786
* @param matcher decides whether argument
matches
798
* @param matcher decides whether argument
matches
810
* @param matcher decides whether argument
matches
822
* @param matcher decides whether argument
matches
834
* @param matcher decides whether argument
matches
[
all
...]
/external/regex-re2/re2/
bitstate.cc
218
if (ip->
Matches
(c)) {
prog.h
114
inline bool
Matches
(int c) {
190
// full
matches
.
195
kManyMatch // for SearchDFA, records set of
matches
270
// If
matches
!= NULL and kind == kManyMatch and there is a match,
271
// SearchDFA fills
matches
with the match IDs of the final matching state.
275
vector<int>*
matches
);
/external/regex-re2/re2/testing/
backtrack.cc
182
if (ip->
Matches
(c))
/external/chromium/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc
438
EXPECT_TRUE(tests[i].proxy_rules.
Matches
(config.proxy_rules()));
503
EXPECT_TRUE(tests[i].proxy_rules.
Matches
(io_config.proxy_rules()));
/external/chromium_org/chrome/renderer/
content_settings_observer.cc
133
if (it->primary_pattern.
Matches
(primary_url) &&
134
it->secondary_pattern.
Matches
(secondary_url)) {
/external/chromium/net/base/
x509_cert_types_mac.cc
252
// byte-for-byte by a
Matches
() call.
300
bool CertPrincipal::
Matches
(const CertPrincipal& against) const {
/external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.cc
172
if (answer_params[0].
Matches
(*it)) {
/external/chromium_org/chrome/test/functional/
test_utils.py
273
"""Fetch omnibox
matches
with the given attributes for the given query.
286
matches
= self.GetOmniboxInfo(windex=windex).
Matches
()
288
matches
= self.GetOmniboxInfo(windex=windex).MatchesWithAttributes(
290
return
matches
Completed in 626 milliseconds
1
2
3
4
5
6
7
8