|
PuzzleSDK
|
NewAudioEngineTest.cpp 的引用(Include)关系图:宏定义 | |
| #define | CC_PROFILER_DISPLAY_TIMERS() Profiler::getInstance()->displayTimers() |
| #define | CC_PROFILER_PURGE_ALL() Profiler::getInstance()->releaseAllTimers() |
| #define | CC_PROFILER_START(__name__) ProfilingBeginTimingBlock(__name__) |
| #define | CC_PROFILER_STOP(__name__) ProfilingEndTimingBlock(__name__) |
| #define | CC_PROFILER_RESET(__name__) ProfilingResetTimingBlock(__name__) |
| #define | CC_PROFILER_START_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingBeginTimingBlock(__name__); } while(0) |
| #define | CC_PROFILER_STOP_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingEndTimingBlock(__name__); } while(0) |
| #define | CC_PROFILER_RESET_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingResetTimingBlock(__name__); } while(0) |
| #define | CC_PROFILER_START_INSTANCE(__id__, __name__) do{ ProfilingBeginTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
| #define | CC_PROFILER_STOP_INSTANCE(__id__, __name__) do{ ProfilingEndTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
| #define | CC_PROFILER_RESET_INSTANCE(__id__, __name__) do{ ProfilingResetTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
| #define CC_PROFILER_DISPLAY_TIMERS | ( | ) | Profiler::getInstance()->displayTimers() |
在文件 NewAudioEngineTest.cpp 第 751 行定义.
| #define CC_PROFILER_PURGE_ALL | ( | ) | Profiler::getInstance()->releaseAllTimers() |
在文件 NewAudioEngineTest.cpp 第 753 行定义.
| #define CC_PROFILER_RESET | ( | __name__ | ) | ProfilingResetTimingBlock(__name__) |
在文件 NewAudioEngineTest.cpp 第 760 行定义.
| #define CC_PROFILER_RESET_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do{ if(__cat__) ProfilingResetTimingBlock(__name__); } while(0) |
在文件 NewAudioEngineTest.cpp 第 767 行定义.
| #define CC_PROFILER_RESET_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do{ ProfilingResetTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
在文件 NewAudioEngineTest.cpp 第 774 行定义.
| #define CC_PROFILER_START | ( | __name__ | ) | ProfilingBeginTimingBlock(__name__) |
在文件 NewAudioEngineTest.cpp 第 756 行定义.
| #define CC_PROFILER_START_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do{ if(__cat__) ProfilingBeginTimingBlock(__name__); } while(0) |
在文件 NewAudioEngineTest.cpp 第 763 行定义.
| #define CC_PROFILER_START_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do{ ProfilingBeginTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
在文件 NewAudioEngineTest.cpp 第 770 行定义.
| #define CC_PROFILER_STOP | ( | __name__ | ) | ProfilingEndTimingBlock(__name__) |
在文件 NewAudioEngineTest.cpp 第 758 行定义.
| #define CC_PROFILER_STOP_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do{ if(__cat__) ProfilingEndTimingBlock(__name__); } while(0) |
在文件 NewAudioEngineTest.cpp 第 765 行定义.
| #define CC_PROFILER_STOP_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do{ ProfilingEndTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0) |
在文件 NewAudioEngineTest.cpp 第 772 行定义.