Searched defs:IsAmbiguous (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp81 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
101 bool &IsAmbiguous,
114 Comparator, FileName, IsAmbiguous,
116 if (!Result.empty() || IsAmbiguous)
127 IsAmbiguous = true;
184 bool IsAmbiguous = false; local
185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
186 if (IsAmbiguous)
99 findEquivalent(const PathComparator& Comparator, StringRef FileName, bool &IsAmbiguous, unsigned ConsumedLength = 0) const argument
/external/clang/lib/Parse/
H A DParseTentative.cpp1657 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument
1692 if (IsAmbiguous && TPR == TPResult::Ambiguous)
1693 *IsAmbiguous = true;
H A DParseDecl.cpp5417 bool IsAmbiguous = false; local
5422 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
5430 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
5572 bool IsAmbiguous,
5726 IsAmbiguous,
5569 ParseFunctionDeclarator(Declarator &D, ParsedAttributes &FirstArgAttrs, BalancedDelimiterTracker &Tracker, bool IsAmbiguous, bool RequiresArg) argument
/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp59 struct IsAmbiguous { struct
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}}
H A Dp11.0x.move.cpp53 struct IsAmbiguous { struct
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}}
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dtuple_points_to_analysis.cc46 bool PointsToSet::IsAmbiguous() const { function in class:xla::PointsToSet
/external/clang/include/clang/Lex/
H A DMacroInfo.h570 bool IsAmbiguous)
571 : LatestLocalAndAmbiguous(MD, IsAmbiguous), ModuleMacros(MMs) {}
569 MacroDefinition(DefMacroDirective *MD, ArrayRef<ModuleMacro *> MMs, bool IsAmbiguous) argument
H A DPreprocessor.h376 : MD(MD), ActiveModuleMacrosGeneration(0), IsAmbiguous(false) {}
386 bool IsAmbiguous; member in struct:clang::Preprocessor::ModuleMacroInfo
449 return Info ? Info->IsAmbiguous : false;
472 Info->IsAmbiguous = false;
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp180 bool IsAmbiguous = false; local
203 IsAmbiguous = true;
208 Info.IsAmbiguous = IsAmbiguous && !IsSystemMacro;
/external/clang/include/clang/Parse/
H A DParser.h1962 bool IsAmbiguous; local
1964 return isCXXTypeId(TypeIdUnambiguous, IsAmbiguous);
1983 /// initializer. Sets 'IsAmbiguous' to true to indicate that this declaration
1987 bool isCXXFunctionDeclarator(bool *IsAmbiguous = nullptr);
2355 bool IsAmbiguous,
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3330 IsAmbiguous = 2, enumerator in enum:__anon1650::MSRTTIClass::__anon1651
3455 Class.Flags |= MSRTTIClass::IsAmbiguous;
3480 if (Class.Flags & MSRTTIClass::IsAmbiguous)
4026 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous))

Completed in 427 milliseconds