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

  /src/external/apache2/llvm/dist/clang/lib/Serialization/
GlobalModuleIndex.cpp 71 /// Trait used to read the identifier index from the on-disk hash
718 /// Trait used to generate the identifier index as an on-disk hash
815 IdentifierIndexWriterTrait Trait;
821 Generator.insert(I->first(), I->second, Trait);
832 BucketOffset = Generator.Emit(Out, Trait);
ASTWriter.cpp 1630 // Trait used for the on-disk hash table of header search information.
2990 // Trait used for the on-disk hash table used in the method pool.
3110 ASTMethodPoolTrait Trait(*this);
3149 Generator.insert(S, Data, Trait);
3158 ASTMethodPoolTrait Trait(*this);
3162 BucketOffset = Generator.Emit(Out, Trait);
3420 ASTIdentifierTableTrait Trait(
3436 if (Trait.isInterestingNonMacroIdentifier(II))
3450 (Trait.needDecls() &&
3452 Generator.insert(II, ID, Trait);
    [all...]
ASTReader.cpp 2038 ASTIdentifierLookupTrait Trait(IdTable->getInfoObj().getReader(), M,
2042 IdTable->find_hashed(Name, NameHash, &Trait);
4313 ASTIdentifierLookupTrait Trait(*this, F);
4314 auto KeyDataLen = Trait.ReadKeyDataLength(Data);
4315 auto Key = Trait.ReadKey(Data, KeyDataLen.first);
4324 auto ID = Trait.ReadIdentifierID(Data + KeyDataLen.first);
8514 ASTIdentifierLookupTrait Trait(*this, *M);
8515 auto KeyDataLen = Trait.ReadKeyDataLength(Data);
8516 auto Key = Trait.ReadKey(Data, KeyDataLen.first);
8694 ASTSelectorLookupTrait Trait(*this, M)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 3120 /// Build a new type trait expression.
3124 ExprResult RebuildTypeTrait(TypeTrait Trait,
3128 return getSema().BuildTypeTrait(Trait, StartLoc, Args, RParenLoc);
3131 /// Build a new array type trait expression.
3135 ExprResult RebuildArrayTypeTrait(ArrayTypeTrait Trait,
3140 return getSema().BuildArrayTypeTrait(Trait, StartLoc, TSInfo, DimExpr, RParenLoc);
3143 /// Build a new expression trait expression.
3147 ExprResult RebuildExpressionTrait(ExpressionTrait Trait,
3151 return getSema().BuildExpressionTrait(Trait, StartLoc, Queried, RParenLoc);
SemaDeclCXX.cpp 998 SourceLocation Loc, StringRef Trait,
1013 // Look up the trait itself, within namespace std. We can diagnose various
1018 LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait),
1029 S.Diag(Loc, diag::err_std_type_trait_not_class_template) << Trait;
1050 // Look up the member of the trait type.

Completed in 95 milliseconds