/external/clang/lib/Format/ |
D | TokenAnnotator.cpp | 1802 const FormatToken &Right = Tok; in splitPenalty() local 1808 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty() 1810 if (Right.is(Keywords.kw_implements)) in splitPenalty() 1815 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty() 1821 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && in splitPenalty() 1822 Right.Next->is(TT_DictLiteral))) in splitPenalty() 1824 if (Right.is(tok::l_square)) { in splitPenalty() 1830 if (Right.is(TT_LambdaLSquare) && Left.is(tok::equal)) in splitPenalty() 1832 if (!Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, in splitPenalty() 1837 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || in splitPenalty() [all …]
|
/external/markdown/tests/markdown-test/ |
D | backlash-escapes.txt | 13 Right brace: \} 17 Right bracket: \] 21 Right paren: \) 49 Right brace: \} 53 Right bracket: \] 57 Right paren: \) 84 Right brace: `\}` 88 Right bracket: `\]` 92 Right paren: `\)`
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Backslash escapes.text | 13 Right brace: \} 17 Right bracket: \] 21 Right paren: \) 49 Right brace: \} 53 Right bracket: \] 57 Right paren: \) 84 Right brace: `\}` 88 Right bracket: `\]` 92 Right paren: `\)`
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Backslash escapes.text | 13 Right brace: \} 17 Right bracket: \] 21 Right paren: \) 49 Right brace: \} 53 Right bracket: \] 57 Right paren: \) 84 Right brace: `\}` 88 Right bracket: `\]` 92 Right paren: `\)`
|
/external/clang/include/clang/AST/ |
D | AttrIterator.h | 100 specific_attr_iterator Right) { 101 assert((Left.Current == nullptr) == (Right.Current == nullptr)); 102 if (Left.Current < Right.Current) 103 Left.AdvanceToNext(Right.Current); 105 Right.AdvanceToNext(Left.Current); 106 return Left.Current == Right.Current; 109 specific_attr_iterator Right) { 110 return !(Left == Right);
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-multiple-nonvirtual-inheritance.cpp | 7 struct Right { struct 11 struct ChildNoOverride : Left, Right { 14 struct ChildOverride : Left, Right { 156 Right r; in emit_ctors() 190 struct AsymmetricChild : LeftWithNonVirtualDtor, Right {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | FormatVariadic.cpp | 20 return AlignStyle::Right; in translateLocChar() 29 Where = AlignStyle::Right; in consumeFieldLayout() 65 AlignStyle Where = AlignStyle::Right; in parseReplacementItem() 108 StringRef Right = Fmt.drop_front(BO + NumEscapedBraces * 2); in splitLiteralAndReplacement() local 109 return std::make_pair(ReplacementItem{Middle}, Right); in splitLiteralAndReplacement() 131 StringRef Right = Fmt.substr(BC + 1); in splitLiteralAndReplacement() local 135 return std::make_pair(*RI, Right); in splitLiteralAndReplacement()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | FormatAdapters.h | 47 size_t Right; variable 50 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument 51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter() 57 Stream.indent(Right); in format() 92 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() argument 93 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
|
/external/v8/tools/clang/blink_gc_plugin/tests/ |
D | left_most_gc_base.h | 15 class Right : public A, public B, public GarbageCollected<Right> { }; // Error 18 class DerivedRight : public Right, public Left { }; // Error 19 class DerivedLeft : public Left, public Right { };
|
D | left_most_gc_base.txt | 2 ./left_most_gc_base.h:15:1: warning: [blink-gc] Class 'Right' must derive from GarbageCollected in … 3 class Right : public A, public B, public GarbageCollected<Right> { }; // Error 6 class DerivedRight : public Right, public Left { }; // Error
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
D | trie-node.h | 50 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right, in mergeTrieNodes() argument 57 assert(Left.FuncId == Right.FuncId); in mergeTrieNodes() 59 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)}); in mergeTrieNodes() 73 for (auto *Callee : Right.Callees) { in mergeTrieNodes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | ilist.h | 349 void merge(iplist_impl &Right, Compare comp) { 350 if (this == &Right) 352 this->transferNodesFromList(Right, Right.begin(), Right.end()); 353 base_list_type::merge(Right, comp); 355 void merge(iplist_impl &Right) { return merge(Right, op_less); } 415 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 416 Left.swap(Right);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | ilist.h | 362 void merge(iplist_impl &Right, Compare comp) { 363 if (this == &Right) 365 this->transferNodesFromList(Right, Right.begin(), Right.end()); 366 base_list_type::merge(Right, comp); 368 void merge(iplist_impl &Right) { return merge(Right, op_less); } 428 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 429 Left.swap(Right);
|
/external/llvm/unittests/Transforms/Utils/ |
D | MemorySSA.cpp | 77 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 80 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 85 BranchInst::Create(Merge, Right); in TEST_F() 99 MP->addIncoming(MSSA.getLiveOnEntryDef(), Right); in TEST_F() 118 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 121 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 126 BranchInst::Create(Merge, Right); in TEST_F() 161 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 164 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 169 BranchInst::Create(Merge, Right); in TEST_F()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | CFG.h | 172 inline Self& operator+=(int Right) { 173 unsigned new_idx = idx + Right; 179 inline Self operator+(int Right) { 181 tmp += Right; 185 inline Self& operator-=(int Right) { 186 return operator+=(-Right); 189 inline Self operator-(int Right) { 190 return operator+(-Right);
|
/external/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 393 Node Binop(wasm::WasmOpcode Opcode, Node Left, Node Right) { in Binop() argument 395 << ", " << Right << ") = "); in Binop() 408 InstArithmetic::create(Func, InstArithmetic::Add, Dest, Left, Right)); in Binop() 413 Dest, Left, Right)); in Binop() 418 InstArithmetic::create(Func, InstArithmetic::Sub, Dest, Left, Right)); in Binop() 423 Dest, Left, Right)); in Binop() 428 InstArithmetic::create(Func, InstArithmetic::Mul, Dest, Left, Right)); in Binop() 433 Dest, Left, Right)); in Binop() 438 Dest, Left, Right)); in Binop() 443 Dest, Left, Right)); in Binop() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | MemorySSA.cpp | 81 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 84 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 89 BranchInst::Create(Merge, Right); in TEST_F() 119 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 122 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 127 B.SetInsertPoint(Right); in TEST_F() 209 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local 212 B.CreateCondBr(B.getTrue(), Left, Right); in TEST_F() 217 B.SetInsertPoint(Right); in TEST_F() 253 BasicBlock *Right(BasicBlock::Create(C, "", F)); in TEST_F() local [all …]
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_pdffontmgr.cpp | 153 ByteString bsDRTailer = bsDRName.Right(iDifferLength); in PsNameMatchDRFontName() 164 if (bsDRName.Right(5) == "Light") in PsNameMatchDRFontName() 169 if (bsDRName.Right(7) == "Regular" || bsDRName.Right(3) == "Reg") in PsNameMatchDRFontName() 174 if (bsDRName.Right(5) == "Medium") in PsNameMatchDRFontName()
|
/external/libcxxabi/test/ |
D | dynamic_cast.pass.cpp | 80 struct Right : Class6 { Pad5 _; }; struct 81 struct Main : Left, Right { Pad6 _; }; 92 assert(dynamic_cast<Right*>(c1) == static_cast<Right*>(&m)); in test()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstExtenders.cpp | 128 Node *Left = nullptr, *Right = nullptr; member 171 N->Height = 1 + std::max(height(N->Left), height(N->Right)); in update() 174 if (N->Right) in update() 175 N->MaxEnd = std::max(N->MaxEnd, N->Right->MaxEnd); in update() 180 int32_t Balance = height(N->Right) - height(N->Left); in rebalance() 184 return rotateLeft(N->Right, N); in rebalance() 592 dbgs() << " Right: " << N->Right << "\n\n"; in dump() 596 if (N->Right) in dump() 597 dump(N->Right); in dump() 606 order(N->Right, Seq); in order() [all …]
|
/external/capstone/bindings/vb6/ |
D | mMisc.bas | 48 cur2str = Right("00000000" & Hex(dl.LowValue), 8) 50 … cur2str = Right("00000000" & Hex(dl.HighValue), 8) & "`" & Right("00000000" & Hex(dl.LowValue), 8) 64 low = VBA.Right(str, 8) 272 hhex = Right("00" & Hex(b), 2) 359 If Right(path, 1) = "\" Then Exit Function
|
/external/u-boot/arch/arm/dts/ |
D | sun4i-a10-inet9f-rev03.dts | 80 label = "Left Joystick Right"; 104 label = "Right Joystick Left"; 112 label = "Right Joystick Right"; 120 label = "Right Joystick Up"; 128 label = "Right Joystick Down"; 144 label = "DPad Right"; 210 label = "Top Right Button";
|
/external/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmexpression.cpp | 73 EXCLAMATION_IN_IDENTIFIER + m_wsName.Right(m_wsName.GetLength() - 1); in ToJavaScript() 85 identifier.Right(identifier.GetLength() - 1); in ToJavaScript() 146 EXCLAMATION_IN_IDENTIFIER + m_wsName.Right(m_wsName.GetLength() - 1); in ToJavaScript() 174 EXCLAMATION_IN_IDENTIFIER + m_wsName.Right(m_wsName.GetLength() - 1); in ToImpliedReturnJS() 544 m_wsVariant.Right(m_wsVariant.GetLength() - 1); in ToJavaScript() 599 m_wsVariant.Right(m_wsVariant.GetLength() - 1); in ToImpliedReturnJS() 668 m_wsIdentifier.Right(m_wsIdentifier.GetLength() - 1); in ToJavaScript() 698 m_wsIdentifier.Right(m_wsIdentifier.GetLength() - 1); in ToJavaScript() 727 m_wsIdentifier.Right(m_wsIdentifier.GetLength() - 1); in ToImpliedReturnJS() 756 m_wsIdentifier.Right(m_wsIdentifier.GetLength() - 1); in ToImpliedReturnJS()
|
/external/llvm/include/llvm/ADT/ |
D | ilist.h | 593 void merge(iplist &Right, Compare comp) { 594 if (this == &Right) 597 iterator First2 = Right.begin(), Last2 = Right.end(); 601 transfer(First1, Right, First2, ++Next); 608 transfer(Last1, Right, First2, Last2); 610 void merge(iplist &Right) { return merge(Right, op_less); } 743 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 744 Left.swap(Right);
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_ffline.cpp | 45 case XFA_AttributeEnum::Right: in GetRectFromHand() 58 case XFA_AttributeEnum::Right: in GetRectFromHand() 72 case XFA_AttributeEnum::Right: in GetRectFromHand()
|