Searched refs:Kinds (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/AST/
H A 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);
40 Cl::Kinds kind = ClassifyInternal(Ctx, this);
77 static Cl::Kinds ClassifyTemporary(QualType T) {
88 static Cl::Kinds ClassifyExprValueKin
[all...]
/external/clang/include/clang/Driver/
H A DSanitizerArgs.h122 /// 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/
H A DSanitizerArgs.cpp45 unsigned DiagnosedKinds = 0; // All Kinds we have diagnosed up to now.
208 unsigned SanitizerArgs::expandGroups(unsigned Kinds) { argument
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, argument
221 unsigned MaskedKinds = Kinds & Mask;
224 Kinds &= ~Mask;
237 unsigned Kinds,
246 filterUnsupportedMask(TC, Kinds, Threa
236 filterUnsupportedKinds(const ToolChain &TC, unsigned Kinds, const llvm::opt::ArgList &Args, const llvm::opt::Arg *A, bool DiagnoseErrors, unsigned &DiagnosedKinds) argument
[all...]
/external/clang/include/clang/Basic/
H A DMakefile35 $(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/
H A Dclang-tblgen-rules.mk174 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/
H A DMarshallers.h216 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/
H A DFormat.cpp1326 bool tryMergeTokens(ArrayRef<tok::TokenKind> Kinds) { argument
1327 if (Tokens.size() < Kinds.size())
1331 Tokens.end() - Kinds.size();
1332 if (!First[0]->is(Kinds[0]))
1335 for (unsigned i = 1; i < Kinds.size(); ++i) {
1336 if (!First[i]->is(Kinds[i]) || First[i]->WhitespaceRange.getBegin() !=
1341 Tokens.resize(Tokens.size() - Kinds.size() + 1);
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp500 CallInst::TailCallKind Kinds[] = {CallInst::TCK_None, CallInst::TCK_Tail, local
502 for (CallInst::TailCallKind TCK : Kinds) {
/external/clang/include/clang/AST/
H A DExpr.h304 enum Kinds { enum in class:clang::Expr::Classification
337 explicit Classification(Kinds k, ModifiableType m)
344 Kinds getKind() const { return static_cast<Kinds>(Kind); }

Completed in 170 milliseconds