OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:matching
(Results
1 - 25
of
5685
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
rept-err.errwarn
1
-:3: error: rept without
matching
endr
/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'}}
attr-noreturn.cpp
46
f3(f2); // expected-error{{no
matching
function for call}}
99
// expected-note@+5 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'baz'
matching
'void (*)(int) __attribute__((noreturn))' for 1st argument}}
100
// expected-note@+4 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'qux'
matching
'void (*)(int) __attribute__((noreturn))' for 1st argument}}
101
// expected-note@+3 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'bar'
matching
'void (*)(int) __attribute__((noreturn))' for 1st argument}}
102
// expected-note@+2 {{candidate function [with T = void (*)(int)] not viable: no overload of 'bar'
matching
'void (*)(int)' for 1st argument}}
103
// expected-note@+1 {{candidate function [with T = void (int)] not viable: no overload of 'bar'
matching
'void (*)(int)' for 1st argument}}
106
// expected-note@+1 {{candidate function not viable: no overload of 'bar'
matching
'void (*)(int)' for 1st argument}}
111
// expected-note@+2 {{candidate function not viable: no overload of 'baz'
matching
'void (*)(int) __attribute__((noreturn))' for 1st argument}}
112
// expected-note@+1 {{candidate function not viable: no overload of 'qux'
matching
'void (*)(int) __attribute__((noreturn))' for 1st argument}}
120
// expected-note@+1 {{candidate function not viable: no overload of 'bar'
matching
'fptr_t' (aka 'void (*)(int)') for 1st argument}
[
all
...]
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
...]
pragma-visibility.cpp
4
#pragma GCC visibility pop // expected-error{{#pragma visibility pop with no
matching
#pragma visibility push}}
9
#pragma GCC visibility push(protected) // expected-error{{#pragma visibility push with no
matching
#pragma visibility pop}}
12
#pragma GCC visibility pop // expected-error{{#pragma visibility pop with no
matching
#pragma visibility push}}
/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'?}}
36
friend void foo(); // expected-error {{no
matching
function found in local scope}}
43
friend void foo(); // expected-error {{no
matching
function found in local scope}}
48
friend void bar(); // expected-error {{no
matching
function 'bar' found in local scope; did you mean '::test2::bar'?}}
53
friend void bar(); // expected-error {{no
matching
function found in local scope}}
80
friend void baz(); // expected-error {{no
matching
function 'baz' found in local scope; did you mean 'bar'?}}
88
friend void bar(); // expected-error {{no
matching
function found in local scope}}
89
friend void quux(); // expected-error {{no
matching
function found in local scope}}
/art/test/094-pattern/
info.txt
1
A simple test to exercise pattern
matching
.
/external/harfbuzz_ng/test/shaping/tests/
MANIFEST
2
context-
matching
.tests
/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/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/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/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/chromium_org/third_party/skia/src/core/
SkRefDict.h
25
* Return the data associated with name[], or NULL if no
matching
entry
31
* If data is NULL, 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-NULL, replace the existing entry
matching
name and
40
* Remove the
matching
entry (if found) and unref its data.
/external/clang/test/SemaCUDA/
function-target.cu
16
h1d(); // expected-error {{no
matching
function}}
19
h1ds x; // expected-error {{no
matching
constructor}}
28
d1h(); // expected-error {{no
matching
function}}
40
hd1h(); // expected-error {{no
matching
function}}
41
hd1d(); // expected-error {{no
matching
function}}
/external/skia/src/core/
SkRefDict.h
25
* Return the data associated with name[], or NULL if no
matching
entry
31
* If data is NULL, 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-NULL, replace the existing entry
matching
name and
40
* Remove the
matching
entry (if found) and unref its data.
/external/clang/test/FixIt/
fixit-function-call.cpp
17
// CHECK: error: no
matching
function for call to 'f1
26
// CHECK: error: no
matching
function for call to 'f1
33
// CHECK: error: no
matching
function for call to 'f0
45
// CHECK: error: no
matching
function for call to 'm
54
// CHECK: error: no
matching
function for call to 'm
81
// CHECK: error: no
matching
function for call to 'br
85
// CHECK: error: no
matching
function for call to 'bp
89
// CHECK: error: no
matching
function for call to 'dv
93
// CHECK: error: no
matching
function for call to 'dv
97
// CHECK: error: no
matching
function for call to 'b
[
all
...]
Completed in 724 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>