HomeSort by: relevance | last modified time | path
    Searched refs:Enumerators (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeEnum.cpp 37 // then A and B are the "enumerators" of the "enum" Foo. And we need
57 std::vector<EnumeratorRecord> Enumerators;
80 Enumerators.push_back(Record);
91 return Enumerators.size();
102 ClassParent, Enumerators[Index]);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 4181 // values (functions, enumerators, function templates, etc.) are
4349 /// Information that allows to avoid completing redundant enumerators.
4358 const CoveredEnumerators &Enumerators) {
4359 NestedNameSpecifier *Qualifier = Enumerators.SuggestedQualifier;
4360 if (Context.getLangOpts().CPlusPlus && !Qualifier && Enumerators.Seen.empty()) {
4361 // If there are no prior enumerators in C++, check whether we have to
4362 // qualify the names of the enumerators that we suggest, because they
4368 for (auto *E : Enum->enumerators()) {
4369 if (Enumerators.Seen.count(E))
4494 // FIXME: collect covered enumerators in cases like
    [all...]
SemaTemplateInstantiateDecl.cpp 1386 SmallVector<Decl*, 4> Enumerators;
1389 for (auto *EC : Pattern->enumerators()) {
1423 Enumerators.push_back(EnumConst);
1436 Enumerators, nullptr, ParsedAttributesView());
3135 // must produce (conflicting) enumerators.
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 3102 SmallVector<llvm::Metadata *, 16> Enumerators;
3105 for (const auto *Enum : ED->enumerators()) {
3108 Enumerators.push_back(
3113 llvm::DINodeArray EltArray = DBuilder.getOrCreateArray(Enumerators);

Completed in 42 milliseconds