Home
last modified time | relevance | path

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

1234

/NextBSD/contrib/llvm/tools/clang/lib/Format/
HDTokenAnnotator.cpp1616 const FormatToken &Right = Tok; in splitPenalty() local
1622 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty()
1624 if (Right.is(Keywords.kw_implements)) in splitPenalty()
1629 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
1635 if (Left.is(tok::comma) || (Right.is(tok::identifier) && Right.Next && in splitPenalty()
1636 Right.Next->is(TT_DictLiteral))) in splitPenalty()
1638 if (Right.is(tok::l_square)) { in splitPenalty()
1642 if (Right.is(TT_LambdaLSquare) && Left.is(tok::equal)) in splitPenalty()
1644 if (!Right.isOneOf(TT_ObjCMethodExpr, TT_LambdaLSquare, in splitPenalty()
1649 if (Right.isOneOf(TT_StartOfName, TT_FunctionDeclarationName) || in splitPenalty()
[all …]
HDTokenAnnotator.h151 const FormatToken &Right);
155 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
157 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDAttrIterator.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);
/NextBSD/sys/contrib/dev/acpica/components/namespace/
HDnsnames.c212 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
272 Right = FullPath+Length-1; in AcpiNsBuildNormalizedPath()
273 while (Left < Right) in AcpiNsBuildNormalizedPath()
276 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
277 *Right-- = c; in AcpiNsBuildNormalizedPath()
/NextBSD/contrib/llvm/include/llvm/IR/
HDCFG.h210 inline Self& operator+=(int Right) {
211 unsigned new_idx = idx + Right;
217 inline Self operator+(int Right) const {
219 tmp += Right;
223 inline Self& operator-=(int Right) {
224 return operator+=(-Right);
227 inline Self operator-(int Right) const {
228 return operator+(-Right);
HDIntrinsicsAArch64.td320 // Vector Signed->Unsigned Narrowing Saturating Shift Right by Constant
323 // Vector Signed->Unsigned Rounding Narrowing Saturating Shift Right by Const
326 // Vector Narrowing Shift Right by Constant
330 // Vector Rounding Narrowing Shift Right by Constant
333 // Vector Rounding Narrowing Saturating Shift Right by Constant
346 // Vector Shift Right by Constant and Insert
/NextBSD/contrib/less/
HDscreen.c734 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; in scrsize()
1506 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in win32_init_term()
1638 rcClip.Right = csbi.srWindow.Right; in add_line()
1692 rcSrc.Right = csbi.srWindow.Right;
1698 rcClip.Right = rcSrc.Right;
1779 rcSrc.Right = csbi.srWindow.Right;
1785 rcClip.Right = rcSrc.Right;
1803 size = (n * csbi.dwSize.X) + (rcSrc.Right - topleft.X);
1878 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in check_winch()
/NextBSD/contrib/llvm/lib/Transforms/Vectorize/
HDSLPVectorizer.cpp452 SmallVectorImpl<Value *> &Right);
457 SmallVectorImpl<Value *> &Right);
1242 ValueList Left, Right; in buildTree_rec() local
1243 reorderInputsAccordingToOpcode(VL, Left, Right); in buildTree_rec()
1245 buildTree_rec(Right, Depth + 1); in buildTree_rec()
1395 ValueList Left, Right; in buildTree_rec() local
1396 reorderAltShuffleOperands(VL, Left, Right); in buildTree_rec()
1398 buildTree_rec(Right, Depth + 1); in buildTree_rec()
1850 SmallVectorImpl<Value *> &Right) { in reorderAltShuffleOperands() argument
1856 Right.push_back(cast<Instruction>(VL[i])->getOperand(1)); in reorderAltShuffleOperands()
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDLoopUtils.cpp420 Value *Left, Value *Right) { in createMinMaxOp() argument
447 Cmp = Builder.CreateFCmp(P, Left, Right, "rdx.minmax.cmp"); in createMinMaxOp()
449 Cmp = Builder.CreateICmp(P, Left, Right, "rdx.minmax.cmp"); in createMinMaxOp()
451 Value *Select = Builder.CreateSelect(Cmp, Left, Right, "rdx.minmax.select"); in createMinMaxOp()
/NextBSD/contrib/ncurses/ncurses/win32con/
HDwin_driver.c202 rec.Right = (short) (x + limit - 1); in con_write16()
243 rec.Right = (short) (x + n - 1); in con_write8()
569 p->SBI.srWindow.Right)); in get_SBI()
647 *Cols = (int) (PropOf(TCB)->SBI.srWindow.Right + 1 - in drv_size()
872 readRegion.Right = (SHORT) (bufferSize.X - 1); in save_original_screen()
879 readRegion.Right, in save_original_screen()
893 bufferSize.X = (SHORT) (p->SBI.srWindow.Right in save_original_screen()
905 readRegion.Right = p->SBI.srWindow.Right; in save_original_screen()
912 readRegion.Right, in save_original_screen()
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDVerifyDiagnosticConsumer.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()
/NextBSD/crypto/heimdal/lib/roken/
HDget_window_size.c113 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left; in get_window_size()
/NextBSD/contrib/llvm/tools/llvm-diff/
HDDiffConsumer.h37 virtual void enterContext(Value *Left, Value *Right) = 0;
/NextBSD/sys/mips/conf/
HDPB4727 # Right now it will just detect 32mb out of 64mb, as well as
/NextBSD/share/misc/
HDusb_hid_usages57 0x8A System Menu Right
65 0x92 D-pad Right
198 0x21 Turn Right/Left
200 0x23 Roll Right/Left
201 0x24 Move Right/Left
204 0x27 Lean Right/Left
328 0x5E Keypad 6 and Right Arrow
452 0xE7 Keyboard Right GUI
633 0x45 Menu Right
742 0x150 Balance Right
[all …]
/NextBSD/contrib/tcsh/nls/ukrainian/
HDset195 92 Right hand side too long
/NextBSD/share/syscons/keymaps/
HDel.iso07.kbd6 # English/Greek keyboard lock: (Left)Alt+(Left|Right)Shift
7 # English/Greek keyboard shift: (Right)AltGr
9 # Meta shift: (Right)Windows or Menu
14 # Next screen: Ctrl+Right Arrow
/NextBSD/share/vt/keymaps/
HDgr.kbd6 # English/Greek keyboard lock: (Left)Alt+(Left|Right)Shift
7 # English/Greek keyboard shift: (Right)AltGr
9 # Meta shift: (Right)Windows or Menu
14 # Next screen: Ctrl+Right Arrow
/NextBSD/contrib/llvm/include/llvm/ADT/
HDImmutableSet.h91 ImutAVLTree *Right = T->getRight(); in getMaxElement() local
92 while (Right) { T = Right; Right = T->getRight(); } in getMaxElement()
HDilist.h663 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
664 Left.swap(Right);
/NextBSD/contrib/llvm/include/llvm/Transforms/Utils/
HDLoopUtils.h149 Value *Left, Value *Right);
/NextBSD/contrib/gcc/
HDLANGUAGES1 Right now there is no documentation for the GCC tree -> rtl interfaces
/NextBSD/sys/gnu/dts/arm/
HDste-nomadik-nhk15.dts112 0x0301006a // Right
/NextBSD/crypto/openssl/doc/crypto/
HDRSA_check_key.pod52 to be considered. Right now RSA_check_key() simply uses the RSA structure
/NextBSD/sys/boot/forth/
HDversion.4th84 \ Right justify the text

1234