Searched refs:Left (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp44 /// With `Left` being '(', check if we're at either `[...](` or
46 static bool isLambdaParameterList(const FormatToken *Left) { argument
48 if (Left->Previous && Left->Previous->is(tok::greater) &&
49 Left->Previous->MatchingParen &&
50 Left->Previous->MatchingParen->is(TT_TemplateOpener))
51 Left = Left->Previous->MatchingParen;
54 return Left->Previous && Left
91 FormatToken *Left = CurrentToken->Previous; local
658 FormatToken *Left = CurrentToken->Previous; local
710 updateParameterCount(FormatToken *Left, FormatToken *Current) argument
2404 const FormatToken &Left = *Tok.Previous; local
2606 spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left, const FormatToken &Right) argument
2854 const FormatToken &Left = *Right.Previous; local
3140 const FormatToken &Left = *Right.Previous; local
3409 const FormatToken &Left = *Right.Previous; local
[all...]
H A DTokenAnnotator.h177 bool spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h85 friend bool operator==(specific_attr_iterator Left, argument
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;
94 friend bool operator!=(specific_attr_iterator Left, argument
96 return !(Left == 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)});
64 for (auto *Callee : Left.Callees) {
H A Dxray-stacks.cpp260 StackDuration mergeStackDuration(const StackDuration &Left, argument
263 Data.TerminalDurations.reserve(Left.TerminalDurations.size() +
265 Data.IntermediateDurations.reserve(Left.IntermediateDurations.size() +
268 for (auto duration : Left.TerminalDurations)
273 for (auto duration : Left.IntermediateDurations)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h45 size_t Left; 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) {}
54 Stream.indent(Left);
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 }; member in class:llvm::AlignStyle
50 case AlignStyle::Left:
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DTildeExpressionResolver.cpp85 StringRef Left = local
88 if (!ResolveExact(Left, Output))
91 Output.append(Expr.begin() + Left.size(), Expr.end());
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp80 CharUnits Left = RegionSize - TypeSize;
81 if (Left.isNegative())
84 return Left % FlexSize == 0;
H A DStdLibraryFunctionsChecker.cpp287 const llvm::APSInt &Left = BVF.getValue(R[0].first - 1ULL, T); local
288 if (Left != PlusInf) {
289 assert(MinusInf <= Left);
290 State = CM.assumeInclusiveRange(State, *N, MinusInf, Left, false);
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; local
435 Left = FullPath;
438 while (Left < Right)
440 c = *Left;
441 *Left++ = *Right;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.h33 /// Record that a local context has been entered. Left and
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/amd/amd/
H A Dconf_tok.l130 dprintf("%8d: Left bracket \"%s\"\n", yytext);
/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));
173 if (N->Left)
174 N->MaxEnd = std::max(N->MaxEnd, N->Left->MaxEnd);
181 int32_t Balance = height(N->Right) - height(N->Left);
183 return rotateRight(N->Left, N);
592 dbgs() << " Left: " << N->Left << '\n';
595 if (N->Left)
596 dump(N->Left);
[all...]
H A DHexagonSplitDouble.cpp797 bool Left = !Right; local
803 unsigned ShiftOpc = Left ? S2_asl_i_r
834 if (S == 16 && Left)
841 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left ? LoR : TmpR))
845 if (Left) {
869 BuildMI(B, MI, DL, TII->get(TargetOpcode::COPY), (Left ? HiR : LoR))
870 .addReg(Op1.getReg(), RS & ~RegState::Kill, (Left ? LoSR : HiSR));
872 BuildMI(B, MI, DL, TII->get(A2_tfrsi), (Left ? LoR : HiR))
880 if (S == 16 && Left)
887 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left
[all...]
H A DHexagonBlockRanges.cpp406 RegisterSet Left; local
409 Left.insert(I.first);
412 Left.insert(I.first);
413 for (auto R : Left)
/freebsd-12-stable/contrib/less/
H A Dscreen.c784 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1;
1486 cpos.X = csbi.srWindow.Left + (col - 1);
1584 size.X = scr.srWindow.Right - scr.srWindow.Left + 1;
1853 rcClip.Left = csbi.srWindow.Left;
1863 new_org.X = rcSrc.Left;
1907 rcSrc.Left = csbi.srWindow.Left;
1913 rcClip.Left = rcSrc.Left;
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h64 const Node *Left() const { return m_left; } function in class:lldb_private::postfix::BinaryOpNode
65 Node *&Left() { return m_left; } 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());
180 Dispatch(binary.Left());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp15 return AlignStyle::Left;
/freebsd-12-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c200 rec.Left = (short) x;
241 rec.Left = (short) x;
565 T(("... display(Top:%d Bottom:%d Left:%d Right:%d)",
568 p->SBI.srWindow.Left,
574 p->origin.X = p->SBI.srWindow.Left;
648 PropOf(TCB)->SBI.srWindow.Left);
870 readRegion.Left = 0;
877 readRegion.Left,
894 - p->SBI.srWindow.Left + 1);
903 readRegion.Left
[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
1068 int LeftRank = getTryRank(FuncInfo, Left);
1077 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState;
1081 while (Left != Right) {
1082 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState;
1086 return Left;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp175 llvm::sort(Bucket, [](const std::pair<StringRef, PSHashRecord> &Left,
177 return gsiRecordLess(Left.first, Right.first);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist.h413 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { argument
414 Left.swap(Right);

Completed in 181 milliseconds

12