Home
last modified time | relevance | path

Searched refs:Kinds (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/AST/
DExprClassification.cpp26 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
27 static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D);
28 static Cl::Kinds ClassifyUnnamed(ASTContext &Ctx, QualType T);
29 static Cl::Kinds ClassifyMemberExpr(ASTContext &Ctx, const MemberExpr *E);
30 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
31 static Cl::Kinds ClassifyConditional(ASTContext &Ctx,
35 Cl::Kinds Kind, SourceLocation &Loc);
37 static Cl::Kinds ClassifyExprValueKind(const LangOptions &Lang, in ClassifyExprValueKind()
55 Cl::Kinds kind = ClassifyInternal(Ctx, this); in ClassifyImpl()
92 static Cl::Kinds ClassifyTemporary(QualType T) { in ClassifyTemporary()
[all …]
/external/clang/include/clang/Basic/
DMakefile34 $(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
36 …$(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tm…
DCMakeLists.txt2 clang_tablegen(Diagnostic${component}Kinds.inc
/external/clang/
Dclang-tblgen-rules.mk128 ifneq ($(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLES)),)
129 … += $(addprefix $(intermediates)/include/clang/Basic/,$(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLE…
130 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
131 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: \
133 $(CLANG_ROOT_PATH)/include/clang/Basic/Diagnostic%Kinds.td \
135 …rm-host-clang-td-to-out,clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc,%,$(@F)))
/external/clang/include/clang/AST/
DExpr.h258 enum Kinds { enum
291 explicit Classification(Kinds k, ModifiableType m) in Classification()
298 Kinds getKind() const { return static_cast<Kinds>(Kind); } in getKind()