Home | History | Annotate | Download | only in strings

Lines Matching refs:Arg

138 struct Arg {
142 Arg(signed char c) : i(c), width(sizeof(char)), type(INT) { }
143 Arg(unsigned char c) : i(c), width(sizeof(char)), type(UINT) { }
144 Arg(signed short j) : i(j), width(sizeof(short)), type(INT) { }
145 Arg(unsigned short j) : i(j), width(sizeof(short)), type(UINT) { }
146 Arg(signed int j) : i(j), width(sizeof(int)), type(INT) { }
147 Arg(unsigned int j) : i(j), width(sizeof(int)), type(UINT) { }
148 Arg(signed long j) : i(j), width(sizeof(long)), type(INT) { }
149 Arg(unsigned long j) : i(j), width(sizeof(long)), type(UINT) { }
150 Arg(signed long long j) : i(j), width(sizeof(long long)), type(INT) { }
151 Arg(unsigned long long j) : i(j), width(sizeof(long long)), type(UINT) { }
154 Arg(const char* s) : str(s), type(STRING) { }
155 Arg(char* s) : str(s), type(STRING) { }
158 template<class T> Arg(T* p) : ptr((void*)p), type(POINTER) { }
179 const Arg* args, size_t max_args);
199 // Use Arg() object to record type information and then copy arguments to an
201 const internal::Arg arg_array[] = {
213 // Use Arg() object to record type information and then copy arguments to an
215 const internal::Arg arg_array[] = {
226 // Use Arg() object to record type information and then copy arguments to an
228 const internal::Arg arg_array[] = {
240 // Use Arg() object to record type information and then copy arguments to an
242 const internal::Arg arg_array[] = {
253 // Use Arg() object to record type information and then copy arguments to an
255 const internal::Arg arg_array[] = {
267 // Use Arg() object to record type information and then copy arguments to an
269 const internal::Arg arg_array[] = {
280 // Use Arg() object to record type information and then copy arguments to an
282 const internal::Arg arg_array[] = {
294 // Use Arg() object to record type information and then copy arguments to an
296 const internal::Arg arg_array[] = {
305 // Use Arg() object to record type information and then copy arguments to an
307 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4, arg5 };
315 // Use Arg() object to record type information and then copy arguments to an
317 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4, arg5 };
324 // Use Arg() object to record type information and then copy arguments to an
326 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4 };
333 // Use Arg() object to record type information and then copy arguments to an
335 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4 };
342 // Use Arg() object to record type information and then copy arguments to an
344 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3 };
351 // Use Arg() object to record type information and then copy arguments to an
353 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3 };
360 // Use Arg() object to record type information and then copy arguments to an
362 const internal::Arg arg_array[] = { arg0, arg1, arg2 };
369 // Use Arg() object to record type information and then copy arguments to an
371 const internal::Arg arg_array[] = { arg0, arg1, arg2 };
377 // Use Arg() object to record type information and then copy arguments to an
379 const internal::Arg arg_array[] = { arg0, arg1 };
385 // Use Arg() object to record type information and then copy arguments to an
387 const internal::Arg arg_array[] = { arg0, arg1 };
393 // Use Arg() object to record type information and then copy arguments to an
395 const internal::Arg arg_array[] = { arg0 };
401 // Use Arg() object to record type information and then copy arguments to an
403 const internal::Arg arg_array[] = { arg0 };