Searched defs:Sema (Results 1 - 10 of 10) sorted by relevance

/external/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h17 /// to a Sema object received as an argument.
51 /// The parser uses the Sema instance passed into
59 class Sema { class in class:clang::ast_matchers::dynamic::Parser
61 virtual ~Sema();
91 /// use the overload below that takes a Sema.
105 /// \param S The Sema instance that will help the parser
112 Sema *S,
128 static bool parseExpression(StringRef Code, Sema *S,
135 Parser(CodeTokenizer *Tokenizer, Sema *S,
142 Sema *cons
[all...]
/external/clang/include/clang/AST/
H A DCommentSema.h33 class Sema { class in namespace:clang::comments
34 Sema(const Sema &) LLVM_DELETED_FUNCTION;
35 void operator=(const Sema &) LLVM_DELETED_FUNCTION;
73 Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr,
79 /// Returns a copy of array, owned by Sema's allocator.
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp61 class MockSema : public Parser::Sema {
105 MockSema Sema; local
106 Sema.parse("0");
107 Sema.parse("123");
108 Sema.parse("0x1f");
109 Sema.parse("12345678901");
110 Sema.parse("1a1");
111 EXPECT_EQ(5U, Sema.Values.size());
112 EXPECT_EQ(0U, Sema.Values[0].getUnsigned());
113 EXPECT_EQ(123U, Sema
120 MockSema Sema; local
141 MockSema Sema; local
[all...]
/external/clang/lib/Sema/
H A DSema.cpp1 //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
15 #include "clang/Sema/SemaInternal.h"
30 #include "clang/Sema/CXXFieldCollector.h"
31 #include "clang/Sema/DelayedDiagnostic.h"
32 #include "clang/Sema/ExternalSemaSource.h"
33 #include "clang/Sema/MultiplexExternalSemaSource.h"
34 #include "clang/Sema/ObjCMethodList.h"
35 #include "clang/Sema/PrettyDeclStackTrace.h"
36 #include "clang/Sema/Scope.h"
37 #include "clang/Sema/ScopeInf
70 Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, function in class:Sema
[all...]
H A DSemaExpr.cpp14 #include "clang/Sema/SemaInternal.h"
33 #include "clang/Sema/AnalysisBasedWarnings.h"
34 #include "clang/Sema/DeclSpec.h"
35 #include "clang/Sema/DelayedDiagnostic.h"
36 #include "clang/Sema/Designator.h"
37 #include "clang/Sema/Initialization.h"
38 #include "clang/Sema/Lookup.h"
39 #include "clang/Sema/ParsedTemplate.h"
40 #include "clang/Sema/Scope.h"
41 #include "clang/Sema/ScopeInf
8194 CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, SourceLocation Loc, Sema &Sema) argument
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp229 Parser::Sema::~Sema() {}
354 Parser::Parser(CodeTokenizer *Tokenizer, Sema *S,
358 class RegistrySema : public Parser::Sema {
381 bool Parser::parseExpression(StringRef Code, Sema *S,
400 Parser::Sema *S,
/external/clang/include/clang/Sema/
H A DLookup.h11 // Sema's name-lookup subsystem.
19 #include "clang/Sema/Sema.h"
129 LookupResult(Sema &SemaRef, const DeclarationNameInfo &NameInfo, argument
130 Sema::LookupNameKind LookupKind,
131 Sema::RedeclarationKind Redecl = Sema::NotForRedeclaration)
139 Redecl(Redecl != Sema::NotForRedeclaration),
141 Diagnose(Redecl == Sema::NotForRedeclaration),
142 AllowHidden(Redecl == Sema
150 LookupResult(Sema &SemaRef, DeclarationName Name, SourceLocation NameLoc, Sema::LookupNameKind LookupKind, Sema::RedeclarationKind Redecl = Sema::NotForRedeclaration) argument
[all...]
H A DSema.h1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===//
10 // This file defines the Sema class, which performs semantic analysis and
34 #include "clang/Sema/AnalysisBasedWarnings.h"
35 #include "clang/Sema/DeclSpec.h"
36 #include "clang/Sema/ExternalSemaSource.h"
37 #include "clang/Sema/IdentifierResolver.h"
38 #include "clang/Sema/LocInfoType.h"
39 #include "clang/Sema/ObjCMethodList.h"
40 #include "clang/Sema/Ownership.h"
41 #include "clang/Sema/ScopeInf
204 class Sema { class in namespace:clang
[all...]
/external/clang/lib/AST/
H A DCommentSema.cpp28 Sema::Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr, function in class:clang::comments::Sema
35 void Sema::setDecl(const Decl *D) {
44 ParagraphComment *Sema::actOnParagraphComment(
49 BlockCommandComment *Sema::actOnBlockCommandStart(
61 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
66 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
75 ParamCommandComment *Sema::actOnParamCommandStart(
93 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {
126 void Sema
[all...]
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp626 const llvm::fltSemantics &Sema = local
629 MinSrc.convert(Sema, APFloat::rmTowardZero, &IsInexact);
630 MaxSrc.convert(Sema, APFloat::rmTowardZero, &IsInexact);
2458 // assumption that Sema won't let anything through that we can't

Completed in 246 milliseconds