Home
last modified time | relevance | path

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

12345678910>>...14

/external/clang/lib/Format/
DTokenAnnotator.cpp1802 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 …]
DTokenAnnotator.h156 const FormatToken &Right);
160 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
162 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
/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/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_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/v8/tools/clang/blink_gc_plugin/tests/
Dleft_most_gc_base.h15 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 { };
Dleft_most_gc_base.txt2 ./left_most_gc_base.h:15:1: warning: [blink-gc] Class 'Right' must derive its GC base in the left-m…
3 class Right : public A, public B, public GarbageCollected<Right> { }; // Error
6 class DerivedRight : public Right, public Left { }; // Error
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
Dleft_most_gc_base.h15 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 { };
Dleft_most_gc_base.txt2 ./left_most_gc_base.h:15:1: warning: [blink-gc] Class 'Right' must derive its GC base in the left-m…
3 class Right : public A, public B, public GarbageCollected<Right> { }; // Error
6 class DerivedRight : public Right, public Left { }; // Error
/external/swiftshader/third_party/subzero/src/
DWasmTranslator.cpp393 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-subzero/include/llvm/ADT/
Dilist.h362 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/
DMemorySSA.cpp77 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/
DCFG.h172 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/pdfium/xfa/fgas/font/
Dcfgas_pdffontmgr.cpp153 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/capstone/bindings/vb6/
DmMisc.bas48 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/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmexpression.cpp73 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/
Dilist.h593 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/core/fpdfapi/edit/
Dcpdf_pagecontentgenerator_unittest.cpp141 pathString.Right(43)); in TEST_F()
157 pathString2.Right(43)); in TEST_F()
200 textString.Right(textString.GetLength() - secondResourceAt.value()); in TEST_F()
211 EXPECT_EQ(compareString2, midString.Right(compareString2.GetLength())); in TEST_F()
212 EXPECT_EQ(compareString3, lastString.Right(compareString3.GetLength())); in TEST_F()
266 textString.Right(textString.GetLength() - firstResourceAt.value()); in TEST_F()
273 EXPECT_EQ(compareString2, textString.Right(compareString2.GetLength())); in TEST_F()
/external/pdfium/xfa/fxfa/
Dcxfa_ffline.cpp45 case XFA_AttributeEnum::Right: in GetRectFromHand()
58 case XFA_AttributeEnum::Right: in GetRectFromHand()
72 case XFA_AttributeEnum::Right: in GetRectFromHand()
Dcxfa_ffcheckbutton.cpp141 case XFA_AttributeEnum::Right: { in PerformLayout()
158 iHorzAlign = XFA_AttributeEnum::Right; in PerformLayout()
164 else if (iHorzAlign == XFA_AttributeEnum::Right) in PerformLayout()
210 if (iCapPlacement == XFA_AttributeEnum::Right || in AddUIMargin()
219 if (iCapPlacement == XFA_AttributeEnum::Right) in AddUIMargin()
/external/pdfium/core/fxcrt/css/
Dcfx_css.h40 Right, enumerator
87 Right, enumerator
152 Right, enumerator
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DImmutableIntervalMap.h133 this->Right(T)); in add_internal()
136 add_internal(V, this->Right(T))); in add_internal()
160 this->Value(T), this->Right(T)); in removeOverlap()
163 removeOverlap(this->Right(T), K, Changed)); in removeOverlap()
/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

12345678910>>...14