Home
last modified time | relevance | path

Searched refs:IsAmbiguous (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/CXX/special/class.copy/
Dp11.0x.move.cpp53 struct IsAmbiguous { struct
55IsAmbiguous(IsAmbiguous&&); // expected-note{{copy constructor is implicitly deleted because 'IsAm… argument
57 IsAmbiguous::IsAmbiguous(IsAmbiguous&&) = default; // expected-error{{would delete}}
63 IsAmbiguous IA; // expected-note{{deleted because field 'IA' has a deleted move constructor}}
Dp11.0x.copy.cpp59 struct IsAmbiguous { struct
62 IsAmbiguous();
64 IsAmbiguous IAa;
65 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}}
68IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because fiel…
/external/clang/lib/Tooling/
DFileMatchTrie.cpp101 bool &IsAmbiguous, in findEquivalent() argument
114 Comparator, FileName, IsAmbiguous, in findEquivalent()
116 if (!Result.empty() || IsAmbiguous) in findEquivalent()
127 IsAmbiguous = true; in findEquivalent()
184 bool IsAmbiguous = false; in findEquivalent() local
185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous); in findEquivalent()
186 if (IsAmbiguous) in findEquivalent()
/external/clang/include/clang/Lex/
DMacroInfo.h570 bool IsAmbiguous) in MacroDefinition() argument
571 : LatestLocalAndAmbiguous(MD, IsAmbiguous), ModuleMacros(MMs) {} in MacroDefinition()
DPreprocessor.h376 : MD(MD), ActiveModuleMacrosGeneration(0), IsAmbiguous(false) {} in ModuleMacroInfo()
386 bool IsAmbiguous; member
449 return Info ? Info->IsAmbiguous : false; in isAmbiguous()
472 Info->IsAmbiguous = false; in overrideActiveModuleMacros()
/external/clang/lib/Parse/
DParseTentative.cpp1657 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { in isCXXFunctionDeclarator() argument
1692 if (IsAmbiguous && TPR == TPResult::Ambiguous) in isCXXFunctionDeclarator()
1693 *IsAmbiguous = true; in isCXXFunctionDeclarator()
DParseDecl.cpp5417 bool IsAmbiguous = false; in ParseDirectDeclarator() local
5422 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous); in ParseDirectDeclarator()
5430 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous); in ParseDirectDeclarator()
5572 bool IsAmbiguous, in ParseFunctionDeclarator() argument
5726 IsAmbiguous, in ParseFunctionDeclarator()
/external/clang/lib/Lex/
DPPMacroExpansion.cpp180 bool IsAmbiguous = false; in updateModuleMacroInfo() local
203 IsAmbiguous = true; in updateModuleMacroInfo()
208 Info.IsAmbiguous = IsAmbiguous && !IsSystemMacro; in updateModuleMacroInfo()
/external/clang/include/clang/Parse/
DParser.h1962 bool IsAmbiguous; in isTypeIdUnambiguously() local
1964 return isCXXTypeId(TypeIdUnambiguous, IsAmbiguous); in isTypeIdUnambiguously()
1987 bool isCXXFunctionDeclarator(bool *IsAmbiguous = nullptr);
2355 bool IsAmbiguous,
/external/clang/lib/CodeGen/
DMicrosoftCXXABI.cpp3330 IsAmbiguous = 2, enumerator
3455 Class.Flags |= MSRTTIClass::IsAmbiguous; in detectAmbiguousBases()
3480 if (Class.Flags & MSRTTIClass::IsAmbiguous) in getClassHierarchyDescriptor()
4026 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous)) in getCatchableTypeArray()
/external/clang/include/clang/Sema/
DDeclSpec.h1527 bool IsAmbiguous,