Lines Matching refs:aValue

358 void CmdDebugger::dumpVarToStream( const char *pc , const UsrAny &aValue, FILE *f )  in dumpVarToStream()  argument
360 TypeClass type = aValue.getReflection()->getTypeClass(); in dumpVarToStream()
363 fprintf( f, "INT32 %s : %d\n" , pc , aValue.getINT32() ); in dumpVarToStream()
366 fprintf( f, "ENUM %s : %d\n", pc , aValue.getEnumAsINT32() ); in dumpVarToStream()
369 fprintf( f, "STRING %s : %s\n" , pc , USTRING_TO_PCHAR( aValue.getString()) ); in dumpVarToStream()
372 fprintf( f, "BOOL %s : %d\n", pc , aValue.getBOOL() ); in dumpVarToStream()
375 fprintf( f, "char %s : %d\n", pc , ( INT32) aValue.getChar() ); in dumpVarToStream()
378 fprintf( f, "INT16 %s : %d\n", pc , (INT32) aValue.getINT16()); in dumpVarToStream()
381 fprintf( f, "LONG %s : %d\n", pc , (INT32) aValue.getINT32()); in dumpVarToStream()
384 fprintf( f, "UINT16 %s : %d\n", pc , (INT32) aValue.getUINT16() ); in dumpVarToStream()
387 fprintf( f, "Byte %s : %d\n", pc , (INT32) aValue.getBYTE() ); in dumpVarToStream()
390 fprintf( f, "UINT32 %s : %d\n", pc , aValue.getUINT32() ); in dumpVarToStream()
393 fprintf( f, "float %s : %f\n" , pc , aValue.getFloat() ); in dumpVarToStream()
396 fprintf( f, "double %s : %f\n" , pc , aValue.getDouble() ); in dumpVarToStream()
403 if( aValue.getReflection() == XPropertySet_getReflection() ) { in dumpVarToStream()
405 XPropertySetRef *pRef = ( XPropertySetRef * ) aValue.get(); in dumpVarToStream()
418 else if( aValue.getReflection() == XInvokation_getReflection() ) { in dumpVarToStream()
419 XInvokationRef *pRef = ( XInvokationRef * ) aValue.get(); in dumpVarToStream()
429 SequenceReflection *pSeqRefl = ( SequenceReflection * ) aValue.getReflection(); in dumpVarToStream()
431 int i,iMax = pSeqRefl->getLen( aValue ); in dumpVarToStream()
434 dumpVarToStream( s.GetCharStr() , pSeqRefl->get( aValue , i ) , stderr ); in dumpVarToStream()