Home
last modified time | relevance | path

Searched refs:Right (Results 1 – 25 of 194) sorted by relevance

12345678

/external/clang/lib/Format/
DTokenAnnotator.cpp1702 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 …]
DTokenAnnotator.h160 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/
Dbacklash-escapes.txt13 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/
DBackslash escapes.text13 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/
DBackslash escapes.text13 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/
DAttrIterator.h100 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/
Dmicrosoft-abi-multiple-nonvirtual-inheritance.cpp7 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/
Dilist.h645 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/
DDiagnosticNames.cpp48 const DiagnosticRecord &Right) { in orderByID() argument
49 return Left.DiagID < Right.DiagID; in orderByID()
/external/fio/
DGFIO-TODO38 - 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/
Dgen-use-table.py248 'Pst': [Right],
253 'Pst': [Right],
263 'Pst': [Right],
269 'Pst': [Right],
320 if 0x1CF2 <= U <= 0x1CF3: UIPC = Right
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp466 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/
Dgraph3D.gpm40 #Top Right View
48 #Bottom Right View
/external/webrtc/talk/app/webrtc/objc/
D.clang-format6 PointerAlignment: Right
/external/webrtc/webrtc/modules/video_render/ios/
Dopen_gles20.mm69 1, -1, 0, 1, 1, // Bottom Right
70 1, 1, 0, 1, 0, // Top Right
136 // Bottom Right
141 // Top Right
Dvideo_render_ios_view.h27 Right:(const float)right
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
Dmessages.properties6 FlyoutControlComposite_dockRight=&Right
/external/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp905 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/
DVerifyDiagnosticConsumer.cpp697 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/
Dxfa_script_resolveprocessor.cpp86 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/
DIntrinsicsAArch64.td323 // 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
DInstrTypes.h212 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/
Dfpdfxfa_doc.cpp1049 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/
Dnode-matchers.h209 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/
Dlinux_eclipse.markdown35 - 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

12345678