Home
last modified time | relevance | path

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

1234567

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp65 static bool isLambdaParameterList(const FormatToken *Left) { in isLambdaParameterList() argument
67 if (Left->Previous && Left->Previous->is(tok::greater) && in isLambdaParameterList()
68 Left->Previous->MatchingParen && in isLambdaParameterList()
69 Left->Previous->MatchingParen->is(TT_TemplateOpener)) { in isLambdaParameterList()
70 Left = Left->Previous->MatchingParen; in isLambdaParameterList()
74 return Left->Previous && Left->Previous->is(tok::r_square) && in isLambdaParameterList()
75 Left->Previous->MatchingParen && in isLambdaParameterList()
76 Left->Previous->MatchingParen->is(TT_LambdaLSquare); in isLambdaParameterList()
175 FormatToken *Left = CurrentToken->Previous; in parseAngle() local
176 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle()
[all …]
/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h204 PointType Left;
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()
215 PointType left() const { return Left; } in left()
269 IntervalNode *Left = nullptr; // LS - Left subtree. variable
309 deleteTree(Node->Left); in deleteTree()
353 printTree(OS, Level, Node->Left, HexFormat);
437 Root->Left = createTree(IntervalsSize, PointsBeginIndex, MiddleIndex - 1, in createTree()
491 Node = Node->Left; in initNode()
[all …]
/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()
64 for (auto *Callee : Left.Callees) { in mergeTrieNodes()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h46 size_t Left; 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()
55 Stream.indent(Left); 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()
H A DFormatCommon.h17 enum class AlignStyle { Left, Center, Right }; enumerator
50 case AlignStyle::Left: in format()
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dwm8731.txt21 * LOUT: Left Channel Line Output
23 * LHPOUT: Left Channel Headphone Output
25 * LLINEIN: Left Channel Line Input
H A Damlogic,axg-sound-card.txt64 "Speaker", "Speaker1 Left",
66 "Speaker", "Speaker2 Left",
76 "Speaker1 Left", "SPK1 OUT_A",
77 "Speaker2 Left", "SPK2 OUT_A",
H A Dcs35l32.txt29 0 = Left/right channels VMON[11:0], IMON[11:0], VPMON[7:0].
30 1 = Left/right channels VMON[11:0], IMON[11:0], STATUS.
32 3 = Left/right channels VPMON[7:0], STATUS.
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c373 char c, *Left, *Right; in AcpiNsBuildNormalizedPath() local
435 Left = FullPath; in AcpiNsBuildNormalizedPath()
438 while (Left < Right) in AcpiNsBuildNormalizedPath()
440 c = *Left; in AcpiNsBuildNormalizedPath()
441 *Left++ = *Right; in AcpiNsBuildNormalizedPath()
/freebsd/contrib/ncurses/ncurses/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()
419 WINCONSOLE.SBI.srWindow.Left : 0);
434 save_region.Left,
452 - WINCONSOLE.save_region.Left + 1); in read_screen_data()
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()
513 WINCONSOLE.origin.X = WINCONSOLE.SBI.srWindow.Left; in _nc_console_get_SBI()
[all …]
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c215 save_region.Left = CON.SBI.srWindow.Left;
219 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
234 for (j = save_region.Left; j <= save_region.Right; ++j) {
243 save_region.Left,
302 rec.Left = (SHORT) x; in con_write16()
341 rec.Left = (short) x; in con_write8()
448 bufferCoord.X = (SHORT) (CON.window_only ? CON.SBI.srWindow.Left : 0); in restore_original_screen()
462 save_region.Left, in restore_original_screen()
682 int wide = (CON.SBI.srWindow.Right - CON.SBI.srWindow.Left + 1); in wcon_dobeepflash()
695 this_region.Left = CON.SBI.srWindow.Left; in wcon_dobeepflash()
[all …]
H A Dwin32_driver.c123 save_region.Left = WINCONSOLE.SBI.srWindow.Left;
127 save_size.X = (SHORT) (save_region.Right - save_region.Left + 1);
142 for (j = save_region.Left; j <= save_region.Right; ++j) {
151 save_region.Left,
211 rec.Left = (SHORT) x; in con_write16()
250 rec.Left = (short) x; in con_write8()
352 WINCONSOLE.SBI.srWindow.Left : 0); in restore_original_screen()
367 save_region.Left, in restore_original_screen()
588 WINCONSOLE.SBI.srWindow.Left + 1); in wcon_dobeepflash()
601 this_region.Left = WINCONSOLE.SBI.srWindow.Left; in wcon_dobeepflash()
[all …]
/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()
175 if (N->Left) in update()
176 N->MaxEnd = std::max(N->MaxEnd, N->Left->MaxEnd); in update()
183 int32_t Balance = height(N->Right) - height(N->Left); in rebalance()
185 return rotateRight(N->Left, N); in rebalance()
593 dbgs() << " Left: " << N->Left << '\n'; in dump()
596 if (N->Left) in dump()
597 dump(N->Left); in dump()
606 order(N->Left, Seq); in order()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun4i-a10-inet9f-rev03.dts67 label = "Left Joystick Left";
75 label = "Left Joystick Right";
83 label = "Left Joystick Up";
91 label = "Left Joystick Down";
99 label = "Right Joystick Left";
131 label = "DPad Left";
199 label = "Top Left Button";
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/libucl/haskell/
H A Dhucl.hs73 then return $ Left $ ucl_parser_get_object p
82 then return $ Left $ ucl_parser_get_object p
88 (Left obj) -> case MSG.fromObject (ucl_to_msgpack_object obj) of
90 (Just a) -> Left a
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8195-cherry-dojo-r1.dts33 sound-name-prefix = "Left";
107 "Left Spk", "Left BE_OUT";
/freebsd/contrib/llvm-project/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,
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-olinuxino.dts346 simple-audio-card,widgets = "Microphone", "Microphone Jack Left",
349 simple-audio-card,routing = "Left DAC", "DACL",
352 "ADCL", "Left ADC",
354 "Microphone Jack Left", "MBIAS",
355 "MIC1", "Microphone Jack Left",
H A Dsun50i-a64-pinebook.dts370 simple-audio-card,widgets = "Microphone", "Internal Microphone Left",
375 "Left DAC", "DACL",
382 "ADCL", "Left ADC",
384 "Internal Microphone Left", "MBIAS",
385 "MIC1", "Internal Microphone Left",
/freebsd/contrib/less/
H A Dscreen.c819 sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; in scrsize()
1547 cpos.X = csbi.srWindow.Left + (col - 1); in initcolor()
1640 size.X = scr.srWindow.Right - scr.srWindow.Left + 1; in win32_deinit_term()
1917 rcClip.Left = csbi.srWindow.Left; in add_line()
1927 new_org.X = rcSrc.Left; in add_line()
1969 rcSrc.Left = csbi.srWindow.Left;
1975 rcClip.Left = rcSrc.Left;
[all...]

1234567