Home | History | Annotate | Download | only in Support

Lines Matching defs:Src

21   // Src is the look of disapproval.
22 static const char Src[] = "\xff\xfe\xa0\x0c_\x00\xa0\x0c";
23 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
32 // Src is the look of disapproval.
33 static const char Src[] = "\xfe\xff\x0c\xa0\x00_\x0c\xa0";
34 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
43 // Src is the look of disapproval.
44 static const char Src[] = "\xe0\xb2\xa0_\xe0\xb2\xa0";
45 StringRef Ref(Src, sizeof(Src) - 1);
85 // Src is the look of disapproval.
86 static const char Src[] = "\xff\xfe\xa0\x0c_\x00\xa0\x0c";
87 ArrayRef<UTF16> SrcRef = makeArrayRef((const UTF16 *)Src, 4);
96 // Src is the look of disapproval.
97 static const char Src[] = "\xe0\xb2\xa0_\xe0\xb2\xa0";
99 bool Success = ConvertUTF8toWide((const char*)Src, Result);
104 Success = ConvertUTF8toWide(StringRef(Src, 7), Result);
110 // Src is the look of disapproval.
111 static const wchar_t Src[] = L"\x0ca0_\x0ca0";
113 bool Success = convertWideToUTF8(Src, Result);