Home
last modified time | relevance | path

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

12345678

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp3757 if (Right.is(tok::identifier) && Right.Next && Right.Next->is(TT_DictLiteral)) in splitPenalty()
4120 if (Right.is(tok::l_brace) && Right.is(BK_Block)) in spaceRequiredBetween()
4237 (Right.is(tok::r_brace) && Right.MatchingParen && in spaceRequiredBetween()
4382 if (Right.is(tok::r_brace) && Right.MatchingParen && in spaceRequiredBetween()
4390 (!Right.Next || Right.Next->is(tok::semi))) { in spaceRequiredBetween()
4997 if (Right.Next && Right.Next->is(TT_FatArrow) && in mustBreakBefore()
5353 Right.isNot(tok::r_square) && Right.Next) { in mustBreakBefore()
5602 if (Right.is(tok::r_square) && Right.MatchingParen && in canBreakBefore()
5606 if (Right.is(TT_SelectorName) || (Right.is(tok::identifier) && Right.Next && in canBreakBefore()
5665 if (Right.is(tok::r_square) && Right.MatchingParen && in canBreakBefore()
[all …]
H A DTokenAnnotator.h230 bool spaceRequiredBeforeParens(const FormatToken &Right) const;
233 const FormatToken &Right) const;
236 const FormatToken &Right) const;
239 const FormatToken &Right) const;
242 const FormatToken &Right) const;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h85 specific_attr_iterator Right) {
86 assert((Left.Current == nullptr) == (Right.Current == nullptr));
87 if (Left.Current < Right.Current)
88 Left.AdvanceToNext(Right.Current);
90 Right.AdvanceToNext(Left.Current);
91 return Left.Current == Right.Current;
94 specific_attr_iterator Right) {
95 return !(Left == Right);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h205 PointType Right; variable
210 IntervalData(PointType Left, PointType Right, ValueType Value) in IntervalData() argument
211 : Left(Left), Right(Right), Value(Value) { in IntervalData()
216 PointType right() const { return Right; } in right()
270 IntervalNode *Right = nullptr; // RS - Right subtree. variable
310 deleteTree(Node->Right); in deleteTree()
354 printTree(OS, Level, Node->Right, HexFormat);
497 Node = Node->Right; in initNode()
526 Node = Node->Right; in nextInterval()
538 Node = Point < Node->middle() ? Node->Left : Node->Right; in nextInterval()
[all …]
H A Dilist.h286 void merge(iplist_impl &Right, Compare comp) {
287 if (this == &Right)
289 this->transferNodesFromList(Right, Right.begin(), Right.end());
290 base_list_type::merge(Right, comp);
292 void merge(iplist_impl &Right) { return merge(Right, op_less); }
352 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
353 Left.swap(Right);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp21 return AlignStyle::Right; in translateLocChar()
30 Where = AlignStyle::Right; in consumeFieldLayout()
66 AlignStyle Where = AlignStyle::Right; in parseReplacementItem()
107 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2); in splitLiteralAndReplacement() local
108 return std::make_pair(ReplacementItem{Middle}, Right); in splitLiteralAndReplacement()
130 StringRef Right = Fmt.substr(BC + 1); in splitLiteralAndReplacement() local
134 return std::make_pair(*RI, Right); in splitLiteralAndReplacement()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h45 size_t Right; variable
48 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument
49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
55 Stream.indent(Right); in format()
92 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() argument
93 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBitwiseShiftChecker.cpp34 enum class OperandSide { Left, Right }; enumerator
109 if (BugReportPtr BR = checkOperandNegative(OperandSide::Right)) { in run()
170 if (assumeRequirement(OperandSide::Right, BO_LT, LHSBitWidth)) in checkOvershift()
173 const SVal Right = Ctx.getSVal(operandExpr(OperandSide::Right)); in checkOvershift() local
176 if (auto ConcreteRight = Right.getAs<nonloc::ConcreteInt>()) in checkOvershift()
180 if (const llvm::APSInt *MinRight = SVB.getMinValue(FoldedState, Right)) { in checkOvershift()
263 if (assumeRequirement(OperandSide::Right, BO_LT, MaximalAllowedShift + 1)) in checkLeftShiftOverflow()
271 const SVal Right = Ctx.getSVal(Op->getRHS()); in checkLeftShiftOverflow() local
274 if (const auto ConcreteRight = Right.getAs<nonloc::ConcreteInt>()) { in checkLeftShiftOverflow()
307 assert(Side == OperandSide::Right); in recordAssumption()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp71 std::tuple<std::string, StringRef, uint32_t, LVOffset> Right( in sortByKind() local
73 return Left < Right; in sortByKind()
83 std::tuple<uint32_t, StringRef, std::string, LVOffset> Right( in sortByLine() local
85 return Left < Right; in sortByLine()
95 std::tuple<StringRef, uint32_t, std::string, LVOffset> Right( in sortByName() local
97 return Left < Right; in sortByName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dtrie-node.h49 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right, in mergeTrieNodes() argument
56 assert(Left.FuncId == Right.FuncId); in mergeTrieNodes()
58 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)}); in mergeTrieNodes()
72 for (auto *Callee : Right.Callees) { in mergeTrieNodes()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp123 StatementMatcher Right) { in gtestComparisonInternal() argument
126 hasArgument(3, Right)); in gtestComparisonInternal()
191 StatementMatcher Right) { in gtestAssert() argument
192 return gtestComparisonInternal(MacroType::Assert, Cmp, Left, Right); in gtestAssert()
196 StatementMatcher Right) { in gtestExpect() argument
197 return gtestComparisonInternal(MacroType::Expect, Cmp, Left, Right); in gtestExpect()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dwm8731.txt22 * ROUT: Right Channel Line Output
24 * RHPOUT: Right Channel Headphone Output
26 * RLINEIN: Right Channel Line Input
H A Dwlf,wm8731.yaml17 * ROUT: Right Channel Line Output
19 * RHPOUT: Right Channel Headphone Output
21 * RLINEIN: Right Channel Line Input
H A Damlogic,axg-sound-card.txt65 "Speaker", "Speaker1 Right";
67 "Speaker", "Speaker2 Right";
78 "Speaker1 Right", "SPK1 OUT_B",
79 "Speaker2 Right", "SPK2 OUT_B",
H A Damlogic,axg-sound-card.yaml116 "Speaker", "Speaker1 Right",
118 "Speaker", "Speaker2 Right";
129 "Speaker1 Right", "SPK1 OUT_B",
130 "Speaker2 Right", "SPK2 OUT_B",
/freebsd/contrib/libucl/haskell/
H A Dhucl.hs74 else Right <$> peekCString ( ucl_parser_get_error p)
83 else Right <$> peekCString ( ucl_parser_get_error p)
87 (Right err) -> Right err
89 Nothing -> Right "MessagePack fromObject Error"
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
436 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
438 while (Left < Right) in AcpiNsBuildNormalizedPath()
441 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
442 *Right-- = c; in AcpiNsBuildNormalizedPath()
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun4i-a10-inet9f-rev03.dts75 label = "Left Joystick Right";
99 label = "Right Joystick Left";
107 label = "Right Joystick Right";
115 label = "Right Joystick Up";
123 label = "Right Joystick Down";
139 label = "DPad Right";
205 label = "Top Right Button";
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp177 if (N->Right) in update()
598 if (N->Right) in dump()
599 dump(N->Right); in dump()
608 order(N->Right, Seq); in order()
635 N->Right = add(N->Right, R); in add()
647 N->Right = remove(N->Right, D); in remove()
659 while (M->Right) in remove()
660 M = M->Right; in remove()
662 M->Right = N->Right; in remove()
674 Higher->Right = Lower->Left; in rotateLeft()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp230 auto Right = ParseElement(P->State); in parsePair() local
231 if (!Right) in parsePair()
232 return Right.takeError(); in parsePair()
234 P = parseChar(')', Right->State); in parsePair()
239 Op(std::move(Left->Value), std::move(Right->Value))); in parsePair()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h46 StatementMatcher Right);
55 StatementMatcher Right);
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c215 save_region.Right = CON.SBI.srWindow.Right;
243 save_region.Right));
341 rec.Right = (short) (x + n - 1); in con_write8()
462 save_region.Right)); in restore_original_screen()
687 this_region.Right = CON.SBI.srWindow.Right; in wcon_dobeepflash()
768 CON.SBI.srWindow.Right)); in get_SBI()
945 info->srWindow.Right)); in set_scrollback()
974 rect.Right = (SHORT) (wide - 1); in set_scrollback()
993 rect.Bottom, rect.Right)); in set_scrollback()
1174 CON.save_region.Right, in read_screen_data()
[all …]
H A Dwin32_driver.c125 save_region.Right = WINCONSOLE.SBI.srWindow.Right;
127 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
142 for (j = save_region.Left; j <= save_region.Right; ++j) {
153 save_region.Right));
213 rec.Right = (SHORT) (x + limit - 1); in con_write16()
252 rec.Right = (short) (x + n - 1); in con_write8()
369 save_region.Right)); in restore_original_screen()
587 int wide = (WINCONSOLE.SBI.srWindow.Right - in wcon_dobeepflash()
603 this_region.Right = WINCONSOLE.SBI.srWindow.Right; in wcon_dobeepflash()
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dlib_win32con.c161 *Cols = (int) (WINCONSOLE.SBI.srWindow.Right + 1 - in _nc_console_size()
398 WINCONSOLE.save_region.Right = (SHORT) (WINCONSOLE.SBI.dwSize.X - 1); in save_original_screen()
407 WINCONSOLE.save_region.Right = WINCONSOLE.SBI.srWindow.Right; in save_original_screen()
448 save_region.Right)); in restore_original_screen()
462 WINCONSOLE.save_size.X = (SHORT) (WINCONSOLE.save_region.Right in read_screen_data()
481 WINCONSOLE.save_region.Right, in read_screen_data()
519 WINCONSOLE.SBI.srWindow.Right)); in _nc_console_get_SBI()
556 info->srWindow.Right)); in _nc_console_set_scrollback()
570 int wide = info->srWindow.Right - info->srWindow.Left + 1; in _nc_console_set_scrollback()
585 rect.Right = (SHORT) (wide - 1); in _nc_console_set_scrollback()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-olinuxino.dts347 "Microphone", "Microphone Jack Right",
350 "Right DAC", "DACR",
353 "ADCR", "Right ADC",
356 "Microphone Jack Right", "MBIAS",
357 "MIC2", "Microphone Jack Right";

12345678