Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:ucs

428 		unsigned long ucs = 0;
448 ucs += mult * (*q - '0');
450 ucs += mult * (*q - 'a' + 10);
452 ucs += mult * (*q - 'A' + 10 );
475 ucs += mult * (*q - '0');
484 // convert the UCS to UTF-8
485 ConvertUTF32ToUTF8( ucs, value, length );
489 *value = (char)ucs;