Home
last modified time | relevance | path

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

12345678

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DTokenAnnotator.cpp3146 const FormatToken &Right = Tok; in splitPenalty() local
3153 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty()
3155 if (Right.is(Keywords.kw_implements)) in splitPenalty()
3160 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
3165 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}"))) { in splitPenalty()
3169 if (Left.opensScope() && Right.closesScope()) in splitPenalty()
3172 if (Right.is(tok::l_square)) in splitPenalty()
3174 if (Right.is(tok::period)) in splitPenalty()
3178 if (Right.is(tok::identifier) && Right.Next && Right.Next->is(TT_DictLiteral)) in splitPenalty()
3180 if (Right.is(tok::l_square)) { in splitPenalty()
[all …]
H A DTokenAnnotator.h189 bool spaceRequiredBeforeParens(const FormatToken &Right) const;
192 const FormatToken &Right) const;
195 const FormatToken &Right) const;
198 const FormatToken &Right) const;
201 const FormatToken &Right) const;
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DIndicPositionalCategory.txt90 # 1. The following characters are all assigned the positional category Right,
130 # Indic_Positional_Category=Right
132 0903 ; Right # Mc DEVANAGARI SIGN VISARGA
133 093B ; Right # Mc DEVANAGARI VOWEL SIGN OOE
134 093E ; Right # Mc DEVANAGARI VOWEL SIGN AA
135 0940 ; Right # Mc DEVANAGARI VOWEL SIGN II
136 0949..094C ; Right # Mc [4] DEVANAGARI VOWEL SIGN CANDRA O..DEVANAGARI VOWEL SIGN AU
137 094F ; Right # Mc DEVANAGARI VOWEL SIGN AW
138 0982..0983 ; Right # Mc [2] BENGALI SIGN ANUSVARA..BENGALI SIGN VISARGA
139 09BE ; Right # Mc BENGALI VOWEL SIGN AA
[all …]
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DIntervalTree.h206 PointType Right; variable
211 IntervalData(PointType Left, PointType Right, ValueType Value) in IntervalData() argument
212 : Left(Left), Right(Right), Value(Value) { in IntervalData()
213 assert(Left <= Right && "'Left' must be less or equal to 'Right'"); in IntervalData()
217 PointType right() const { return Right; } in right()
271 IntervalNode *Right = nullptr; // RS - Right subtree. variable
311 deleteTree(Node->Right); in deleteTree()
355 printTree(OS, Level, Node->Right, HexFormat);
443 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
498 Node = Node->Right; in initNode()
[all …]
H A Dilist.h350 void merge(iplist_impl &Right, Compare comp) {
351 if (this == &Right)
353 this->transferNodesFromList(Right, Right.begin(), Right.end());
354 base_list_type::merge(Right, comp);
356 void merge(iplist_impl &Right) { return merge(Right, op_less); }
416 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
417 Left.swap(Right);
/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfileGenerator.h253 int32_t Right = I - 1; variable
256 while (Right + I < Context.size()) {
274 int32_t Left = Right;
283 LeftBoundary = Right + 1;
286 Right += I;
289 std::copy(BeginIter + Right + 1, BeginIter + Left + I + 1,
291 End += Left + I - Right;
293 Right = Left + I;
297 std::copy(BeginIter + Right + 1, Context.end(), BeginIter + End);
298 End += Context.size() - Right - 1;
/openbsd-src/gnu/llvm/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()
108 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2); in splitLiteralAndReplacement() local
109 return std::make_pair(ReplacementItem{Middle}, Right); in splitLiteralAndReplacement()
131 StringRef Right = Fmt.substr(BC + 1); in splitLiteralAndReplacement() local
135 return std::make_pair(*RI, Right); in splitLiteralAndReplacement()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/
H A Dmerge.t40 $req_2->add_minimum(Right => 18);
49 Right => 18,
65 $req_2->add_minimum(Right => 18);
84 Right => 18,
95 Right => 18,
107 Right => 18,
H A Dfrom-hash.t32 Right => 18,
50 Right => 18,
94 Right => 18,
/openbsd-src/gnu/llvm/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()
/openbsd-src/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()
72 for (auto *Callee : Right.Callees) { in mergeTrieNodes()
H A Dxray-stacks.cpp263 const StackDuration &Right) { in mergeStackDuration() argument
266 Right.TerminalDurations.size()); in mergeStackDuration()
268 Right.IntermediateDurations.size()); in mergeStackDuration()
272 for (auto duration : Right.TerminalDurations) in mergeStackDuration()
277 for (auto duration : Right.IntermediateDurations) in mergeStackDuration()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp124 StatementMatcher Right) { in gtestComparisonInternal() argument
127 hasArgument(3, Right)); in gtestComparisonInternal()
192 StatementMatcher Right) { in gtestAssert() argument
193 return gtestComparisonInternal(MacroType::Assert, Cmp, Left, Right); in gtestAssert()
197 StatementMatcher Right) { in gtestExpect() argument
198 return gtestComparisonInternal(MacroType::Expect, Cmp, Left, Right); in gtestExpect()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp131 Node *Left = nullptr, *Right = nullptr; member
174 N->Height = 1 + std::max(height(N->Left), height(N->Right)); in update()
177 if (N->Right) in update()
178 N->MaxEnd = std::max(N->MaxEnd, N->Right->MaxEnd); in update()
183 int32_t Balance = height(N->Right) - height(N->Left); in rebalance()
187 return rotateLeft(N->Right, N); in rebalance()
594 dbgs() << " Right: " << N->Right << "\n\n"; in dump()
598 if (N->Right) in dump()
599 dump(N->Right); in dump()
608 order(N->Right, Seq); in order()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h46 StatementMatcher Right);
55 StatementMatcher Right);
/openbsd-src/lib/libcurses/tinfo/
H A Dlib_win32con.c149 *Cols = (int) (WINCONSOLE.SBI.srWindow.Right + 1 - in _nc_console_size()
385 WINCONSOLE.save_region.Right = (SHORT) (WINCONSOLE.SBI.dwSize.X - 1); in save_original_screen()
394 WINCONSOLE.save_region.Right = WINCONSOLE.SBI.srWindow.Right; in save_original_screen()
436 save_region.Right));
451 WINCONSOLE.save_size.X = (SHORT) (WINCONSOLE.save_region.Right in read_screen_data()
470 WINCONSOLE.save_region.Right, in read_screen_data()
508 WINCONSOLE.SBI.srWindow.Right)); in _nc_console_get_SBI()
545 info->srWindow.Right)); in _nc_console_set_scrollback()
559 int wide = info->srWindow.Right - info->srWindow.Left + 1; in _nc_console_set_scrollback()
574 rect.Right = (SHORT) (wide - 1); in _nc_console_set_scrollback()
[all …]
/openbsd-src/gnu/llvm/clang/tools/diagtool/
H A DDiagnosticNames.cpp49 const DiagnosticRecord &Right) { in orderByID() argument
50 return Left.DiagID < Right.DiagID; in orderByID()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp365 fmt_align(StreamIdx, AlignStyle::Right, NumDigits(StreamCount)), in dumpStreamSummary()
366 fmt_align(getPdb().getStreamByteSize(StreamIdx), AlignStyle::Right, in dumpStreamSummary()
574 fmt_align(Modi, AlignStyle::Right, NumDigits(ModCount)), in dumpSymbolStats()
762 fmt_align("Record Kind", AlignStyle::Right, FieldWidth), in dumpUdtStats()
763 fmt_align(CountHeader, AlignStyle::Right, CD), in dumpUdtStats()
764 fmt_align(SizeHeader, AlignStyle::Right, SD)); in dumpUdtStats()
770 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats()
771 fmt_align(Stat.second.Count, AlignStyle::Right, CD), in dumpUdtStats()
772 fmt_align(Stat.second.Size, AlignStyle::Right, SD)); in dumpUdtStats()
776 fmt_align("Total (S_UDT)", AlignStyle::Right, FieldWidth), in dumpUdtStats()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/NEXT/t/
H A Dunseen.t53 package Diamond::Right; our @ISA = qw[Diamond::Base];
55 package Diamond::Top; our @ISA = qw[Diamond::Left Diamond::Right];
/openbsd-src/gnu/usr.bin/perl/t/mro/
H A Dpackage_aliases.t64 $Right::{"gleck::"} = 3;
66 @Right::ISA = 'TopRight';
114 @Right::Side::ISA = 'TopRight';
/openbsd-src/gnu/llvm/libcxx/benchmarks/
H A Dformatter_int.bench.cpp141 enum class AlignmentE { None, Left, Center, Right, ZeroPadding }; enumerator
166 struct Alignment<AlignmentE::Right> {
H A Dformatter_float.bench.cpp143 enum class AlignmentE { None, Left, Center, Right, ZeroPadding }; enumerator
170 struct Alignment<AlignmentE::Right> {

12345678