HomeSort by relevance Sort by last modified time
    Searched refs:UR (Results 1 - 25 of 30) 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.c 80 const char16_t *j = uR"foo(GH)foo";
83 const char32_t *k = UR"bar(IJ)bar";
112 const char16_t *t = uR\
118 const char32_t *u = UR\
string-literal-unicode-conversion.c 54 char16_t const *g = uR"(5?????)";
57 char32_t const *h = UR"(6?????)";
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 61 User *UR = U.getUser();
63 if (isa<BlockAddress>(UR)) continue;
67 if (!isa<CallInst>(UR) && !isa<InvokeInst>(UR))
70 CallSite CS(cast<Instruction>(UR));
ArgumentPromotion.cpp 531 User *UR = U.getUser();
533 if (LoadInst *LI = dyn_cast<LoadInst>(UR)) {
539 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 57 const User *UR = U.getUser();
58 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) {
68 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) {
164 } else if (const Constant *C = dyn_cast<Constant>(UR)) {
  /external/llvm/lib/Support/
ScaledNumber.cpp 28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
31 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/gdb/darwin-x86/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/gdb/linux-x86/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/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/llvm/lib/IR/
ConstantRange.cpp 714 ConstantRange UR = Result_zext.truncate(getBitWidth());
720 if (!UR.isWrappedSet() && UR.getLower().isNonNegative())
721 return UR;
740 return UR.getSetSize().ult(SR.getSetSize()) ? UR : SR;
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 294 auto UR = UA.Addr->getRegRef();
295 if (RAI.alias(RefRR, UR) && !RAI.covers(DefRRs, UR))
    [all...]
HexagonOptAddrMode.cpp 194 RegisterRef UR = UN.Addr->getRegRef();
196 const auto &ReachingDefs = LV->getAllReachingDefsRec(UR, UN, Visited, Defs);
HexagonBitSimplify.cpp     [all...]
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 526 const SkVector& UR = rrect.radii(SkRRect::kUpperRight_Corner);
531 const SkScalar rightUnstretched = SkTMax(UR.fX, LR.fX) + SkIntToScalar(2 * margin.fX);
543 const SkScalar topUnstretched = SkTMax(UL.fY, UR.fY) + SkIntToScalar(2 * margin.fY);
557 radii[SkRRect::kUpperRight_Corner] = UR;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm_ocaml.c 844 CAMLprim LLVMValueRef llvm_user(LLVMUseRef UR) {
845 return LLVMGetUser(UR);
849 CAMLprim LLVMValueRef llvm_used_value(LLVMUseRef UR) {
850 return LLVMGetUsedValue(UR);
    [all...]

Completed in 2763 milliseconds

1 2