OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ambiguity
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp
27
// copied because overload resolution results in an
ambiguity
or a function
53
struct
Ambiguity
{
54
Ambiguity
(const
Ambiguity
&);
55
Ambiguity
(volatile
Ambiguity
&);
60
Ambiguity
A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because field 'A' has multiple copy constructors}}
73
// resolution results in an
ambiguity
or a function that is deleted or
75
struct AmbiguousCopyBase :
Ambiguity
{ // expected-note 2{{copy constructor of 'AmbiguousCopyBase' is implicitly deleted because base class '
Ambiguity
' has multiple copy constructors}
[
all
...]
p11.0x.move.cpp
25
// copied because overload resolution results in an
ambiguity
or a function
47
struct
Ambiguity
{
48
Ambiguity
(const
Ambiguity
&&);
49
Ambiguity
(volatile
Ambiguity
&&);
53
Ambiguity
A;
65
// resolution results in an
ambiguity
or a function that is deleted or
67
struct AmbiguousMoveBase :
Ambiguity
{
/external/clang/include/clang/Sema/
Lookup.h
28
///
ambiguity
. Use the getKind() method to determine which of these
54
/// @brief Name lookup results in an
ambiguity
; use
55
/// getAmbiguityKind to figure out what kind of
ambiguity
61
/// Name lookup results in an
ambiguity
because multiple
75
/// Name lookup results in an
ambiguity
because multiple
89
/// Name lookup results in an
ambiguity
because multiple definitions
104
/// Name lookup results in an
ambiguity
because an entity with a
265
return
Ambiguity
;
416
AmbiguityKind SavedAK =
Ambiguity
;
421
//
ambiguity
kind
[
all
...]
/external/bison/data/
glr.c
[
all
...]
/external/clang/lib/Sema/
SemaLookup.cpp
327
(Decls.size() == 1 && (
Ambiguity
== AmbiguousBaseSubobjects ||
328
Ambiguity
== AmbiguousBaseSubobjectTypes)));
330
(
Ambiguity
== AmbiguousBaseSubobjectTypes ||
331
Ambiguity
== AmbiguousBaseSubobjects)));
343
// Fast case: no possible
ambiguity
.
385
// no
ambiguity
if they all refer to the same type, so unique based on the
[
all
...]
Completed in 616 milliseconds