Home | History | Annotate | Download | only in VMCore

Lines Matching full:mdstring

29 // Test that construction of MDString with different value produces different
30 // MDString objects, even with the same string pointer and nulls in the string.
33 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
35 MDString *s2 = MDString::get(Context, StringRef(&x[0], 3));
40 // same MDString object, even with different pointers.
45 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
46 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));
50 // Test that MDString prints out the string we fed it.
54 MDString *s = MDString::get(Context, StringRef(str, 13));
64 // Test printing of MDString with non-printable characters.
67 MDString *s = MDString::get(Context, StringRef(str+0, 5));
81 MDString *s1 = MDString::get(Context, StringRef(&x[0], 3));
82 MDString *s2 = MDString::get(Context, StringRef(&y[0], 3));