HomeSort by relevance Sort by last modified time
    Searched refs:EnumType (Results 1 - 25 of 46) sorted by null

1 2

  /external/webkit/Source/WebKit2/Platform/CoreIPC/
MessageID.h 119 template <typename EnumType>
120 explicit MessageID(EnumType messageKind, unsigned char flags = 0)
121 : m_messageID(stripMostSignificantBit(flags << 24 | (MessageKindTraits<EnumType>::messageClass) << 16 | messageKind))
133 template <typename EnumType>
134 EnumType get() const
136 ASSERT(getClass() == MessageKindTraits<EnumType>::messageClass);
137 return static_cast<EnumType>(m_messageID & 0xffff);
146 template <typename EnumType>
147 bool operator==(EnumType messageKind) const
  /external/webkit/Source/WebCore/loader/icon/
IconDatabaseBase.h 76 template<typename EnumType>
79 typedef void (*CallbackFunction)(EnumType, void*);
91 void performCallback(EnumType result)
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 137 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) {
TargetInfo.cpp 370 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
385 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
442 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
469 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
710 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
    [all...]
CodeGenTypes.cpp 534 const EnumDecl *ED = cast<EnumType>(Ty)->getDecl();
CGExpr.cpp     [all...]
  /external/clang/lib/AST/
Type.cpp 53 ND = ty->getAs<EnumType>()->getDecl();
612 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
628 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
692 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
708 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
732 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
    [all...]
ASTContext.cpp     [all...]
TypePrinter.cpp 920 void TypePrinter::printEnumBefore(const EnumType *T, raw_ostream &OS) {
923 void TypePrinter::printEnumAfter(const EnumType *T, raw_ostream &OS) { }
    [all...]
  /external/protobuf/src/google/protobuf/
generated_message_reflection.h 405 template<typename EnumType>
408 EnumType* value) {
411 *value = static_cast<EnumType>(tmp);
  /external/clang/lib/Analysis/
FormatString.cpp 258 if (const EnumType *ETy = argTy->getAs<EnumType>())
275 if (const EnumType *ETy = argTy->getAs<EnumType>())
PrintfFormatString.cpp 416 if (const EnumType *ETy = QT->getAs<EnumType>())
ScanfFormatString.cpp 365 if (const EnumType *ETy = QT->getAs<EnumType>())
  /external/clang/include/clang/AST/
CanonicalType.h 660 struct CanProxyAdaptor<EnumType> : public CanProxyBase<EnumType> {
Type.h     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/utils/ABITest/
TypeGen.py 58 class EnumType(Type):
273 return EnumType(n, enumerators)
ABITestGen.py 215 elif isinstance(t, EnumType):
291 elif isinstance(t, EnumType):
321 elif isinstance(t, EnumType):
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 239 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
240 if (!enumType || enumType->getDecl()->isCompleteDefinition())
245 EnumDecl *ED = enumType->getDecl();
610 } else if (isa<EnumType>(T)) {
    [all...]
SemaStmt.cpp     [all...]
SemaChecking.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaCast.cpp     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 864 DEF_TRAVERSE_TYPE(EnumType, { })
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 861 if (OrigTy->getAs<EnumType>() || isEnumConstant(OrigArg))
    [all...]

Completed in 1354 milliseconds

1 2