HomeSort by relevance Sort by last modified time
    Searched full:matching (Results 1 - 25 of 6272) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/util/
package.html 2 This package contains utility classes for regular expression matching,...
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p2.cpp 6 int a = 123_x; // expected-error {{no matching literal operator for call to 'operator""_x' with argument of type 'unsigned long long' or 'const char *', and no matching literal operator template}}
7 int b = 4.2_x; // expected-error {{no matching literal operator for call to 'operator""_x' with argument of type 'long double' or 'const char *', and no matching literal operator template}}
8 int c = "foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arguments of types 'const char *' and 'unsigned}}
9 int d = L"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arguments of types 'const wchar_t *' and 'unsigned}}
10 int e = u8"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arguments of types 'const char *' and 'unsigned}}
11 int f = u"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arguments of types 'const char16_t *' and 'unsigned}}
12 int g = U"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arguments of types 'const char32_t *' and 'unsigned}}
13 int h = 'y'_x; // expected-error {{no matching literal operator for call to 'operator""_x' with argument of type 'char'}
    [all...]
  /external/clang/test/ASTMerge/Inputs/
exprs1.c 0 // Matching
exprs2.c 0 // Matching
enum1.c 0 // Matching
36 // Matching, with typedef
enum2.c 0 // Matching
36 // Matching, with typedef
  /external/mockito/src/org/mockito/internal/verification/argumentmatching/
package.html 7 Deals with matching arguments
  /external/clang/test/Sema/
