HomeSort by relevance Sort by last modified time
    Searched refs:UR (Results 1 - 7 of 7) sorted by null

  /external/clang/test/Lexer/
string-literal-encoding.c 13 char16_t const *e = uR"(?????)"; // expected-error {{illegal character encoding in string literal}}
14 char32_t const *f = UR"(?????)"; // expected-error {{illegal character encoding in string literal}}
27 char16_t const *e = uR"(foo ?????)"; // expected-error {{illegal character encoding in string literal}}
28 char32_t const *f = UR"(foo ?????)"; // expected-error {{illegal character encoding in string literal}}
string_concat.cpp 8 const char* d = u8"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
9 const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
16 const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
23 const char32_t* q = U"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
30 const wchar_t* w = L"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
31 const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
  /external/clang/test/SemaCXX/
cxx0x-type-convert-construct.cpp 18 uRstr = uR"foo(a UTF-16 raw string)foo"; // expected-error {{assigning to 'char16_t *' from incompatible type 'const char16_t [20]'}}
20 URstr = UR"foo(a UTF-32 raw string)foo"; // expected-error {{assigning to 'char32_t *' from incompatible type 'const char32_t [20]'}}
cxx98-compat.cpp 34 (void)uR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
35 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
  /external/clang/test/CodeGen/
string-literal-unicode-conversion.c 53 char16_t const *g = uR"(5?????)";
56 char32_t const *h = UR"(6?????)";
string-literal.c 60 const char16_t *j = uR"foo(GH)foo";
63 const char32_t *k = UR"bar(IJ)bar";
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 843 CAMLprim LLVMValueRef llvm_user(LLVMUseRef UR) {
844 return LLVMGetUser(UR);
848 CAMLprim LLVMValueRef llvm_used_value(LLVMUseRef UR) {
849 return LLVMGetUsedValue(UR);
    [all...]

Completed in 96 milliseconds