Searched refs:Super (Results 1 - 25 of 35) sorted by relevance

12

/external/qemu/distrib/sdl-1.2.12/src/timer/mint/
H A DSDL_systimer.c65 old_stack = (void *)Super(0);
67 Super(old_stack);
81 void *old_stack = (void *)Super(0);
83 Super(old_stack);
112 old_stack = (void *)Super(0);
114 Super(old_stack);
128 void *old_stack = (void *)Super(0);
130 Super(old_stack);
/external/clang/test/Index/
H A Dcomplete-member-access.m8 @interface Super {
12 @interface Int : Super<MyProtocol>
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
H A DSDL_xbiosevents.c68 oldpile=(void *)Super(0);
78 Super(oldpile);
95 oldpile=(void *)Super(NULL);
101 Super(oldpile);
/external/chromium/base/win/
H A Devent_trace_provider.h36 typedef EtwMofEventBase<N> Super; typedef in class:base::win::EtwMofEvent
39 memset(static_cast<Super*>(this), 0, sizeof(Super));
44 memset(static_cast<Super*>(this), 0, sizeof(Super));
45 header.Size = sizeof(Super);
54 memset(static_cast<Super*>(this), 0, sizeof(Super));
55 header.Size = sizeof(Super);
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-right.h3 @interface Super
6 @interface A : Super
7 - (Super*)init;
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/
H A DSDL_mintaudio_dma8.c163 oldpile=(void *)Super(0);
165 Super(oldpile);
173 oldpile=(void *)Super(0);
175 Super(oldpile);
183 oldpile=(void *)Super(0);
185 Super(oldpile);
288 oldpile=(void *)Super(0);
324 Super(oldpile);
H A DSDL_mintaudio_stfa.c163 oldpile=(void *)Super(0);
165 Super(oldpile);
173 oldpile=(void *)Super(0);
175 Super(oldpile);
183 oldpile=(void *)Super(0);
185 Super(oldpile);
246 oldpile=(void *)Super(0);
284 Super(oldpile);
H A DSDL_mintaudio_xbios.c214 oldstack=(void *)Super(0);
261 Super(oldstack);
/external/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp111 if (const TargetRegisterClass *Super = TRI->getLargestLegalSuperClass(RC))
112 if (Super != RC && getNumAllocatableRegs(Super) > RCI.NumRegs)
H A DCriticalAntiDepBreaker.cpp295 for (const uint16_t *Super = TRI->getSuperRegisters(Reg);
296 *Super; ++Super) {
297 unsigned SuperReg = *Super;
H A DLiveVariables.cpp436 unsigned Super = Reg; local
439 Super = *SR;
440 HandlePhysRegKill(Super, 0);
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp562 CodeGenRegisterClass &Super = *SuperClasses.back(); local
566 Namespace = Super.Namespace;
567 VTs = Super.VTs;
568 CopyCost = Super.CopyCost;
569 Allocatable = Super.Allocatable;
570 AltOrderSelect = Super.AltOrderSelect;
574 Orders.resize(Super.Orders.size());
575 for (unsigned i = 0, ie = Super.Orders.size(); i != ie; ++i)
576 for (unsigned j = 0, je = Super.Orders[i].size(); j != je; ++j)
577 if (contains(RegBank.getReg(Super
1488 const CodeGenRegister *Super = *RI; local
1621 const CodeGenRegister *Super = SR[j]; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86RegisterInfo.cpp152 const TargetRegisterClass *Super = RC; local
155 switch (Super->getID()) {
169 if (Super->getSize() == RC->getSize())
170 return Super;
172 Super = *I++;
173 } while (Super);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp58 if (const ObjCInterfaceDecl *Super = ID->getSuperClass())
59 return isReceiverClassOrSuperclass(Super, ClassName);
H A DCStringChecker.cpp1914 const MemRegion *Super = MR; local
1915 while (const SubRegion *SR = dyn_cast<SubRegion>(Super)) {
1916 Super = SR->getSuperRegion();
1917 if (Invalidated.count(Super)) {
/external/clang/tools/libclang/
H A DCXCursor.h61 CXCursor MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super,
H A DCXCursor.cpp486 CXCursor cxcursor::MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super, argument
489 assert(Super && TU && "Invalid arguments!");
491 CXCursor C = { CXCursor_ObjCSuperClassRef, 0, { Super, RawLoc, TU } };
853 if (ObjCInterfaceDecl *Super = Interface->getSuperClass())
854 return CollectOverriddenMethodsRecurse(TU, Super, Method, Methods,
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h800 // Super below) can be instantiated to either a const type or a
808 template <typename Super>
809 operator Matcher<Super&>() const {
810 // By passing object_ (type T&) to Impl(), which expects a Super&,
811 // we make sure that Super is a super type of T. In particular,
815 return MakeMatcher(new Impl<Super>(object_));
819 template <typename Super>
820 class Impl : public MatcherInterface<Super&> {
822 explicit Impl(Super& x) : object_(x) {} // NOLINT
824 // MatchAndExplain() takes a Super
[all...]
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp242 const TargetRegisterClass *Super = RC; local
245 switch (Super->getID()) {
252 return Super;
254 Super = *I++;
255 } while (Super);
/external/oprofile/events/i386/nehalem/
H A Dunit_masks354 0x01 promotion Counts the number of L2 secondary misses that hit the Super Queue
355 0x02 promotion_post_go Counts the number of L2 secondary misses during the Super Queue filling L2
356 0x04 lru_hints Counts number of Super Queue LRU hints sent to L3
/external/libxml2/
H A Dxmlcatalog.c314 \t--sgml : handle SGML Super catalogs for --add and --del\n\
/external/clang/lib/CodeGen/
H A DCGRTTI.cpp738 ObjCInterfaceDecl *Super = Class->getSuperClass(); local
741 if (!Super) return;
743 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super);
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp1334 bool Super) {
1345 SourceRange BaseRange = Super? SourceRange(SuperLoc)
1358 if (Super)
1376 if (Super)
1440 if (Super)
1469 SuperLoc, SuperType, Super);
1741 ObjCInterfaceDecl *Super = Class->getSuperClass(); local
1742 if (!Super) {
1759 QualType SuperTy = Context.getObjCInterfaceType(Super);
1769 Context.getObjCInterfaceType(Super),
1329 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, Expr *BaseExpr, SourceLocation OpLoc, DeclarationName MemberName, SourceLocation MemberLoc, SourceLocation SuperLoc, QualType SuperType, bool Super) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
H A DUnicodeQt4.h115 DecompositionSuper = QChar::Super,
/external/clang/lib/AST/
H A DASTImporter.cpp3288 ObjCInterfaceDecl *Super = cast_or_null<ObjCInterfaceDecl>( local
3290 if (!Super)
3293 To->setSuperClass(Super);
3439 ObjCInterfaceDecl *Super = 0;
3441 Super = cast_or_null<ObjCInterfaceDecl>(
3443 if (!Super)
3453 Iface, Super,
3474 if ((Super && !Impl->getSuperClass()) ||
3475 (!Super && Impl->getSuperClass()) ||
3476 (Super
[all...]

Completed in 368 milliseconds

12