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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedEnumerationPropertyTearOff.h 29 template<typename EnumType>
35 if (!property || property > SVGPropertyTraits<EnumType>::highestEnumValue()) {
42 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property)
45 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
48 EnumType& currentAnimatedValue()
51 ASSERT(animatedValue <= SVGPropertyTraits<EnumType>::highestEnumValue());
52 return reinterpret_cast<EnumType&>(animatedValue);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedEnumeration.h 32 #define DECLARE_ANIMATED_ENUMERATION(UpperProperty, LowerProperty, EnumType) \
33 DECLARE_ANIMATED_PROPERTY(SVGAnimatedEnumerationPropertyTearOff<EnumType>, EnumType, UpperProperty, LowerProperty)
35 #define DEFINE_ANIMATED_ENUMERATION(OwnerType, DOMAttribute, UpperProperty, LowerProperty, EnumType) \
36 DEFINE_ANIMATED_PROPERTY(AnimatedEnumeration, OwnerType, DOMAttribute, DOMAttribute.localName(), UpperProperty, LowerProperty, SVGAnimatedEnumerationPropertyTearOff<EnumType>, EnumType)
  /external/chromium_org/chrome/browser/chromeos/cros/
enum_mapper.h 36 template <typename EnumType>
41 const EnumType value;
44 EnumMapper(const Pair* list, size_t num_entries, EnumType unknown)
52 EnumType Get(const std::string& type) const {
59 std::string GetKey(EnumType type) const {
67 typedef typename std::map<std::string, EnumType> EnumMap;
68 typedef typename std::map<EnumType, std::string> InverseEnumMap;
73 EnumType unknown_value_;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
generated_enum_reflection.h 66 template<typename EnumType>
69 EnumType* value) {
72 *value = static_cast<EnumType>(tmp);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLDebugRendererInfo.h 37 enum EnumType {
  /external/chromium_org/tools/json_schema_compiler/test/
enums_unittest.cc 15 EnumType enum_type;
18 EXPECT_TRUE(EnumType::Populate(value, &enum_type));
19 EXPECT_EQ(EnumType::TYPE_ONE, enum_type.type);
23 EnumType enum_type;
26 EXPECT_FALSE(EnumType::Populate(value, &enum_type));
  /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/AST/
Type.cpp 54 ND = ty->getAs<EnumType>()->getDecl();
631 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
647 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
711 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
727 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
751 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 401 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
416 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
467 } else if (const EnumType *EnumTy = Ty->getAs<EnumType>()) {
488 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
735 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
    [all...]
CodeGenTBAA.cpp 152 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) {
CodeGenTypes.cpp 567 const EnumDecl *ED = cast<EnumType>(Ty)->getDecl();
  /external/clang/lib/Analysis/
FormatString.cpp 258 if (const EnumType *ETy = argTy->getAs<EnumType>())
275 if (const EnumType *ETy = argTy->getAs<EnumType>())
PrintfFormatString.cpp 434 if (const EnumType *ETy = QT->getAs<EnumType>())
ScanfFormatString.cpp 384 if (const EnumType *ETy = QT->getAs<EnumType>())
  /external/chromium_org/sync/internal_api/public/base/
enum_set.h 45 typedef E EnumType;
  /external/clang/include/clang/AST/
CanonicalType.h 615 struct CanProxyAdaptor<EnumType> : public CanProxyBase<EnumType> {
Type.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 218 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
219 if (!enumType || enumType->getDecl()->isCompleteDefinition())
224 EnumDecl *ED = enumType->getDecl();
594 } else if (isa<EnumType>(T)) {
    [all...]
SemaLambda.cpp 238 /// EnumType::getDecl() (i.e. the definition).
292 if (const EnumType *ET = E->getType()->getAs<EnumType>()) {
    [all...]
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 22 class EnumType(type):
24 super(EnumType, self).__init__(name, bases, attributes)
85 Enum = EnumType('Enum', (), {})
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 533 if (const EnumType *EnumTy = qt->getAs<EnumType>()) {
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 547 if (const EnumType *AsEnum = dyn_cast<EnumType>(Node.getTypePtr()))
    [all...]

Completed in 565 milliseconds

1 2 3