Home
last modified time | relevance | path

Searched refs:Left (Results 1 – 25 of 137) sorted by relevance

123456

/openbsd/gnu/llvm/clang/lib/Format/
H A DTokenAnnotator.cpp55 if (Left->Previous && Left->Previous->is(tok::greater) && in isLambdaParameterList()
58 Left = Left->Previous->MatchingParen; in isLambdaParameterList()
62 return Left->Previous && Left->Previous->is(tok::r_square) && in isLambdaParameterList()
3288 if (Left.is(tok::l_paren) && Left.Previous && in splitPenalty()
3475 return Left.Tok.isLiteral() || (Left.is(tok::identifier) && Left.Previous && in spaceRequiredBetween()
3566 return Left.Previous && !Left.Previous->isOneOf( in spaceRequiredBetween()
3570 if (Left.is(tok::ellipsis) && Left.Previous && in spaceRequiredBetween()
4033 (Left.is(Keywords.kw_of) && Left.Previous && in spaceRequiredBefore()
4047 if (Left.is(tok::kw_default) && Left.Previous && in spaceRequiredBefore()
4588 if ((Left.is(tok::l_brace) || (Left.is(tok::less) && Left.Previous && in mustBreakBefore()
[all …]
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DAttrIterator.h84 friend bool operator==(specific_attr_iterator Left,
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;
93 friend bool operator!=(specific_attr_iterator Left,
95 return !(Left == Right);
/openbsd/regress/bin/ksh/
H A Dheredoc.t162 echo Left overs: *
167 Left overs: *
186 echo Left overs: *
190 Left overs: *
216 echo Left overs: *
221 Left overs: *
239 Left overs: *
264 Left overs: *
282 Left overs: *
300 Left overs: *
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DIntervalTree.h205 PointType Left;
211 IntervalData(PointType Left, PointType Right, ValueType Value) in IntervalData() argument
212 : Left(Left), Right(Right), Value(Value) { in IntervalData()
216 PointType left() const { return Left; } in left()
270 IntervalNode *Left = nullptr; // LS - Left subtree. variable
310 deleteTree(Node->Left); in deleteTree()
354 printTree(OS, Level, Node->Left, HexFormat);
492 Node = Node->Left; in initNode()
519 Node = Node->Left; in nextInterval()
545 explicit find_iterator(const IntervalReferences *Left, in find_iterator() argument
[all …]
/openbsd/gnu/llvm/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()
64 for (auto *Callee : Left.Callees) { in mergeTrieNodes()
H A Dxray-stacks.cpp262 static StackDuration mergeStackDuration(const StackDuration &Left, in mergeStackDuration() argument
265 Data.TerminalDurations.reserve(Left.TerminalDurations.size() + in mergeStackDuration()
267 Data.IntermediateDurations.reserve(Left.IntermediateDurations.size() + in mergeStackDuration()
270 for (auto duration : Left.TerminalDurations) in mergeStackDuration()
275 for (auto duration : Left.IntermediateDurations) in mergeStackDuration()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DFormatAdapters.h44 size_t Left; 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()
53 Stream.indent(Left); 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()
H A DFormatCommon.h17 enum class AlignStyle { Left, Center, Right }; enumerator
50 case AlignStyle::Left: in format()
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp69 std::tuple<std::string, StringRef, uint32_t, LVOffset> Left( in sortByKind() local
73 return Left < Right; in sortByKind()
81 std::tuple<uint32_t, StringRef, std::string, LVOffset> Left( in sortByLine() local
85 return Left < Right; in sortByLine()
93 std::tuple<StringRef, uint32_t, std::string, LVOffset> Left( in sortByName() local
97 return Left < Right; in sortByName()
/openbsd/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfileGenerator.h274 int32_t Left = Right; variable
275 while (Left >= LeftBoundary && Context[Left] == Context[Left + I]) {
278 Left--;
281 bool DuplicationFound = (Left < LeftBoundary);
289 std::copy(BeginIter + Right + 1, BeginIter + Left + I + 1,
291 End += Left + I - Right;
293 Right = Left + I;
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/
H A Dmerge.t33 $req_1->add_minimum(Left => 10);
47 Left => 10,
57 $req_1->add_minimum(Left => 10);
73 Left => 10,
93 Left => 10,
106 Left => 10,
H A Dfrom-hash.t30 Left => 10,
48 Left => 10,
92 Left => 10,
/openbsd/gnu/llvm/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp123 gtestComparisonInternal(MacroType Macro, GtestCmp Cmp, StatementMatcher Left, in gtestComparisonInternal() argument
126 callee(getComparisonDecl(Cmp)), hasArgument(2, Left), in gtestComparisonInternal()
191 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left, in gtestAssert() argument
193 return gtestComparisonInternal(MacroType::Assert, Cmp, Left, Right); in gtestAssert()
196 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left, in gtestExpect() argument
198 return gtestComparisonInternal(MacroType::Expect, Cmp, Left, Right); in gtestExpect()
/openbsd/gnu/llvm/lldb/source/Utility/
H A DTildeExpressionResolver.cpp84 StringRef Left = in ResolveFullPath() local
87 if (!ResolveExact(Left, Output)) { in ResolveFullPath()
92 Output.append(Expr.begin() + Left.size(), Expr.end()); in ResolveFullPath()
/openbsd/gnu/usr.bin/perl/lib/unicore/
H A DIndicPositionalCategory.txt304 # Indic_Positional_Category=Left
308 09BF ; Left # Mc BENGALI VOWEL SIGN I
312 0B47 ; Left # Mc ORIYA VOWEL SIGN E
318 1031 ; Left # Mc MYANMAR VOWEL SIGN E
333 110B1 ; Left # Mc KAITHI VOWEL SIGN I
334 1112C ; Left # Mc CHAKMA VOWEL SIGN E
335 111B4 ; Left # Mc SHARADA VOWEL SIGN I
339 11436 ; Left # Mc NEWA VOWEL SIGN I
344 116AE ; Left # Mc TAKRI VOWEL SIGN I
345 11726 ; Left # Mc AHOM VOWEL SIGN E
[all …]
/openbsd/lib/libcurses/tinfo/
H A Dlib_win32con.c150 WINCONSOLE.SBI.srWindow.Left); in _nc_console_size()
383 WINCONSOLE.save_region.Left = 0; in save_original_screen()
392 WINCONSOLE.save_region.Left = WINCONSOLE.SBI.srWindow.Left; in save_original_screen()
434 save_region.Left,
460 WINCONSOLE.SBI.srWindow.Left : 0); in read_screen_data()
468 WINCONSOLE.save_region.Left, in read_screen_data()
507 WINCONSOLE.SBI.srWindow.Left, in _nc_console_get_SBI()
543 info->srWindow.Left, in _nc_console_set_scrollback()
572 rect.Left = in _nc_console_set_scrollback()
583 info->srWindow.Left != 0) { in _nc_console_set_scrollback()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp175 if (N->Left) in update()
596 if (N->Left) in dump()
597 dump(N->Left); in dump()
606 order(N->Left, Seq); in order()
633 N->Left = add(N->Left, R); in add()
645 N->Left = remove(N->Left, D); in remove()
654 return (N->Left == nullptr) ? N->Right : N->Left; in remove()
658 Node *M = N->Left; in remove()
661 M->Left = remove(N->Left, M); in remove()
674 Higher->Right = Lower->Left; in rotateLeft()
[all …]
H A DHexagonSplitDouble.cpp793 bool Left = !Right; in splitShift() local
799 unsigned ShiftOpc = Left ? S2_asl_i_r in splitShift()
830 if (S == 16 && Left) in splitShift()
837 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left ? LoR : TmpR)) in splitShift()
841 if (Left) { in splitShift()
865 BuildMI(B, MI, DL, TII->get(TargetOpcode::COPY), (Left ? HiR : LoR)) in splitShift()
866 .addReg(Op1.getReg(), RS & ~RegState::Kill, (Left ? LoSR : HiSR)); in splitShift()
868 BuildMI(B, MI, DL, TII->get(A2_tfrsi), (Left ? LoR : HiR)) in splitShift()
876 if (S == 16 && Left) in splitShift()
883 BuildMI(B, MI, DL, TII->get(ShiftOpc), (Left ? HiR : LoR)) in splitShift()
[all …]
/openbsd/gnu/llvm/clang/lib/Tooling/Transformer/
H A DParsing.cpp222 auto Left = ParseElement(P->State); in parsePair() local
223 if (!Left) in parsePair()
224 return Left.takeError(); in parsePair()
226 P = parseChar(',', Left->State); in parsePair()
239 Op(std::move(Left->Value), std::move(Right->Value))); in parsePair()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp82 CharUnits Left = RegionSize - TypeSize; in evenFlexibleArraySize() local
83 if (Left.isNegative()) in evenFlexibleArraySize()
86 return Left % FlexSize == 0; in evenFlexibleArraySize()
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h45 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left,
54 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left,
/openbsd/gnu/llvm/clang/tools/diagtool/
H A DDiagnosticNames.cpp48 static bool orderByID(const DiagnosticRecord &Left, in orderByID() argument
50 return Left.DiagID < Right.DiagID; in orderByID()
/openbsd/gnu/usr.bin/perl/cpan/NEXT/t/
H A Dunseen.t51 package Diamond::Left; our @ISA = qw[Diamond::Base];
55 package Diamond::Top; our @ISA = qw[Diamond::Left Diamond::Right];
/openbsd/gnu/llvm/libcxxabi/
H A D.clang-format6 PointerAlignment: Left
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1092 static int getTryAncestor(const WinEHFuncInfo &FuncInfo, int Left, int Right) { in getTryAncestor() argument
1093 int LeftRank = getTryRank(FuncInfo, Left); in getTryAncestor()
1102 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState; in getTryAncestor()
1106 while (Left != Right) { in getTryAncestor()
1107 Left = FuncInfo.ClrEHUnwindMap[Left].TryParentState; in getTryAncestor()
1111 return Left; in getTryAncestor()

123456