warn-bad-function-cast.c 36 (float)if1(); /* expected-warning {{cast from function call of type 'int' to non-matching type 'float'}} */
37 (double)if2(); /* expected-warning {{cast from function call of type 'char' to non-matching type 'double'}} */
38 (_Bool)if3(); /* expected-warning {{cast from function call of type 'long' to non-matching type '_Bool'}} */
39 (int)rf1(); /* expected-warning {{cast from function call of type 'float' to non-matching type 'int'}} */
40 (long)rf2(); /* expected-warning {{cast from function call of type 'double' to non-matching type 'long'}} */
41 (double)cf(); /* expected-warning {{cast from function call of type '_Complex double' to non-matching type 'double'}} */
42 (int)ef(); /* expected-warning {{cast from function call of type 'enum e' to non-matching type 'int'}} */
43 (int)bf(); /* expected-warning {{cast from function call of type '_Bool' to non-matching type 'int'}} */
44 (__SIZE_TYPE__)pf1(); /* expected-warning {{cast from function call of type 'char *' to non-matching type 'unsigned long'}} */
45 (__PTRDIFF_TYPE__)pf2(); /* expected-warning {{cast from function call of type 'int *' to non-matching type 'long'}} *
    [all...]
  /external/clang/test/SemaCXX/
cv-unqual-rvalues.cpp 8 g(X); // expected-error{{no matching function for call to 'g'}}
12 g(X); // expected-error{{no matching function for call to 'g'}}
16 g(__builtin_va_arg(x, const int)); // expected-error{{no matching function for call to 'g'}}
17 g((const int)0); // expected-error{{no matching function for call to 'g'}}
19 g(cint(0)); // expected-error{{no matching function for call to 'g'}}
20 g(static_cast<const int>(1)); // expected-error{{no matching function for call to 'g'}}
21 g(reinterpret_cast<int *const>(0)); // expected-error{{no matching function for call to 'g'}}
cxx1y-contextual-conversion-tweaks.cpp 50 operator int(); // matching and viable
54 operator int() &&; // matching and not viable
58 operator float(); // not matching
62 template<typename T> operator T(); // not matching (ambiguous anyway)
66 template<typename T> operator int(); // not matching (ambiguous anyway)
75 operator int() &&; // matching but not viable
76 operator float(); // not matching
106 operator int() &&; // matching but not viable
107 template <typename T> operator T(); // In C++1y: matching and viable, since disambiguated by L.100
111 operator int() &&; // matching but not viabl
    [all...]
  /external/libxml2/result/schemas/
derivation-ok-restriction-2-1-1_0_0.err 2 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barC_1': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
3 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barC_2': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
4 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barD_1': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
5 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barD_2': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
6 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type: A matching attribute use for the 'required' attribute use 'barB_3' of the base complex type definition '{http://FOO}typeA' is missing.
ns0_0_2.err 1 ./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': No matching global declaration available for the validation root.
ns0_1_2.err 1 ./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': No matching global declaration available for the validation root.
  /external/testng/src/main/java/org/testng/
IExpectedExceptionsHolder.java 6 * Get the message in case the Throwable thrown by the test is not matching.
14 * Check if the Throwable thrown by the test is matching with the holder logic
17 * @return true if the Throwable is matching with the holder logic, false otherwise
  /art/test/094-pattern/
info.txt 1 A simple test to exercise pattern matching.
  /external/curl/tests/data/
test1397 20 Check wildcard certificate matching function Curl_cert_hostcheck
  /external/iptables/extensions/
libxt_NOTRACK.man 1 This extension disables connection tracking for all packets matching that rule.
  /external/llvm/test/MC/AsmParser/
macro-rept-err2.s 7 // CHECK: no matching '.endr' in definition
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p3.cpp 5 decltype(lambda) foo = { 1 }; // expected-error{{no matching constructor}}
9 decltype(lambda2) bar = {}; // expected-error{{no matching constructor}}
  /external/easymock/src/org/easymock/internal/
ErrorMessage.java 20 private final boolean matching; field in class:ErrorMessage
26 public ErrorMessage(boolean matching, String message, int actualCount) {
27 this.matching = matching;
33 return matching;
46 if (matching) {
  /external/selinux/sepolgen/tests/
test_matching.py 21 import sepolgen.matching as matching namespace
28 a = matching.Match()
32 b = matching.Match()
48 ml = matching.MatchList()
51 a = matching.Match()
56 a = matching.Match()
63 a = matching.Match()
71 ml = matching.MatchList()
74 a = matching.Match(
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 5 // expected-note {{no overload of 'temp2' matching 'void (*)(int)'}}
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
28 apply(0L, &over); // expected-error {{no matching function for call to 'apply'}}
47 apply(0, &temp2<long>); // expected-error {{no matching function for call to 'apply'}}
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
77 invoke(&over); // expected-error {{no matching function for call to 'invoke'}}
85 invoke(&temp2); // expected-error {{no matching function for call to 'invoke'}}
86 invoke(&temp2<>); // expected-error {{no matching function for call to 'invoke'}}
87 invoke(&temp2<int>); // expected-error {{no matching function for call to 'invoke'}
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 16 friend void bar(); // expected-error {{no matching function found in local scope}}
26 friend void foo(); // expected-error {{no matching function 'foo' found in local scope; did you mean '::test2::foo'?}}
37 friend void foo(); // expected-error {{no matching function found in local scope}}
44 friend void foo(); // expected-error {{no matching function 'foo' found in local scope; did you mean '::test2::foo'?}}
49 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean '::test2::bar'?}}
56 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean '::test2::bar'?}}
83 friend void baz(); // expected-error {{no matching function 'baz' found in local scope; did you mean 'bar'?}}
93 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean '::test2::bar'?}}
94 friend void quux(); // expected-error {{no matching function found in local scope}}
  /external/junit/src/org/junit/matchers/
JUnitMatchers.java 16 * @return A matcher matching any collection containing element
24 * @return A matcher matching any collection containing an element matching elementMatcher
32 * @return A matcher matching any collection containing every element in elements
40 * @return A matcher matching any collection containing at least one element that matches
41 * each matcher in elementMatcher (this may be one element matching all matchers,
42 * or different elements matching each matcher)
50 * @return A matcher matching any collection in which every element matches elementMatcher
58 * @return a matcher matching any string that contains substring
  /external/skia/src/core/
SkRefDict.h 25 * Return the data associated with name[], or nullptr if no matching entry
31 * If data is nullptr, remove (if present) the entry matching name and call
32 * prev_data->unref() on the data for the matching entry.
33 * If data is not-nullptr, replace the existing entry matching name and
40 * Remove the matching entry (if found) and unref its data.

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>