HomeSort by relevance Sort by last modified time
    Searched refs:Kinds (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/AST/
ExprClassification.cpp 26 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);
40 Cl::Kinds kind = ClassifyInternal(Ctx, this);
77 static Cl::Kinds ClassifyTemporary(QualType T) {
88 static Cl::Kinds ClassifyExprValueKind(const LangOptions &Lang
    [all...]
  /external/clang/include/clang/Driver/
SanitizerArgs.h 122 /// Return the smallest superset of sanitizer set \p Kinds such that each
123 /// member of each group whose flag is set in \p Kinds has its flag set in the
125 static unsigned expandGroups(unsigned Kinds);
127 /// Return the subset of \p Kinds supported by toolchain \p TC. If
129 /// removed from \p Kinds.
130 static unsigned filterUnsupportedKinds(const ToolChain &TC, unsigned Kinds,
136 /// The flags in \p Mask are unsupported by \p TC. If present in \p Kinds,
139 static void filterUnsupportedMask(const ToolChain &TC, unsigned &Kinds,
  /external/clang/lib/Driver/
SanitizerArgs.cpp 40 unsigned AllAdd = 0; // All kinds of sanitizers that were turned on
45 unsigned DiagnosedKinds = 0; // All Kinds we have diagnosed up to now.
208 unsigned SanitizerArgs::expandGroups(unsigned Kinds) {
210 #define SANITIZER_GROUP(NAME, ID, ALIAS) if (Kinds & ID##Group) Kinds |= ID;
212 return Kinds;
215 void SanitizerArgs::filterUnsupportedMask(const ToolChain &TC, unsigned &Kinds,
221 unsigned MaskedKinds = Kinds & Mask;
224 Kinds &= ~Mask;
225 // Do we have new kinds to diagnose
    [all...]
  /external/clang/include/clang/Basic/
Makefile 35 $(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
36 $(Echo) "Building Clang $(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) diagnostic tables with tblgen"
37 $(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
  /external/clang/
clang-tblgen-rules.mk 86 $(call transform-host-clang-td-to-out,clang-attr-parsed-attr-kinds)
174 ifneq ($(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLES)),)
175 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/include/clang/Basic/,$(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLES)))
176 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
177 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: \
179 $(CLANG_ROOT_PATH)/include/clang/Basic/Diagnostic%Kinds.td \
181 $(call transform-host-clang-td-to-out,clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc,%,$(@F)))
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 216 std::vector<ArgKind> &Kinds) const {
217 Kinds.push_back(ArgKinds[ArgNo]);
368 std::vector<ArgKind> &Kinds) const {
369 Kinds.push_back(ArgsKind);
561 std::vector<ArgKind> &Kinds) const {
564 O->getArgKinds(ThisKind, ArgNo, Kinds);
618 std::vector<ArgKind> &Kinds) const {
619 Kinds.push_back(ThisKind);
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 500 CallInst::TailCallKind Kinds[] = {CallInst::TCK_None, CallInst::TCK_Tail,
502 for (CallInst::TailCallKind TCK : Kinds) {
  /external/clang/include/clang/AST/
Expr.h 304 enum Kinds {
337 explicit Classification(Kinds k, ModifiableType m)
344 Kinds getKind() const { return static_cast<Kinds>(Kind); }
407 /// Object kinds are meaningful only for expressions that yield an
    [all...]

Completed in 228 milliseconds