Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DScopedPrinter.h132 bool IsEnum = (Flag.Value & EnumMask) != 0; variable
133 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) ||
134 (IsEnum && (Value & EnumMask) == Flag.Value)) {
/external/protobuf/src/google/protobuf/
Dmap_type_handler.h59 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/
DSPIRVInternal.h387 bool IsEnum; member
393 BuiltinArgTypeMangleInfo():IsSigned(true), IsVoidPtr(false), IsEnum(false), in BuiltinArgTypeMangleInfo()
464 Info.IsEnum = isArgEnum(Ndx, &Info.Enum); in getTypeMangleInfo()
DSPIRVUtil.cpp986 if (Info.IsEnum) in transTypeDesc()
/external/python/cpython2/Lib/plat-mac/
Daetypes.py52 def IsEnum(x): function
56 if IsEnum(enum): return enum
/external/flatbuffers/src/
Didl_gen_general.cpp228 static bool IsEnum(const Type& type) { in IsEnum() function in flatbuffers::general::GeneralGenerator
249 if (IsEnum(type)) return WrapInNameSpace(*type.enum_def); in GenTypeBasic()
369 if (IsEnum(type)) return "(" + WrapInNameSpace(*type.enum_def) + ")"; in DestinationCast()
398 if (IsEnum(type)) return "(" + GenTypeBasic(type, false) + ")"; in SourceCast()
/external/v8/src/parsing/
Dpreparser.h86 bool IsEnum() const { return type_ == kEnumIdentifier; } in IsEnum() function
1050 DCHECK(!expr.AsIdentifier().IsEnum());
/external/clang/include/clang/Basic/
DTokenKinds.def430 TYPE_TRAIT_1(__is_enum, IsEnum, KEYCXX)
/external/clang/lib/Sema/
DSemaChecking.cpp5164 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()
DSemaCodeComplete.cpp330 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()