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

1 2

  /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 16 const char* d = u8"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
17 const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
26 const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
35 const char32_t* q = U"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
44 const wchar_t* w = L"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
45 const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
pragma-operators.cpp 26 #define pragma_UR _Pragma(UR"(clang diagnostic error "-Wunused")")
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p12.cpp 19 int e = uR"("???? ?)"_x;
20 int f = UR"("???? ?)"_x;
21 int g = UR"("????_?)"_x; // expected-note {{in instantiation of function template specialization 'operator "" _x<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>' requested here}}
  /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 36 (void)uR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
37 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
  /external/clang/test/CodeGen/
string-literal-unicode-conversion.c 54 char16_t const *g = uR"(5?????)";
57 char32_t const *h = UR"(6?????)";
string-literal.c 80 const char16_t *j = uR"foo(GH)foo";
83 const char32_t *k = UR"bar(IJ)bar";
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 50 const User *UR = U.getUser();
51 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) {
61 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) {
157 } else if (const Constant *C = dyn_cast<Constant>(UR)) {
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 91 User *UR = U.getUser();
93 if (isa<BlockAddress>(UR)) continue;
97 if (!isa<CallInst>(UR) && !isa<InvokeInst>(UR))
100 CallSite CS(cast<Instruction>(UR));
ArgumentPromotion.cpp 387 User *UR = U.getUser();
389 if (LoadInst *LI = dyn_cast<LoadInst>(UR)) {
395 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) {
    [all...]
  /external/libyuv/files/source/
row_posix.cc     [all...]
row_win.cc     [all...]
row_common.cc 430 #define UR 0
439 #define BR UR * 128 + VR * 128
455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
    [all...]
  /external/llvm/lib/Support/
ScaledNumber.cpp 27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
30 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 260 >>> dump_tokens("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'")
263 STRING "ur'abc'" (1, 4) (1, 11)
265 STRING "Ur'ABC'" (1, 14) (1, 21)
267 STRING "uR'ABC'" (1, 24) (1, 31)
269 STRING "UR'ABC'" (1, 34) (1, 41)
270 >>> dump_tokens('y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 260 >>> dump_tokens("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'")
263 STRING "ur'abc'" (1, 4) (1, 11)
265 STRING "Ur'ABC'" (1, 14) (1, 21)
267 STRING "uR'ABC'" (1, 24) (1, 31)
269 STRING "UR'ABC'" (1, 34) (1, 41)
270 >>> dump_tokens('y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"'
    [all...]
  /external/chromium_org/third_party/libyuv/source/
row_posix.cc     [all...]
row_win.cc     [all...]
row_common.cc 947 #define UR 0
956 #define BR UR * 128 + VR * 128
963 *r = Clamp((int32)((u * UR + v * VR) - (BR) + y1) >> 6);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMaskFilter.cpp 332 const SkVector& UR = rrect.radii(SkRRect::kUpperRight_Corner);
337 const SkScalar rightUnstretched = SkTMax(UR.fX, LR.fX) + SkIntToScalar(2 * margin.fX);
349 const SkScalar topUnstretched = SkTMax(UL.fY, UR.fY) + SkIntToScalar(2 * margin.fY);
363 radii[SkRRect::kUpperRight_Corner] = UR;
    [all...]
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 332 const SkVector& UR = rrect.radii(SkRRect::kUpperRight_Corner);
337 const SkScalar rightUnstretched = SkTMax(UR.fX, LR.fX) + SkIntToScalar(2 * margin.fX);
349 const SkScalar topUnstretched = SkTMax(UL.fY, UR.fY) + SkIntToScalar(2 * margin.fY);
363 radii[SkRRect::kUpperRight_Corner] = UR;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 942 CAMLprim LLVMValueRef llvm_user(LLVMUseRef UR) {
943 return LLVMGetUser(UR);
947 CAMLprim LLVMValueRef llvm_used_value(LLVMUseRef UR) {
948 return LLVMGetUsedValue(UR);
    [all...]
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js     [all...]

Completed in 658 milliseconds

1 2