OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:matching
(Results
76 - 100
of
5685
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/components/bookmarks/browser/
bookmark_match.h
36
// The
matching
node of a query.
39
// Location of the
matching
words in the title of the node.
42
// Location of the
matching
words in the URL of the node.
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
basic.cpp
26
f2(ip, ConvToIntPtr()); // expected-error{{no
matching
function}}
28
f2(ip, fp); // expected-error{{no
matching
function}}
45
func(foo<int>()); // expected-error {{no
matching
function}}
p3-0x.cpp
32
f1(lvalue<int>()); // expected-error{{no
matching
function for call to 'f1'}}
35
f1(lvalue<Y>()); // expected-error{{no
matching
function for call to 'f1'}}
45
int n3 = g(i); // expected-error{{no
matching
function for call to 'g'}}
/external/clang/test/SemaCXX/
qualification-conversion.cpp
10
quals3(ppp); // expected-error {{no
matching
}}
22
mquals3(ppp); // expected-error {{no
matching
}}
33
aquals2a(pp2); // expected-error {{no
matching
}}
member-pointer.cpp
203
bind(&nonstat); // expected-error {{no
matching
function for call}}
204
bind(&A::nonstat); // expected-error {{no
matching
function for call}}
206
bind(&mixed); // expected-error {{no
matching
function for call}}
207
bind(&A::mixed); // expected-error {{no
matching
function for call}}
209
bind(&stat); // expected-error {{no
matching
function for call}}
210
bind(&A::stat); // expected-error {{no
matching
function for call}}
216
bindmem(&nonstat); // expected-error {{no
matching
function for call}}
219
bindmem(&mixed); // expected-error {{no
matching
function for call}}
222
bindmem(&stat); // expected-error {{no
matching
function for call}}
223
bindmem(&A::stat); // expected-error {{no
matching
function for call}
[
all
...]
enable_if.cpp
34
X x2(false); // expected-error{{no
matching
constructor for initialization of 'X'}}
59
x.f(3); // expected-error{{no
matching
member function for call to 'f'}}
62
x.s(1); // expected-error{{no
matching
member function for call to 's'}}
65
X::s(1); // expected-error{{no
matching
member function for call to 's'}}
73
int i = x(1); // expected-error{{no
matching
function for call to object of type 'X'}}
76
typedep(0); // expected-error{{no
matching
function for call to 'typedep'}}
cast-conversion.cpp
17
B(10); // expected-error {{no
matching
conversion for functional-style cast from 'int' to 'B'}}
18
(B)10; // expected-error {{no
matching
conversion for C-style cast from 'int' to 'B'}}
19
static_cast<B>(10); // expected-error {{no
matching
conversion for static_cast from 'int' to 'B'}}
/external/droiddriver/src/com/google/android/droiddriver/
DroidDriver.java
28
* Returns whether a
matching
element exists without polling. Use this if the
34
* Returns whether a
matching
element appears within {@code timeoutMillis}.
62
* @param finder The
matching
mechanism
63
* @return The first
matching
element
64
* @throws TimeoutException If no
matching
elements are found within the
75
* @param finder The
matching
mechanism
76
* @return The first
matching
element
77
* @throws ElementNotFoundException If no
matching
elements are found
92
* @param finder The
matching
mechanism
93
* @throws TimeoutException If
matching
element does not appear within th
[
all
...]
/external/droiddriver/src/com/google/android/droiddriver/finders/
Finder.java
27
* Returns the
matching
UiElement. The implementing finder should not poll.
32
* @return The first
matching
element on the current context
33
* @throws ElementNotFoundException If no
matching
elements are found
/external/clang/test/SemaTemplate/
overload-candidates.cpp
7
(void)min(1, 2l); // expected-error{{no
matching
function for call to 'min'}}
14
(void)dyn_cast(ptr); // expected-error{{no
matching
function for call to 'dyn_cast'}}
23
get<int>(ptr); // expected-error{{no
matching
function for call to 'get'}}
32
(void)get_type(ptr); // expected-error{{no
matching
function for call to 'get_type'}}
41
(void)x.min(1, 2l); // expected-error{{no
matching
member function for call to 'min'}}
49
int k = if_size_4<char>(); // expected-error{{no
matching
function}}
58
if_int<char>(); // expected-error{{no
matching
function}}
80
foo(NS1::array<int>()); // expected-error{{no
matching
function for call to 'foo'}}
100
void bar() { foo<int>(); } // expected-error {{no
matching
function for call to 'foo'}}
114
void quux() { baz<int>(); } // expected-error {{no
matching
function for call to 'baz'}
[
all
...]
instantiate-init.cpp
9
X0 x0(t, u); // expected-error{{no
matching
}}
10
return X0(t, u); // expected-error{{no
matching
}}
20
Ret r0(t, u); // expected-error{{no
matching
}}
21
return Ret(t, u); // expected-error{{no
matching
}}
103
sizeof(array_lengthof( // expected-error{{no
matching
function for call to 'array_lengthof'}}
107
array_lengthof(Description<float*>::data); // expected-error{{no
matching
function for call to 'array_lengthof'}}
/external/chromium_org/third_party/re2/re2/
filtered_re2.h
9
// By design, it does not include a string
matching
engine. This is to
15
//
matching
using the strings returned. When doing the string match,
46
// The returned strings are lowercased. When doing string
matching
,
47
// the search text should be lowercased first to find
matching
52
// Returns the index of the first
matching
regexp.
58
// Returns the index of the first
matching
regexp.
64
// Returns the indices of all
matching
regexps, after first clearing
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p1-0x.cpp
22
NonAggr1a na1a = { 42 }; // expected-error {{no
matching
constructor for initialization of 'NonAggr1a'}}
28
NonAggr1b na1b = { 42 }; // expected-error {{no
matching
constructor for initialization of 'NonAggr1b'}}
37
// expected-error@-2 {{no
matching
constructor for initialization of 'NonAggr2'}}
46
NonAggr3 na3 = { 42 }; // expected-error {{no
matching
constructor for initialization of 'NonAggr3'}}
53
NonAggr4 na4 = { 42 }; // expected-error {{no
matching
constructor for initialization of 'NonAggr4'}}
58
NonAggr5 na5 = { b }; // expected-error {{no
matching
constructor for initialization of 'NonAggr5'}}
69
NonAggr6 na6 = { 42 }; // expected-error {{no
matching
constructor for initialization of 'NonAggr6'}}
/external/regex-re2/re2/
filtered_re2.h
9
// By design, it does not include a string
matching
engine. This is to
15
//
matching
using the strings returned. When doing the string match,
46
// The returned strings are lowercased. When doing string
matching
,
47
// the search text should be lowercased first to find
matching
52
// Returns the index of the first
matching
regexp.
58
// Returns the index of the first
matching
regexp.
64
// Returns the indices of all
matching
regexps, after first clearing
/external/proguard/src/proguard/
ClassSpecificationVisitorFactory.java
44
* @param classVisitor the ClassVisitor to be applied to
matching
46
* @param memberVisitor the MemberVisitor to be applied to
matching
88
* @param classVisitor the ClassVisitor to be applied to
matching
90
* @param memberVisitor the MemberVisitor to be applied to
matching
123
* @param classVisitor the ClassVisitor to be applied to
matching
125
* @param memberVisitor the MemberVisitor to be applied to
matching
170
* @param classVisitor the ClassVisitor to be applied to
matching
172
* @param memberVisitor the MemberVisitor to be applied to
matching
192
// If wildcarded, only visit classes with
matching
names.
246
// If specified, only visit extended classes with
matching
names
[
all
...]
/external/owasp/sanitizer/distrib/javadoc/org/owasp/html/
HtmlPolicyBuilder.AttributeBuilder.html
133
attributes' values based on previous calls to <code>
matching
(...)</code>.</TD>
138
<TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#
matching
(org.owasp.html.AttributePolicy)">
matching
</A></B>(<A HREF="../../../org/owasp/html/AttributePolicy.html" title="interface in org.owasp.html">AttributePolicy</A> policy)</CODE>
147
<TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#
matching
(boolean, java.util.Set)">
matching
</A></B>(boolean ignoreCase,
157
<TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#
matching
(boolean, java.lang.String...)">
matching
</A></B>(boolean ignoreCase,
167
<TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#
matching
(java.util.regex.Pattern)">
matching
</A></B>(java.util.regex.Pattern pattern)</CODE>
171
matching
the pattern.</TD
[
all
...]
/external/chromium_org/net/url_request/
url_request_filter_unittest.cc
68
// Check URL
matching
.
84
// Check we can remove URL
matching
.
89
// Check hostname
matching
.
106
// Check we can remove hostname
matching
.
111
// Check URLRequestInterceptor hostname
matching
.
126
// Check URLRequestInterceptor URL
matching
.
/external/chromium_org/apps/common/api/
app_runtime.idl
28
//
matching
file handler in the <code>file_handlers</code> manifest key.
31
// The URL for the <code>onLaunched</code> event triggered by a
matching
36
//
matching
URL handler in the <code>url_handlers</code> manifest key.
/external/chromium_org/chrome/browser/notifications/
notification_ui_manager.h
40
// Removes any notifications
matching
the supplied ID, either currently
50
// Removes notifications
matching
the |source_origin| (which could be an
54
// Removes notifications
matching
|profile|. Returns true if any were removed.
/external/chromium_org/content/renderer/pepper/
pepper_truetype_font.h
17
// Creates a font
matching
the given descriptor. The exact font that is
18
// returned will depend on the host platform's font
matching
and fallback
28
// characteristics of the font after running the host platform's font
matching
/external/iptables/extensions/
libxt_LOG.man
1
Turn on kernel logging of
matching
packets. When this option is set
3
matching
packets (like most IP/IPv6 header fields) via the kernel log
10
separate rules with the same
matching
criteria, first using target LOG
/development/samples/USB/AdbTest/
README.txt
9
-
Matching
devices based on interface class, subclass and protocol (see device_filter.xml)
/external/chromium_org/base/memory/
weak_ptr_unittest.nc
51
#elif defined(NCTEST_STATIC_ASWEAKPTR_DOWNCAST) // [r"no
matching
function"]
66
#elif defined(NCTEST_UNSAFE_INSTANTIATED_HELPER_DOWNCAST) // [r"no
matching
function"]
87
#elif defined(NCTEST_UNSAFE_INSTANTIATED_HELPER_SIDECAST) // [r"no
matching
function"]
108
#elif defined(NCTEST_UNRELATED_INSTANTIATED_HELPER) // [r"no
matching
function"]
/external/chromium_org/chrome/browser/apps/
app_url_redirector.h
21
// have a
matching
URL handler in the 'url_handlers' manifest key.
/external/chromium_org/chrome/browser/importer/
importer_uma.h
16
// |metric_postfix| require a
matching
"Import.ImporterType.|metric_postfix|"
Completed in 528 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>