HomeSort by relevance Sort by last modified time
    Searched full:matching (Results 76 - 100 of 5917) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/kernel-headers/original/uapi/linux/netfilter/
xt_l2tp.h 11 /* L2TP matching stuff */
  /external/chromium_org/chrome/browser/extensions/
window_controller_list.h 36 // Returns a window matching |id|.
39 // Returns a window matching the context the function was invoked in.
44 // Returns the focused or last added window matching the context the function
  /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/pcre/dist/doc/
pcrecallout.3 20 passing control to the caller of PCRE in the middle of pattern matching. The
53 Automatic callouts can be used for tracking the progress of pattern matching.
81 This indicates that when matching [bc] fails, there is no backtracking into a+
97 This time, when matching [bc] fails, the matcher backtracks into a+ and tries
105 PCRE knows that any matching string must contain the letter "d". If the subject
106 string is "abyz", the lack of "d" means that matching doesn't ever start, and
110 If the pattern is studied, PCRE knows the minimum length of a matching string,
116 option to the matching function, or by starting the pattern with
117 (*NO_START_OPT). This slows down the matching process, but does ensure that
124 During matching, when PCRE reaches a callout point, the external functio
    [all...]
pcrematching.3 4 .SH "PCRE MATCHING ALGORITHMS"
8 for matching a compiled regular expression against a given subject string. The
11 as as Perl's matching function, and provide a Perl-compatible matching operation.
43 infinite size, but it is still a tree. Matching the pattern to a given subject
46 correspond to the two matching algorithms provided by PCRE.
49 .SH "THE STANDARD MATCHING ALGORITHM"
63 If a leaf node is reached, a matching string has been found, and at that point
75 .SH "THE ALTERNATIVE MATCHING ALGORITHM"
79 first matching point in the subject, it scans the subject string from left t
    [all...]
  /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>&nbsp;policy)</CODE>
147 <TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#matching(boolean, java.util.Set)">matching</A></B>(boolean&nbsp;ignoreCase,
157 <TD><CODE><B><A HREF="../../../org/owasp/html/HtmlPolicyBuilder.AttributeBuilder.html#matching(boolean, java.lang.String...)">matching</A></B>(boolean&nbsp;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&nbsp;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/pcre/dist/doc/html/
pcrematching.html 16 <li><a name="TOC1" href="#SEC1">PCRE MATCHING ALGORITHMS</a>
18 <li><a name="TOC3" href="#SEC3">THE STANDARD MATCHING ALGORITHM</a>
19 <li><a name="TOC4" href="#SEC4">THE ALTERNATIVE MATCHING ALGORITHM</a>
25 <br><a name="SEC1" href="#TOC1">PCRE MATCHING ALGORITHMS</a><br>
28 for matching a compiled regular expression against a given subject string. The
31 as as Perl's matching function, and provide a Perl-compatible matching operation.
61 infinite size, but it is still a tree. Matching the pattern to a given subject
64 correspond to the two matching algorithms provided by PCRE.
66 <br><a name="SEC3" href="#TOC1">THE STANDARD MATCHING ALGORITHM</a><br
    [all...]
  /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/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)

Completed in 949 milliseconds

1 2 34 5 6 7 8 91011>>