HomeSort by: relevance | last modified time | path
    Searched defs:Sema (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentSema.h 32 class Sema {
33 Sema(const Sema &) = delete;
34 void operator=(const Sema &) = delete;
72 Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr,
78 /// Returns a copy of array, owned by Sema's allocator.
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 16 /// to a Sema object received as an argument.
59 /// The parser uses the Sema instance passed into
67 class Sema {
69 virtual ~Sema();
135 /// Sema implementation that uses the matcher registry to process the
137 class RegistrySema : public Parser::Sema {
172 /// \param S The Sema instance that will help the parser
184 parseMatcherExpression(StringRef &MatcherCode, Sema *S,
187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) {
201 /// \param S The Sema instance that will help the parse
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ConversionChecker.cpp 149 const llvm::fltSemantics &Sema = AC.getFloatTypeSemantics(DestType);
150 RepresentsUntilExp = llvm::APFloat::semanticsPrecision(Sema);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFixedPoint.h 102 APFixedPoint(const APInt &Val, const FixedPointSemantics &Sema)
103 : Val(Val, !Sema.isSigned()), Sema(Sema) {
104 assert(Val.getBitWidth() == Sema.getWidth() &&
105 "The value should have a bit width that matches the Sema width");
108 APFixedPoint(uint64_t Val, const FixedPointSemantics &Sema)
109 : APFixedPoint(APInt(Sema.getWidth(), Val, Sema.isSigned()), Sema) {}
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
Sema.cpp 1 //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
32 #include "clang/Sema/CXXFieldCollector.h"
33 #include "clang/Sema/DelayedDiagnostic.h"
34 #include "clang/Sema/ExternalSemaSource.h"
35 #include "clang/Sema/Initialization.h"
36 #include "clang/Sema/MultiplexExternalSemaSource.h"
37 #include "clang/Sema/ObjCMethodList.h"
38 #include "clang/Sema/Scope.h"
39 #include "clang/Sema/ScopeInfo.h"
40 #include "clang/Sema/SemaConsumer.h
96 namespace sema { namespace in namespace:clang
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 28 Sema::Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr,
36 void Sema::setDecl(const Decl *D) {
45 ParagraphComment *Sema::actOnParagraphComment(
50 BlockCommandComment *Sema::actOnBlockCommandStart(
62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
80 ParamCommandComment *Sema::actOnParamCommandStart(
98 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {
131 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 942 const llvm::fltSemantics &Sema =
945 MinSrc.convert(Sema, APFloat::rmTowardZero, &IsInexact);
946 MaxSrc.convert(Sema, APFloat::rmTowardZero, &IsInexact);
1362 // Sema should add casts to make sure that the source expression's type is
3621 // Sema::handleFixedPointConversions().
3794 // assumption that Sema won't let anything through that we can't

Completed in 22 milliseconds