Home
last modified time | relevance | path

Searched refs:IsEnum (Results 1 – 10 of 10) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DScopedPrinter.h134 bool IsEnum = (Flag.Value & EnumMask) != 0; variable
135 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) ||
136 (IsEnum && (Value & EnumMask) == Flag.Value)) {
/netbsd/external/apache2/llvm/dist/clang/lib/Format/
H A DUnwrappedLineParser.h102 bool parseBracedList(bool ContinueOnSemicolons = false, bool IsEnum = false,
H A DUnwrappedLineParser.cpp1786 bool IsEnum, in parseBracedList() argument
1827 if (IsEnum && !Style.AllowShortEnumsOnASingleLine) in parseBracedList()
1887 if (IsEnum && !Style.AllowShortEnumsOnASingleLine) in parseBracedList()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAsm.cpp739 bool IsEnum = isa<clang::EnumType>(T); in FillInlineAsmIdentifierInfo() local
742 IsEnum = true; in FillInlineAsmIdentifierInfo()
743 if (IsEnum && Res->EvaluateAsRValue(Eval, Context)) in FillInlineAsmIdentifierInfo()
H A DSemaChecking.cpp8841 bool IsEnum = false; in checkFormatExpr() local
8844 IsEnum = true; in checkFormatExpr()
8928 << IntendedTy << IsEnum << E->getSourceRange(), in checkFormatExpr()
8982 EmitFormatDiagnostic(S.PDiag(Diag) << Name << IntendedTy << IsEnum in checkFormatExpr()
8992 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum in checkFormatExpr()
9022 << IsEnum << CSR << E->getSourceRange(), in checkFormatExpr()
H A DSemaCodeComplete.cpp367 bool IsEnum(const NamedDecl *ND) const;
1474 bool ResultBuilder::IsEnum(const NamedDecl *ND) const { in IsEnum() function in ResultBuilder
5472 Filter = &ResultBuilder::IsEnum; in CodeCompleteTag()
H A DSemaTemplate.cpp745 bool IsEnum = false; in ActOnDependentIdExpression() local
747 IsEnum = dyn_cast_or_null<EnumType>(NNS->getAsType()); in ActOnDependentIdExpression()
749 if (!MightBeCxx11UnevalField && !isAddressOfOperand && !IsEnum && in ActOnDependentIdExpression()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTokenKinds.def490 TYPE_TRAIT_1(__is_enum, IsEnum, KEYCXX)
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp597 bool IsEnum = (Flag.Value & EnumMask) != 0; local
598 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) ||
599 (IsEnum && (Value & EnumMask) == Flag.Value)) {
/netbsd/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go426 func (a Attribute) IsEnum() bool { func