| /openbsd-src/gnu/llvm/clang/lib/Format/ |
| H A D | TokenAnnotator.cpp | 3146 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 D | TokenAnnotator.h | 189 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 D | IndicPositionalCategory.txt | 90 # 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 D | AttrIterator.h | 85 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 D | IntervalTree.h | 206 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 D | ilist.h | 350 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 D | ProfileGenerator.h | 253 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 D | FormatVariadic.cpp | 21 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 D | FormatAdapters.h | 45 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 D | merge.t | 40 $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 D | from-hash.t | 32 Right => 18, 50 Right => 18, 94 Right => 18,
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVSort.cpp | 71 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 D | trie-node.h | 49 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 D | xray-stacks.cpp | 263 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 D | GtestMatchers.cpp | 124 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 D | HexagonConstExtenders.cpp | 131 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 D | Parsing.cpp | 230 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 D | GtestMatchers.h | 46 StatementMatcher Right); 55 StatementMatcher Right);
|
| /openbsd-src/lib/libcurses/tinfo/ |
| H A D | lib_win32con.c | 149 *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 D | DiagnosticNames.cpp | 49 const DiagnosticRecord &Right) { in orderByID() argument 50 return Left.DiagID < Right.DiagID; in orderByID()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.cpp | 365 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 D | unseen.t | 53 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 D | package_aliases.t | 64 $Right::{"gleck::"} = 3; 66 @Right::ISA = 'TopRight'; 114 @Right::Side::ISA = 'TopRight';
|
| /openbsd-src/gnu/llvm/libcxx/benchmarks/ |
| H A D | formatter_int.bench.cpp | 141 enum class AlignmentE { None, Left, Center, Right, ZeroPadding }; enumerator 166 struct Alignment<AlignmentE::Right> {
|
| H A D | formatter_float.bench.cpp | 143 enum class AlignmentE { None, Left, Center, Right, ZeroPadding }; enumerator 170 struct Alignment<AlignmentE::Right> {
|