Lines Matching refs:val
77 void xml_writer::WriteInt(const char *name, int val) in WriteInt() argument
80 cVal.Format(_T("%d"), val); in WriteInt()
85 void xml_writer::WriteUnsigned(const char *name, ULONG val) in WriteUnsigned() argument
88 cVal.Format(_T("%u"), val); in WriteUnsigned()
93 void xml_writer::WriteUByte(const char *name, GX_UBYTE val) in WriteUByte() argument
96 cVal.Format(_T("%u"), val); in WriteUByte()
102 void xml_writer::WriteHex(const char *name, ULONG val) in WriteHex() argument
105 cVal.Format(_T("%08x"), val); in WriteHex()
121 void xml_writer::WriteBool(const char *name, BOOL val) in WriteBool() argument
125 if (val) in WriteBool()
137 void xml_writer::WriteString(const char *name, const char *val, BOOL bForce) in WriteString() argument
139 CString cVal(val); in WriteString()