Lines Matching refs:Arg

138 struct Arg {
142 Arg(signed char c) : type(INT) {
146 Arg(unsigned char c) : type(UINT) {
150 Arg(signed short j) : type(INT) {
154 Arg(unsigned short j) : type(UINT) {
158 Arg(signed int j) : type(INT) {
162 Arg(unsigned int j) : type(UINT) {
166 Arg(signed long j) : type(INT) {
170 Arg(unsigned long j) : type(UINT) {
174 Arg(signed long long j) : type(INT) {
178 Arg(unsigned long long j) : type(UINT) {
184 Arg(const char* s) : str(s), type(STRING) { }
185 Arg(char* s) : str(s), type(STRING) { }
188 template<class T> Arg(T* p) : ptr((void*)p), type(POINTER) { }
209 const Arg* args, size_t max_args);
229 // Use Arg() object to record type information and then copy arguments to an
231 const internal::Arg arg_array[] = {
243 // Use Arg() object to record type information and then copy arguments to an
245 const internal::Arg arg_array[] = {
256 // Use Arg() object to record type information and then copy arguments to an
258 const internal::Arg arg_array[] = {
270 // Use Arg() object to record type information and then copy arguments to an
272 const internal::Arg arg_array[] = {
283 // Use Arg() object to record type information and then copy arguments to an
285 const internal::Arg arg_array[] = {
297 // Use Arg() object to record type information and then copy arguments to an
299 const internal::Arg arg_array[] = {
310 // Use Arg() object to record type information and then copy arguments to an
312 const internal::Arg arg_array[] = {
324 // Use Arg() object to record type information and then copy arguments to an
326 const internal::Arg arg_array[] = {
335 // Use Arg() object to record type information and then copy arguments to an
337 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4, arg5 };
345 // Use Arg() object to record type information and then copy arguments to an
347 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4, arg5 };
354 // Use Arg() object to record type information and then copy arguments to an
356 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4 };
363 // Use Arg() object to record type information and then copy arguments to an
365 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3, arg4 };
372 // Use Arg() object to record type information and then copy arguments to an
374 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3 };
381 // Use Arg() object to record type information and then copy arguments to an
383 const internal::Arg arg_array[] = { arg0, arg1, arg2, arg3 };
390 // Use Arg() object to record type information and then copy arguments to an
392 const internal::Arg arg_array[] = { arg0, arg1, arg2 };
399 // Use Arg() object to record type information and then copy arguments to an
401 const internal::Arg arg_array[] = { arg0, arg1, arg2 };
407 // Use Arg() object to record type information and then copy arguments to an
409 const internal::Arg arg_array[] = { arg0, arg1 };
415 // Use Arg() object to record type information and then copy arguments to an
417 const internal::Arg arg_array[] = { arg0, arg1 };
423 // Use Arg() object to record type information and then copy arguments to an
425 const internal::Arg arg_array[] = { arg0 };
431 // Use Arg() object to record type information and then copy arguments to an
433 const internal::Arg arg_array[] = { arg0 };