/external/clang/lib/Format/ |
D | TokenAnnotator.cpp | 1702 const FormatToken &Right = Tok; in splitPenalty() local 1708 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty() 1710 if (Right.is(Keywords.kw_implements)) in splitPenalty() 1715 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty() 1721 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && in splitPenalty() 1722 Right.Next->is(TT_DictLiteral))) in splitPenalty() 1724 if (Right.is(tok::l_square)) { in splitPenalty() 1728 if (Right.is(TT_LambdaLSquare) && Left.is(tok::equal)) in splitPenalty() 1730 if (!Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, in splitPenalty() 1735 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || in splitPenalty() [all …]
|
D | TokenAnnotator.h | 160 const FormatToken &Right); 164 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right); 166 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
|
/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/llvm/include/llvm/ADT/ |
D | ilist.h | 645 void merge(iplist &Right, Compare comp) { 646 if (this == &Right) 649 iterator First2 = Right.begin(), Last2 = Right.end(); 653 transfer(First1, Right, First2, ++Next); 660 transfer(Last1, Right, First2, Last2); 662 void merge(iplist &Right) { return merge(Right, op_less); } 795 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 796 Left.swap(Right);
|
/external/clang/tools/diagtool/ |
D | DiagnosticNames.cpp | 48 const DiagnosticRecord &Right) { in orderByID() argument 49 return Left.DiagID < Right.DiagID; in orderByID()
|
/external/fio/ |
D | GFIO-TODO | 38 - Ensure that the whole connect/send/start button logic is sane. Right 41 we store and send job files. Right now they are in ge->job_files[] 51 - Attempt to ensure that we work with gtk 2.10 and newer. Right
|
/external/harfbuzz_ng/src/ |
D | gen-use-table.py | 248 'Pst': [Right], 253 'Pst': [Right], 263 'Pst': [Right], 269 'Pst': [Right], 320 if 0x1CF2 <= U <= 0x1CF3: UIPC = Right
|
/external/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 466 SmallVectorImpl<Value *> &Right); 471 SmallVectorImpl<Value *> &Right); 1291 ValueList Left, Right; in buildTree_rec() local 1292 reorderInputsAccordingToOpcode(VL, Left, Right); in buildTree_rec() 1294 buildTree_rec(Right, Depth + 1); in buildTree_rec() 1444 ValueList Left, Right; in buildTree_rec() local 1445 reorderAltShuffleOperands(VL, Left, Right); in buildTree_rec() 1447 buildTree_rec(Right, Depth + 1); in buildTree_rec() 1902 SmallVectorImpl<Value *> &Right) { in reorderAltShuffleOperands() argument 1908 Right.push_back(cast<Instruction>(VL[i])->getOperand(1)); in reorderAltShuffleOperands() [all …]
|
/external/fio/tools/plot/ |
D | graph3D.gpm | 40 #Top Right View 48 #Bottom Right View
|
/external/webrtc/talk/app/webrtc/objc/ |
D | .clang-format | 6 PointerAlignment: Right
|
/external/webrtc/webrtc/modules/video_render/ios/ |
D | open_gles20.mm | 69 1, -1, 0, 1, 1, // Bottom Right 70 1, 1, 0, 1, 0, // Top Right 136 // Bottom Right 141 // Top Right
|
D | video_render_ios_view.h | 27 Right:(const float)right
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | messages.properties | 6 FlyoutControlComposite_dockRight=&Right
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | WinException.cpp | 905 static int getAncestor(const WinEHFuncInfo &FuncInfo, int Left, int Right) { in getAncestor() argument 907 int RightRank = getRank(FuncInfo, Right); in getAncestor() 910 Right = FuncInfo.ClrEHUnwindMap[Right].Parent; in getAncestor() 919 while (Left != Right) { in getAncestor() 921 Right = FuncInfo.ClrEHUnwindMap[Right].Parent; in getAncestor()
|
/external/clang/lib/Frontend/ |
D | VerifyDiagnosticConsumer.cpp | 697 DiagList Right(d2_begin, d2_end); in CheckLists() local 705 for (II = Right.begin(), IE = Right.end(); II != IE; ++II) { in CheckLists() 725 Right.erase(II); in CheckLists() 732 num += PrintUnexpected(Diags, &SourceMgr, Right.begin(), Right.end(), Label); in CheckLists()
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_script_resolveprocessor.cpp | 86 CFX_WideString wsName = rnd.m_wsName.Right(rnd.m_wsName.GetLength() - 1); in XFA_ResolveNodes_AnyChild() 93 wsName = wsName.Right(wsName.GetLength() - 1); in XFA_ResolveNodes_AnyChild() 150 rndFind.m_wsName = rnd.m_wsName.Right(rnd.m_wsName.GetLength() - 1); in XFA_ResolveNodes_Excalmatory() 165 CFX_WideString wsName = rnd.m_wsName.Right(rnd.m_wsName.GetLength() - 1); in XFA_ResolveNodes_NumberSign() 698 wsCondition.Right(1) == FX_WSTRC(L"]")) { in XFA_ResolveNode_DoPredicateFilter() 701 wsCondition.Right(1) == FX_WSTRC(L")")) { in XFA_ResolveNode_DoPredicateFilter()
|
/external/llvm/include/llvm/IR/ |
D | IntrinsicsAArch64.td | 323 // Vector Signed->Unsigned Narrowing Saturating Shift Right by Constant 326 // Vector Signed->Unsigned Rounding Narrowing Saturating Shift Right by Const 329 // Vector Narrowing Shift Right by Constant 333 // Vector Rounding Narrowing Shift Right by Constant 336 // Vector Rounding Narrowing Saturating Shift Right by Constant 349 // Vector Shift Right by Constant and Insert
|
D | InstrTypes.h | 212 inline Self &operator+=(int Right) { 213 unsigned new_idx = idx + Right; 219 inline Self operator+(int Right) const { 221 tmp += Right; 225 inline Self &operator-=(int Right) { return operator+=(-Right); } 227 inline Self operator-(int Right) const { return operator+(-Right); }
|
/external/pdfium/fpdfsdk/src/fpdfxfa/ |
D | fpdfxfa_doc.cpp | 1049 tmp = srcURL.Right(csURL.GetLength() - 7); in _MailToInfo() 1055 tmp = tmp.Right(tmp.GetLength() - 7); in _MailToInfo() 1062 srcURL = srcURL.Right(srcURL.GetLength() - (pos + 1)); in _MailToInfo() 1075 tmp = tmp.Right(tmp.GetLength() - 3); in _MailToInfo() 1082 tmp = tmp.Right(tmp.GetLength() - 4); in _MailToInfo() 1088 tmp = tmp.Right(tmp.GetLength() - 8); in _MailToInfo() 1092 tmp = tmp.Right(tmp.GetLength() - 5); in _MailToInfo() 1098 srcURL = srcURL.Right(csURL.GetLength() - (pos + 1)); in _MailToInfo()
|
/external/v8/src/compiler/ |
D | node-matchers.h | 209 template <typename Left, typename Right> 221 typedef Right RightMatcher; 224 const Right& right() const { return right_; } in right() 244 Right right_;
|
/external/opencv3/doc/tutorials/introduction/linux_eclipse/ |
D | linux_eclipse.markdown | 35 - Right click on **DisplayImage** (in the Navigator). **New -\> Folder** . 40 - Right click on your newly created **src** folder. Choose **New source file**: 186 -# Right click in the Project Explorer section. Select Import And then open the C/C++ filter. 191 -# Right click in the Project Explorer section. Select Properties. Under C/C++ Build, set the
|