Lines Matching refs:text
82 * Print "<elapsed time>: <text>\n" in the timeline log file.
84 void mark(in string text);
98 * enter/leave bracket code with "<text>..." and "...<text>" as
101 void enter(in string text);
102 void leave(in string text);
129 extern "C" NS_COM nsresult NS_TimelineMark(const char *text, ...);
130 extern "C" NS_COM nsresult NS_TimelineForceMark(const char *text, ...);
137 extern "C" NS_COM nsresult NS_TimelineEnter(const char *text);
138 extern "C" NS_COM nsresult NS_TimelineLeave(const char *text);
144 #define NS_TIMELINE_MARK(text) NS_TimelineMark(text)
148 #define NS_TIMELINE_ENTER(text) NS_TimelineEnter(text)
149 #define NS_TIMELINE_LEAVE(text) NS_TimelineLeave(text)
183 * macros replaces "%s" in its "text" argument with a string
191 #define NS_TIMELINE_MARK_URI(text, uri) \
198 NS_TimelineMark(text, spec.get()); \
200 NS_TimelineMark(text, "??"); \
204 #define NS_TIMELINE_MARK_CHANNEL(text, channel) \
210 NS_TIMELINE_MARK_URI(text, uri); \
213 #define NS_TIMELINE_MARK_LOADER(text, loader) \
218 NS_TIMELINE_MARK_CHANNEL(text, channel); \
225 #define NS_TIMELINE_MARK(text)
234 #define NS_TIMELINE_ENTER(text)
235 #define NS_TIMELINE_LEAVE(text)
236 #define NS_TIMELINE_MARK_URI(text, uri)
239 #define NS_TIMELINE_MARK_CHANNEL(text, channel)
240 #define NS_TIMELINE_MARK_LOADER(text, loader);