Searched refs:Right (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h86 specific_attr_iterator Right) {
87 assert((Left.Current == nullptr) == (Right.Current == nullptr));
88 if (Left.Current < Right.Current)
89 Left.AdvanceToNext(Right.Current);
91 Right.AdvanceToNext(Left.Current);
92 return Left.Current == Right.Current;
95 specific_attr_iterator Right) {
96 return !(Left == Right);
85 operator ==(specific_attr_iterator Left, specific_attr_iterator Right) argument
94 operator !=(specific_attr_iterator Left, specific_attr_iterator Right) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp2405 const FormatToken &Right = Tok; local
2411 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws))
2413 if (Right.is(Keywords.kw_implements))
2418 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma))
2423 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}")))
2426 if (Left.opensScope() && Right.closesScope())
2430 if (Right.is(tok::identifier) && Right.Next && Right
2606 spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left, const FormatToken &Right) argument
2852 spaceRequiredBefore(const AnnotatedLine &Line, const FormatToken &Right) argument
3138 mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right) argument
3407 canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right) argument
[all...]
H A DTokenAnnotator.h175 bool spaceRequiredBeforeParens(const FormatToken &Right) const;
178 const FormatToken &Right);
180 bool spaceRequiredBefore(const AnnotatedLine &Line, const FormatToken &Right);
182 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
184 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dtrie-node.h49 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right, argument
56 assert(Left.FuncId == Right.FuncId);
58 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)});
72 for (auto *Callee : Right.Callees) {
H A Dxray-stacks.cpp261 const StackDuration &Right) {
264 Right.TerminalDurations.size());
266 Right.IntermediateDurations.size());
270 for (auto duration : Right.TerminalDurations)
275 for (auto duration : Right.IntermediateDurations)
260 mergeStackDuration(const StackDuration &Left, const StackDuration &Right) argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h46 size_t Right; member in class:llvm::detail::final
49 PadAdapter(T &&Item, size_t Left, size_t Right) argument
50 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {}
56 Stream.indent(Right);
91 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { argument
92 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right);
H A DFormatCommon.h17 enum class AlignStyle { Left, Center, Right };
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp19 return AlignStyle::Right;
28 Where = AlignStyle::Right;
64 AlignStyle Where = AlignStyle::Right;
107 StringRef Right = Fmt.drop_front(BO + NumEscapedBraces * 2); local
108 return std::make_pair(ReplacementItem{Middle}, Right);
130 StringRef Right = Fmt.substr(BC + 1); local
134 return std::make_pair(*RI, Right);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist.h347 void merge(iplist_impl &Right, Compare comp) { argument
348 if (this == &Right)
350 this->transferNodesFromList(Right, Right.begin(), Right.end());
351 base_list_type::merge(Right, comp);
353 void merge(iplist_impl &Right) { return merge(Right, op_less); } argument
413 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { argument
414 Left.swap(Right);
[all...]
H A DImmutableSet.h92 ImutAVLTree *Right = T->getRight(); local
93 while (Right) { T = Right; Right = T->getRight(); }
514 assert(!isEmpty(R) && "Right tree cannot be empty to have a height >= 2");
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; local
436 Right = FullPath+Length - 1;
438 while (Left < Right)
441 *Left++ = *Right;
442 *Right-- = c;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.h34 /// Right are IR "containers" of some sort which are being
37 virtual void enterContext(Value *Left, Value *Right) = 0;
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Dget_window_size.c113 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp129 Node *Left = nullptr, *Right = nullptr; member in struct:__anon5145::RangeTree::Node
172 N->Height = 1 + std::max(height(N->Left), height(N->Right));
175 if (N->Right)
176 N->MaxEnd = std::max(N->MaxEnd, N->Right->MaxEnd);
181 int32_t Balance = height(N->Right) - height(N->Left);
185 return rotateLeft(N->Right, N);
593 dbgs() << " Right: " << N->Right << "\n\n";
597 if (N->Right)
598 dump(N->Right);
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp395 fmt_align(StreamIdx, AlignStyle::Right, NumDigits(StreamCount)),
396 fmt_align(getPdb().getStreamByteSize(StreamIdx), AlignStyle::Right,
442 fmt_align(Modi, AlignStyle::Right, HeaderScope->LabelWidth), SG.name());
677 fmt_align(Modi, AlignStyle::Right, NumDigits(ModCount)),
867 fmt_align("Record Kind", AlignStyle::Right, FieldWidth),
868 fmt_align(CountHeader, AlignStyle::Right, CD),
869 fmt_align(SizeHeader, AlignStyle::Right, SD));
875 fmt_align(Label, AlignStyle::Right, FieldWidth),
876 fmt_align(Stat.second.Count, AlignStyle::Right, CD),
877 fmt_align(Stat.second.Size, AlignStyle::Right, S
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h67 const Node *Right() const { return m_right; } function in class:lldb_private::postfix::BinaryOpNode
68 Node *&Right() { return m_right; } function in class:lldb_private::postfix::BinaryOpNode
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp117 return Dispatch(binary.Left()) && Dispatch(binary.Right());
181 Dispatch(binary.Right());
/freebsd-12-stable/contrib/less/
H A Dscreen.c784 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1;
1584 size.X = scr.srWindow.Right - scr.srWindow.Left + 1;
1855 rcClip.Right = csbi.srWindow.Right;
1909 rcSrc.Right = csbi.srWindow.Right;
1915 rcClip.Right = rcSrc.Right;
1996 rcSrc.Right = csbi.srWindow.Right;
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp263 auto *Right = llvm::partition_point( local
265 bool AcceptRight = Right != All.end() && Right->location() <= Loc;
266 bool AcceptLeft = Right != All.begin() && (Right - 1)->endLocation() >= Loc;
267 return llvm::makeArrayRef(Right - (AcceptLeft ? 1 : 0),
268 Right + (AcceptRight ? 1 : 0));
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp925 DiagList Right(d2_begin, d2_end);
933 for (II = Right.begin(), IE = Right.end(); II != IE; ++II) {
954 Right.erase(II);
958 // Now all that's left in Right are those that were not matched.
961 num += PrintUnexpected(Diags, &SourceMgr, Right.begin(), Right.end(), Label);
/freebsd-12-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c202 rec.Right = (short) (x + limit - 1);
243 rec.Right = (short) (x + n - 1);
565 T(("... display(Top:%d Bottom:%d Left:%d Right:%d)",
569 p->SBI.srWindow.Right));
647 *Cols = (int) (PropOf(TCB)->SBI.srWindow.Right + 1 -
872 readRegion.Right = (SHORT) (bufferSize.X - 1);
879 readRegion.Right,
893 bufferSize.X = (SHORT) (p->SBI.srWindow.Right
905 readRegion.Right = p->SBI.srWindow.Right;
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1067 static int getTryAncestor(const WinEHFuncInfo &FuncInfo, int Left, int Right) { argument
1069 int RightRank = getTryRank(FuncInfo, Right);
1072 Right = FuncInfo.ClrEHUnwindMap[Right].TryParentState;
1081 while (Left != Right) {
1083 Right = FuncInfo.ClrEHUnwindMap[Right].TryParentState;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp176 const std::pair<StringRef, PSHashRecord> &Right) {
177 return gsiRecordLess(Left.first, Right.first);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc112 // Right shift by the denormalization amount with sticky.
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp295 const llvm::APSInt &Right = BVF.getValue(R[E - 1].second + 1ULL, T); local
296 if (Right != MinusInf) {
297 assert(Right <= PlusInf);
298 State = CM.assumeInclusiveRange(State, *N, Right, PlusInf, false);

Completed in 157 milliseconds

12