Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp4266 const FormatToken &Right = Tok; in splitPenalty() local
4273 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty()
4275 if (Right.is(Keywords.kw_implements)) in splitPenalty()
4280 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
4285 (Right.is(TT_TemplateString) && Right.TokenText.starts_with("}"))) { in splitPenalty()
4289 if (Left.opensScope() && Right.closesScope()) in splitPenalty()
4292 if (Right.is(tok::l_square)) in splitPenalty()
4294 if (Right.is(tok::period)) in splitPenalty()
4298 if (Right.is(tok::identifier) && Right.Next && Right.Next->is(TT_DictLiteral)) in splitPenalty()
4300 if (Right.is(tok::l_square)) { in splitPenalty()
[all …]
H A DTokenAnnotator.h242 bool spaceRequiredBeforeParens(const FormatToken &Right) const;
245 const FormatToken &Right) const;
248 const FormatToken &Right) const;
251 const FormatToken &Right) const;
254 const FormatToken &Right) const;
/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()
212 assert(Left <= Right && "'Left' must be less or equal to 'Right'"); 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);
442 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
497 Node = Node->Right; in initNode()
[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/clang/include/clang/AST/
H A DAttrIterator.h88 specific_attr_iterator Right) {
89 assert((Left.Current == nullptr) == (Right.Current == nullptr));
90 if (Left.Current < Right.Current)
91 Left.AdvanceToNext(Right.Current);
93 Right.AdvanceToNext(Left.Current);
94 return Left.Current == Right.Current;
97 specific_attr_iterator Right) {
98 return !(Left == Right);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h47 size_t Right; variable
50 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument
51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
57 Stream.indent(Right); in format()
96 support::detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() argument
97 return support::detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBitwiseShiftChecker.cpp32 enum class OperandSide { Left, Right }; enumerator
107 if (BugReportPtr BR = checkOperandNegative(OperandSide::Right)) { in run()
168 if (assumeRequirement(OperandSide::Right, BO_LT, LHSBitWidth)) in checkOvershift()
171 const SVal Right = Ctx.getSVal(operandExpr(OperandSide::Right)); in checkOvershift() local
174 if (auto ConcreteRight = Right.getAs<nonloc::ConcreteInt>()) in checkOvershift()
178 if (const llvm::APSInt *MinRight = SVB.getMinValue(FoldedState, Right); in checkOvershift()
262 if (assumeRequirement(OperandSide::Right, BO_LT, MaximalAllowedShift + 1)) in checkLeftShiftOverflow()
270 const SVal Right = Ctx.getSVal(Op->getRHS()); in checkLeftShiftOverflow() local
273 if (const auto ConcreteRight = Right.getAs<nonloc::ConcreteInt>()) { in checkLeftShiftOverflow()
306 assert(Side == OperandSide::Right); in recordAssumption()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp21 return AlignStyle::Right; in translateLocChar()
30 Where = AlignStyle::Right; in consumeFieldLayout()
64 AlignStyle Where = AlignStyle::Right; in parseReplacementItem()
107 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2); in splitLiteralAndReplacement() local
108 return {ReplacementItem(Middle), Right}; in splitLiteralAndReplacement()
130 StringRef Right = Fmt.substr(BC + 1); in splitLiteralAndReplacement() local
132 return {parseReplacementItem(Spec), Right}; in splitLiteralAndReplacement()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp70 std::tuple<std::string, StringRef, uint32_t, LVOffset> Right( in sortByKind() local
72 return Left < Right; in sortByKind()
82 std::tuple<uint32_t, StringRef, std::string, LVOffset> Right( in sortByLine() local
84 return Left < Right; in sortByLine()
94 std::tuple<StringRef, uint32_t, std::string, LVOffset> Right( in sortByName() local
96 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.cpp118 StatementMatcher Right) { in gtestComparisonInternal() argument
121 hasArgument(3, Right)); in gtestComparisonInternal()
186 StatementMatcher Right) { in gtestAssert() argument
187 return gtestComparisonInternal(MacroType::Assert, Cmp, Left, Right); in gtestAssert()
191 StatementMatcher Right) { in gtestExpect() argument
192 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 Damlogic,axg-sound-card.txt65 "Speaker", "Speaker1 Right";
67 "Speaker", "Speaker2 Right";
78 "Speaker1 Right", "SPK1 OUT_B",
79 "Speaker2 Right", "SPK2 OUT_B",
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
443 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
445 while (Left < Right) in AcpiNsBuildNormalizedPath()
448 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
449 *Right-- = c; in AcpiNsBuildNormalizedPath()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp629 ArgType Right = Other; in matchesArgType() local
638 if (Right.Ptr) { in matchesArgType()
639 Right.Ptr = false; in matchesArgType()
641 } else if (Right.K == AK::SpecificTy && Right.T->isPointerType()) { in matchesArgType()
642 Right.T = Right.T->getPointeeType(); in matchesArgType()
651 if (Right.K == AK::SpecificTy) in matchesArgType()
652 std::swap(Left, Right); in matchesArgType()
655 if (Right.K == AK::SpecificTy) { in matchesArgType()
657 auto Canon2 = C.getCanonicalType(Right.T); in matchesArgType()
671 } else if (Right.K == AK::AnyCharTy) { in matchesArgType()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp122 Node *Left = nullptr, *Right = nullptr; member
165 N->Height = 1 + std::max(height(N->Left), height(N->Right)); in update()
168 if (N->Right) in update()
169 N->MaxEnd = std::max(N->MaxEnd, N->Right->MaxEnd); in update()
174 int32_t Balance = height(N->Right) - height(N->Left); in rebalance()
178 return rotateLeft(N->Right, N); in rebalance()
581 dbgs() << " Right: " << N->Right << "\n\n"; in dump()
585 if (N->Right) in dump()
586 dump(N->Right); in dump()
595 order(N->Right, Seq); in order()
[all …]
/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/clang/lib/Tooling/Transformer/
H A DParsing.cpp223 auto Right = ParseElement(P->State); in parsePair() local
224 if (!Right) in parsePair()
225 return Right.takeError(); in parsePair()
227 P = parseChar(')', Right->State); in parsePair()
232 Op(std::move(Left->Value), std::move(Right->Value))); in parsePair()
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8188-geralt-ciri-sku3.dts31 "Right Spk", "Front Right BE_OUT";
H A Dmt8188-geralt-ciri-sku0.dts31 "Right Spk", "Front Right BE_OUT";
H A Dmt8195-cherry-dojo-r1.dts48 sound-name-prefix = "Right";
144 "Right Spk", "Right BE_OUT",
H A Dmt8188-geralt-ciri-sku1.dts46 "Right Spk", "Front Right BE_OUT";
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h46 StatementMatcher Right);
55 StatementMatcher Right);
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dlib_win32con.c144 *Cols = (int) (WINCONSOLE.SBI.srWindow.Right + 1 - in _nc_console_size()
368 WINCONSOLE.save_region.Right = (SHORT) (WINCONSOLE.SBI.dwSize.X - 1); in save_original_screen()
377 WINCONSOLE.save_region.Right = WINCONSOLE.SBI.srWindow.Right; in save_original_screen()
419 save_region.Right)); in restore_original_screen()
434 WINCONSOLE.save_size.X = (SHORT) (WINCONSOLE.save_region.Right in read_screen_data()
455 WINCONSOLE.save_region.Right, in read_screen_data()
493 WINCONSOLE.SBI.srWindow.Right)); in _nc_console_get_SBI()
530 info->srWindow.Right)); in _nc_console_set_scrollback()
544 int wide = info->srWindow.Right - info->srWindow.Left + 1; in _nc_console_set_scrollback()
559 rect.Right = (SHORT) (wide - 1); in _nc_console_set_scrollback()
[all …]
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin32_driver.c113 save_region.Right = WINCONSOLE.SBI.srWindow.Right;
115 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
130 for (j = save_region.Left; j <= save_region.Right; ++j) {
141 save_region.Right));
201 rec.Right = (SHORT) (x + limit - 1); in con_write16()
240 rec.Right = (short) (x + n - 1); in con_write8()
357 save_region.Right)); in restore_original_screen()
581 int wide = (WINCONSOLE.SBI.srWindow.Right - in wcon_dobeepflash()
597 this_region.Right = WINCONSOLE.SBI.srWindow.Right; in wcon_dobeepflash()

123456789