/external/qemu/distrib/sdl-1.2.12/src/timer/mint/ |
SDL_systimer.c | 65 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/ |
complete-member-access.m | 8 @interface Super { 12 @interface Int : Super<MyProtocol>
|
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/ |
SDL_xbiosevents.c | 68 oldpile=(void *)Super(0); 78 Super(oldpile); 95 oldpile=(void *)Super(NULL); 101 Super(oldpile);
|
/external/chromium/base/win/ |
event_trace_provider.h | 36 typedef EtwMofEventBase<N> Super; 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/qemu/distrib/sdl-1.2.12/src/audio/mint/ |
SDL_mintaudio_dma8.c | 163 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);
|
SDL_mintaudio_stfa.c | 163 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);
|
SDL_mintaudio_xbios.c | 214 oldstack=(void *)Super(0); 261 Super(oldstack);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
MethodTest.java | 141 Method method = Super.class.getDeclaredMethod("a"); 205 public static class Super { 212 public static abstract class Sub extends Super implements InterfaceA {
|
MethodOverridesTest.java | 131 public static class Super { 141 public static class Sub extends Super {
|
/external/clang/tools/libclang/ |
CXCursor.cpp | 220 CXCursor cxcursor::MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super, 223 assert(Super && TU && "Invalid arguments!"); 225 CXCursor C = { CXCursor_ObjCSuperClassRef, { Super, RawLoc, TU } }; 237 CXCursor cxcursor::MakeCursorObjCProtocolRef(ObjCProtocolDecl *Super, 240 assert(Super && TU && "Invalid arguments!"); 242 CXCursor C = { CXCursor_ObjCProtocolRef, { Super, RawLoc, TU } };
|
CXCursor.h | 56 CXCursor MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super,
|
/external/clang/lib/Sema/ |
SemaExprObjC.cpp | 287 // - if the receiver is super, T is a pointer to the class of the 534 bool Super) { 565 Super); 567 if (Super) 587 T = getMessageSendResultType(QualType(OPT, 0), Getter, false, Super); 588 if (Super) 652 PType = getMessageSendResultType(QualType(OPT, 0), Getter, false, Super); 664 if (Super) 690 SuperLoc, SuperType, Super); 736 // If the "receiver" is 'super' in a method, handle it as an expression-lik [all...] |
/external/llvm/lib/CodeGen/ |
CriticalAntiDepBreaker.cpp | 281 // Conservatively mark super-registers as unusable. 282 for (const unsigned *Super = TRI->getSuperRegisters(Reg); 283 *Super; ++Super) { 284 unsigned SuperReg = *Super;
|
/external/llvm/lib/Target/X86/ |
X86RegisterInfo.cpp | 237 const TargetRegisterClass *Super = RC; 240 switch (Super->getID()) { 252 // Don't return a super-class that would shrink the spill size. 254 if (Super->getSize() == RC->getSize()) 255 return Super; 257 Super = *I++; 258 } while (Super); 400 // super-registers are old 32-bits.
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-matchers.h | 781 // super type of the type of 'variable'. 800 // 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&> [all...] |
/external/llvm/lib/Target/ARM/ |
ARMBaseRegisterInfo.cpp | 355 const TargetRegisterClass *Super = RC; 358 switch (Super->getID()) { 365 return Super; 367 Super = *I++; 368 } while (Super); [all...] |
/external/oprofile/events/i386/nehalem/ |
unit_masks | 354 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/clang/lib/StaticAnalyzer/Checkers/ |
BasicObjCFoundationChecks.cpp | 56 if (const ObjCInterfaceDecl *Super = ID->getSuperClass()) 57 return isReceiverClassOrSuperclass(Super, ClassName);
|
CStringChecker.cpp | 753 // the super-region. [all...] |
/external/libxml2/ |
xmlcatalog.c | 317 \t--sgml : handle SGML Super catalogs for --add and --del\n\ 326 \t and with --sgml it automatically updates the super catalog\n\ 327 \t--no-super-update: do not update the SGML super catalog\n\ 369 } else if ((!strcmp(argv[i], "-no-super-update")) || 370 (!strcmp(argv[i], "--no-super-update"))) { 439 xmlCatalogPtr super = NULL; local 451 super = xmlLoadSGMLSuperCatalog(XML_SGML_DEFAULT_CATALOG); 452 if (super == NULL) 453 super = xmlNewCatalog(1) [all...] |
/external/clang/lib/CodeGen/ |
CGRTTI.cpp | 732 ObjCInterfaceDecl *Super = Class->getSuperClass(); 735 if (!Super) return; 737 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super); [all...] |
/frameworks/base/core/java/android/text/ |
Html.java | 480 start(mSpannableStringBuilder, new Super()); 531 end(mSpannableStringBuilder, Super.class, new SuperscriptSpan()); 793 private static class Super { }
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/ |
UnicodeQt4.h | 115 DecompositionSuper = QChar::Super,
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/ |
DecTestBench.c | 68 return $Super$$main(argc, argv); // calls the original function
|
/external/clang/lib/AST/ |
ASTImporter.cpp | [all...] |