Lines Matching defs:Src
18 // Src is the look of disapproval.
19 alignas(UTF16) static const char Src[] = "\xff\xfe\xa0\x0c_\x00\xa0\x0c";
20 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
29 // Src is the look of disapproval.
30 alignas(UTF32) static const char Src[] =
32 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
41 // Src is the look of disapproval.
42 alignas(UTF16) static const char Src[] = "\xfe\xff\x0c\xa0\x00_\x0c\xa0";
43 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
52 // Src is the look of disapproval.
53 alignas(UTF32) static const char Src[] =
55 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
64 // Src is the look of disapproval.
65 static const char Src[] = "\xe0\xb2\xa0_\xe0\xb2\xa0";
66 StringRef Ref(Src, sizeof(Src) - 1);
106 // Src is the look of disapproval.
107 alignas(UTF16) static const char Src[] = "\xff\xfe\xa0\x0c_\x00\xa0\x0c";
108 ArrayRef<UTF16> SrcRef = ArrayRef((const UTF16 *)Src, 4);
117 // Src is the look of disapproval.
118 static const char Src[] = "\xe0\xb2\xa0_\xe0\xb2\xa0";
120 bool Success = ConvertUTF8toWide((const char*)Src, Result);
125 Success = ConvertUTF8toWide(StringRef(Src, 7), Result);
131 // Src is the look of disapproval.
132 static const wchar_t Src[] = L"\x0ca0_\x0ca0";
134 bool Success = convertWideToUTF8(Src, Result);