Home | History | Annotate | Download | only in Support

Lines Matching full:arrayref

19   ArrayRef<char> Ref(Src, sizeof(Src) - 1);
30 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
40 bool Success = convertUTF16ToUTF8String(ArrayRef<char>("xxxxx", 5), Result);
46 bool Success = convertUTF16ToUTF8String(ArrayRef<char>(), Result);
52 bool HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>("\xff\xfe", 2));
54 HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>("\xfe\xff", 2));
56 HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>("\xfe\xff ", 3));
58 HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>("\xfe\xff\x00asdf", 6));
61 HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>());
63 HasBOM = hasUTF16ByteOrderMark(ArrayRef<char>("\xfe", 1));