Searched refs:IsEnum (Results 1 – 12 of 12) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 132 bool IsEnum = (Flag.Value & EnumMask) != 0; variable 133 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) || 134 (IsEnum && (Value & EnumMask) == Flag.Value)) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 134 bool IsEnum = (Flag.Value & EnumMask) != 0; variable 135 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) || 136 (IsEnum && (Value & EnumMask) == Flag.Value)) {
|
/external/protobuf/src/google/protobuf/ |
D | map_type_handler.h | 59 template <bool IsEnum, typename Type> 105 #define TYPE_TRAITS(FieldType, CType, WireFormatType, IsMessage, IsEnum) \ 110 static const bool kIsEnum = IsEnum; \
|
/external/spirv-llvm/lib/SPIRV/ |
D | SPIRVInternal.h | 387 bool IsEnum; member 393 BuiltinArgTypeMangleInfo():IsSigned(true), IsVoidPtr(false), IsEnum(false), in BuiltinArgTypeMangleInfo() 464 Info.IsEnum = isArgEnum(Ndx, &Info.Enum); in getTypeMangleInfo()
|
D | SPIRVUtil.cpp | 986 if (Info.IsEnum) in transTypeDesc()
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetypes.py | 52 def IsEnum(x): function 56 if IsEnum(enum): return enum
|
/external/flatbuffers/src/ |
D | idl_gen_general.cpp | 257 static bool IsEnum(const Type &type) { in IsEnum() function in flatbuffers::general::GeneralGenerator 282 if (IsEnum(type)) return WrapInNameSpace(*type.enum_def); in GenTypeBasic() 392 if (IsEnum(type)) return "(" + WrapInNameSpace(*type.enum_def) + ")"; in DestinationCast() 423 if (IsEnum(type)) return "(" + GenTypeBasic(type, false) + ")"; in SourceCast()
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 430 TYPE_TRAIT_1(__is_enum, IsEnum, KEYCXX)
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 5164 bool IsEnum = false; in checkFormatExpr() local 5167 IsEnum = true; in checkFormatExpr() 5235 << IntendedTy << IsEnum << E->getSourceRange(), in checkFormatExpr() 5287 << Name << IntendedTy << IsEnum in checkFormatExpr() 5297 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum in checkFormatExpr() 5319 << IsEnum << CSR << E->getSourceRange(), in checkFormatExpr()
|
D | SemaCodeComplete.cpp | 330 bool IsEnum(const NamedDecl *ND) const; 1123 bool ResultBuilder::IsEnum(const NamedDecl *ND) const { in IsEnum() function in ResultBuilder 3777 Filter = &ResultBuilder::IsEnum; in CodeCompleteTag()
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/ |
D | ir.go | 388 func (a Attribute) IsEnum() bool { func
|
/external/bcc/tests/cc/ |
D | catch.hpp | 1618 bool IsEnum = std::is_enum<T>::value
|