Home
last modified time | relevance | path

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

12345678910

/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/pdfium/core/fpdftext/
Dcpdf_linkextract.cpp72 strBeCheck = strBeCheck.Right(str.GetLength() - str.Find(L"http://www.")); in CheckWebLink()
76 strBeCheck = strBeCheck.Right(str.GetLength() - str.Find(L"http://")); in CheckWebLink()
80 strBeCheck = strBeCheck.Right(str.GetLength() - str.Find(L"https://www.")); in CheckWebLink()
84 strBeCheck = strBeCheck.Right(str.GetLength() - str.Find(L"https://")); in CheckWebLink()
88 strBeCheck = strBeCheck.Right(str.GetLength() - str.Find(L"www.")); in CheckWebLink()
116 str = str.Right(str.GetLength() - removed_len); in CheckMailLink()
/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/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/xfa/fde/css/
Dfde_css.h42 Right, enumerator
89 Right, enumerator
154 Right, enumerator
/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.py249 'Pst': [Right],
254 'Pst': [Right],
264 'Pst': [Right],
270 'Pst': [Right],
321 if 0x1CF2 <= U <= 0x1CF3: UIPC = Right
/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/llvm/test/CodeGen/Hexagon/
Dswp-max.ll6 define i32 @test(i32 %Left, i32 %Right) {
8 %add = add nsw i32 %Right, %Left
/external/fio/tools/plot/
Dgraph3D.gpm40 #Top Right View
48 #Bottom Right View
/external/pdfium/core/fpdfapi/edit/
Dcpdf_pagecontentgenerator_unittest.cpp131 EXPECT_EQ(" gs 1 2 m 3 4 l 5 6 l h B Q\n", pathString.Right(28)); in TEST_F()
146 EXPECT_EQ(" gs 1 2 m 3 4 l 5 6 l h B Q\n", pathString2.Right(28)); in TEST_F()
171 EXPECT_EQ(" 10 Tf <48656C6C6F20576F726C64> Tj ET\n", textString.Right(38)); in TEST_F()
/external/pdfium/core/fxcrt/
Dfx_basic_bstring_unittest.cpp480 EXPECT_EQ("", fred.Right(0)); in TEST()
481 EXPECT_EQ("D", fred.Right(1)); in TEST()
482 EXPECT_EQ("ED", fred.Right(2)); in TEST()
483 EXPECT_EQ("RED", fred.Right(3)); in TEST()
484 EXPECT_EQ("FRED", fred.Right(4)); in TEST()
486 EXPECT_EQ("FRED", fred.Right(5)); in TEST()
487 EXPECT_EQ("", fred.Right(-1)); in TEST()
490 EXPECT_EQ("", empty.Right(0)); in TEST()
491 EXPECT_EQ("", empty.Right(1)); in TEST()
492 EXPECT_EQ("", empty.Right(-1)); in TEST()
Dfx_basic_wstring_unittest.cpp447 EXPECT_EQ(L"", fred.Right(0)); in TEST()
448 EXPECT_EQ(L"D", fred.Right(1)); in TEST()
449 EXPECT_EQ(L"ED", fred.Right(2)); in TEST()
450 EXPECT_EQ(L"RED", fred.Right(3)); in TEST()
451 EXPECT_EQ(L"FRED", fred.Right(4)); in TEST()
453 EXPECT_EQ(L"FRED", fred.Right(5)); in TEST()
454 EXPECT_EQ(L"", fred.Right(-1)); in TEST()
457 EXPECT_EQ(L"", empty.Right(0)); in TEST()
458 EXPECT_EQ(L"", empty.Right(1)); in TEST()
459 EXPECT_EQ(L"", empty.Right(-1)); in TEST()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp438 SmallVectorImpl<Value *> &Right);
443 SmallVectorImpl<Value *> &Right);
1271 ValueList Left, Right; in buildTree_rec() local
1272 reorderInputsAccordingToOpcode(VL, Left, Right); in buildTree_rec()
1274 buildTree_rec(Right, Depth + 1); in buildTree_rec()
1435 ValueList Left, Right; in buildTree_rec() local
1436 reorderAltShuffleOperands(VL, Left, Right); in buildTree_rec()
1438 buildTree_rec(Right, Depth + 1); in buildTree_rec()
1927 SmallVectorImpl<Value *> &Right) { in reorderAltShuffleOperands() argument
1931 Right.push_back(cast<Instruction>(i)->getOperand(1)); in reorderAltShuffleOperands()
[all …]
/external/pdfium/fpdfsdk/fpdfxfa/
Dcpdfxfa_docenvironment.cpp854 tmp = srcURL.Right(csURL.GetLength() - 7); in MailToInfo()
857 tmp = tmp.Right(tmp.GetLength() - 7); in MailToInfo()
864 srcURL = srcURL.Right(srcURL.GetLength() - (pos + 1)); in MailToInfo()
874 tmp = tmp.Right(tmp.GetLength() - 3); in MailToInfo()
880 tmp = tmp.Right(tmp.GetLength() - 4); in MailToInfo()
886 tmp = tmp.Right(tmp.GetLength() - 8); in MailToInfo()
890 tmp = tmp.Right(tmp.GetLength() - 5); in MailToInfo()
893 srcURL = (pos == -1) ? L"" : srcURL.Right(csURL.GetLength() - (pos + 1)); in MailToInfo()

12345678910