OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAmbiguous
(Results
1 - 9
of
9
) sorted by null
/external/clang/test/CXX/special/class.copy/
p11.0x.move.cpp
53
struct
IsAmbiguous
{
55
IsAmbiguous
(
IsAmbiguous
&&); // expected-note{{copy constructor is implicitly deleted because '
IsAmbiguous
' has a user-declared move constructor}}
57
IsAmbiguous
::
IsAmbiguous
(
IsAmbiguous
&&) = default; // expected-error{{would delete}}
63
IsAmbiguous
IA; // expected-note{{deleted because field 'IA' has a deleted move constructor}}
p11.0x.copy.cpp
59
struct
IsAmbiguous
{
61
Ambiguity A; // expected-note 2{{copy constructor of '
IsAmbiguous
' is implicitly deleted because field 'A' has multiple copy constructors}}
62
IsAmbiguous
();
64
IsAmbiguous
IAa;
65
IsAmbiguous
IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}}
68
IsAmbiguous
IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
/external/clang/lib/Tooling/
FileMatchTrie.cpp
79
/// If multiple paths fit 'FileName' equally well, \c
IsAmbiguous
is set to
99
bool &
IsAmbiguous
,
112
Comparator, FileName,
IsAmbiguous
,
114
if (!Result.empty() ||
IsAmbiguous
)
125
IsAmbiguous
= true;
180
bool
IsAmbiguous
= false;
181
StringRef Result = Root->findEquivalent(*Comparator, FileName,
IsAmbiguous
);
182
if (
IsAmbiguous
)
/external/clang/include/clang/Lex/
MacroInfo.h
356
bool
IsAmbiguous
: 1;
366
IsImported(false),
IsAmbiguous
(false),
481
bool
isAmbiguous
() const { return
IsAmbiguous
; }
484
void setAmbiguous(bool Val) {
IsAmbiguous
= Val; }
/external/clang/lib/Parse/
ParseTentative.cpp
403
bool Parser::isCXXTypeId(TentativeCXXTypeIdContext Context, bool &
isAmbiguous
) {
405
isAmbiguous
= false;
443
isAmbiguous
= true;
452
isAmbiguous
= true;
[
all
...]
ParseDecl.cpp
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
[
all
...]
/external/clang/include/clang/Sema/
DeclSpec.h
[
all
...]
/external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp
[
all
...]
Completed in 156 milliseconds