Lines Matching refs:MDString
100 TypedMDRVA<MDString> *mdstring) {
103 // Shortcut if wchar_t is the same size as MDString's buffer
104 result = mdstring->Copy(str, mdstring->get()->length);
124 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
133 TypedMDRVA<MDString> *mdstring) {
151 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
163 // Calculate the mdstring length by either limiting to |length| as passed in
172 TypedMDRVA<MDString> mdstring(this);
173 if (!mdstring.AllocateObjectAndArray(mdstring_length + 1, sizeof(uint16_t)))
177 mdstring.get()->length =
179 bool result = CopyStringToMDString(str, mdstring_length, &mdstring);
184 result = mdstring.CopyIndexAfterObject(mdstring_length, &ch, sizeof(ch));
187 *location = mdstring.location();