Home
last modified time | relevance | path

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

1234567

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp4145 const FormatToken &Right = Tok; in splitPenalty() local
4152 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty()
4154 if (Right.is(Keywords.kw_implements)) in splitPenalty()
4159 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) in splitPenalty()
4164 (Right.is(TT_TemplateString) && Right.TokenText.starts_with("}"))) { in splitPenalty()
4168 if (Left.opensScope() && Right.closesScope()) in splitPenalty()
4171 if (Right.is(tok::l_square)) in splitPenalty()
4173 if (Right.is(tok::period)) in splitPenalty()
4177 if (Right.is(tok::identifier) && Right.Next && Right.Next->is(TT_DictLiteral)) in splitPenalty()
4179 if (Right.is(tok::l_square)) { in splitPenalty()
[all …]
H A DTokenAnnotator.h234 bool spaceRequiredBeforeParens(const FormatToken &Right) const;
237 const FormatToken &Right) const;
240 const FormatToken &Right) const;
243 const FormatToken &Right) const;
246 const FormatToken &Right) const;
/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h205 PointType Right; variable
210 IntervalData(PointType Left, PointType Right, ValueType Value) in IntervalData() argument
211 : Left(Left), Right(Right), Value(Value) { in IntervalData()
212 assert(Left <= Right && "'Left' must be less or equal to 'Right'"); in IntervalData()
216 PointType right() const { return Right; } in right()
270 IntervalNode *Right = nullptr; // RS - Right subtree. variable
310 deleteTree(Node->Right); in deleteTree()
354 printTree(OS, Level, Node->Right, HexFormat);
442 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
497 Node = Node->Right; in initNode()
[all …]
H A Dilist.h286 void merge(iplist_impl &Right, Compare comp) {
287 if (this == &Right)
289 this->transferNodesFromList(Right, Right.begin(), Right.end());
290 base_list_type::merge(Right, comp);
292 void merge(iplist_impl &Right) { return merge(Right, op_less); }
352 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
353 Left.swap(Right);
/freebsd/contrib/llvm-project/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()
107 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2); in splitLiteralAndReplacement() local
108 return std::make_pair(ReplacementItem{Middle}, Right); in splitLiteralAndReplacement()
130 StringRef Right = Fmt.substr(BC + 1); in splitLiteralAndReplacement() local
134 return std::make_pair(*RI, Right); in splitLiteralAndReplacement()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h47 size_t Right; variable
50 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument
51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
57 Stream.indent(Right); in format()
96 support::detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() argument
97 return support::detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dwm8731.txt22 * ROUT: Right Channel Line Output
24 * RHPOUT: Right Channel Headphone Output
26 * RLINEIN: Right Channel Line Input
H A Damlogic,axg-sound-card.txt65 "Speaker", "Speaker1 Right";
67 "Speaker", "Speaker2 Right";
78 "Speaker1 Right", "SPK1 OUT_B",
79 "Speaker2 Right", "SPK2 OUT_B",
/freebsd/contrib/libucl/haskell/
H A Dhucl.hs74 else Right <$> peekCString ( ucl_parser_get_error p)
83 else Right <$> peekCString ( ucl_parser_get_error p)
87 (Right err) -> Right err
89 Nothing -> Right "MessagePack fromObject Error"
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
436 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
438 while (Left < Right) in AcpiNsBuildNormalizedPath()
441 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
442 *Right-- = c; in AcpiNsBuildNormalizedPath()
/freebsd/contrib/llvm-project/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 …]
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun4i-a10-inet9f-rev03.dts75 label = "Left Joystick Right";
99 label = "Right Joystick Left";
107 label = "Right Joystick Right";
115 label = "Right Joystick Up";
123 label = "Right Joystick Down";
139 label = "DPad Right";
205 label = "Top Right Button";
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8195-cherry-dojo-r1.dts26 sound-name-prefix = "Right";
106 "Right Spk", "Right BE_OUT",
/freebsd/contrib/ncurses/ncurses/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 …]
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c217 save_region.Right = CON.SBI.srWindow.Right;
219 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
234 for (j = save_region.Left; j <= save_region.Right; ++j) {
245 save_region.Right));
304 rec.Right = (SHORT) (x + limit - 1); in con_write16()
343 rec.Right = (short) (x + n - 1); in con_write8()
464 save_region.Right)); in restore_original_screen()
682 int wide = (CON.SBI.srWindow.Right - CON.SBI.srWindow.Left + 1); in wcon_dobeepflash()
697 this_region.Right = CON.SBI.srWindow.Right; in wcon_dobeepflash()
778 CON.SBI.srWindow.Right)); in get_SBI()
[all …]
H A Dwin32_driver.c125 save_region.Right = WINCONSOLE.SBI.srWindow.Right;
127 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
142 for (j = save_region.Left; j <= save_region.Right; ++j) {
153 save_region.Right));
213 rec.Right = (SHORT) (x + limit - 1); in con_write16()
252 rec.Right = (short) (x + n - 1); in con_write8()
369 save_region.Right)); in restore_original_screen()
587 int wide = (WINCONSOLE.SBI.srWindow.Right - in wcon_dobeepflash()
603 this_region.Right = WINCONSOLE.SBI.srWindow.Right; in wcon_dobeepflash()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h46 StatementMatcher Right);
55 StatementMatcher Right);
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp366 fmt_align(StreamIdx, AlignStyle::Right, NumDigits(StreamCount)), in dumpStreamSummary()
367 fmt_align(getPdb().getStreamByteSize(StreamIdx), AlignStyle::Right, in dumpStreamSummary()
575 fmt_align(Modi, AlignStyle::Right, NumDigits(ModCount)), in dumpSymbolStats()
763 fmt_align("Record Kind", AlignStyle::Right, FieldWidth), in dumpUdtStats()
764 fmt_align(CountHeader, AlignStyle::Right, CD), in dumpUdtStats()
765 fmt_align(SizeHeader, AlignStyle::Right, SD)); in dumpUdtStats()
771 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats()
772 fmt_align(Stat.second.Count, AlignStyle::Right, CD), in dumpUdtStats()
773 fmt_align(Stat.second.Size, AlignStyle::Right, SD)); in dumpUdtStats()
777 fmt_align("Total (S_UDT)", AlignStyle::Right, FieldWidth), in dumpUdtStats()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-olinuxino.dts347 "Microphone", "Microphone Jack Right",
350 "Right DAC", "DACR",
353 "ADCR", "Right ADC",
356 "Microphone Jack Right", "MBIAS",
357 "MIC2", "Microphone Jack Right";
H A Dsun50i-a64-pinebook.dts371 "Microphone", "Internal Microphone Right",
376 "Right DAC", "DACR",
383 "ADCR", "Right ADC",
386 "Internal Microphone Right", "HBIAS",
387 "MIC2", "Internal Microphone Right";
H A Dsun50i-a64-pinetab.dts444 "Microphone", "Internal Microphone Right",
449 "Right DAC", "DACR",
456 "ADCR", "Right ADC",
459 "Internal Microphone Right", "HBIAS",
460 "MIC2", "Internal Microphone Right";

1234567