HomeSort by: relevance | last modified time | path
    Searched refs:Left (Results 1 - 25 of 97) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
GtestMatchers.h 34 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left,
38 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left,
  /src/external/apache2/llvm/dist/clang/lib/Format/
TokenAnnotator.cpp 44 /// With `Left` being '(', check if we're at either `[...](` or
46 static bool isLambdaParameterList(const FormatToken *Left) {
48 if (Left->Previous && Left->Previous->is(tok::greater) &&
49 Left->Previous->MatchingParen &&
50 Left->Previous->MatchingParen->is(TT_TemplateOpener))
51 Left = Left->Previous->MatchingParen;
54 return Left->Previous && Left->Previous->is(tok::r_square) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
trie-node.h 49 mergeTrieNodes(const TrieNode<T> &Left, const TrieNode<T> &Right,
56 assert(Left.FuncId == Right.FuncId);
58 Left.FuncId, NewParent, {}, MergeFn(Left.ExtraData, Right.ExtraData)});
62 // Build a map of callees from the left side.
64 for (auto *Callee : Left.Callees) {
70 // merged values from the left side map.
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
casts.cc 39 struct Left
41 int left; member in struct:Left
49 struct LeftRight : public Left, public Right
57 int left; member in struct:VirtualLeft
86 gd.left = 23;
92 Left *l = lr;
96 Left *l_lr = reinterpret_cast<Left *>(lr);
member-ptr.cc 81 that we can detect if the offset for Left or the first Base is
113 class Left : public Base {
118 int Left::vget ()
133 class Diamond : public Padding, public Left, public Right
142 return this->Left::x + 2000;
189 diamond.Left::x = 77;
194 left_pmf = (int (Diamond::*) ()) (int (Left::*) ()) (&Base::get_x);
196 left_vpmf = &Left::vget;
197 left_base_vpmf = (int (Diamond::*) ()) (int (Left::*) ()) (&Base::vget_base);
201 base_vpmf = (int (Base::*) ()) (int (Left::*) ()) &Diamond::vget_base
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
casts.cc 39 struct Left
41 int left; member in struct:Left
49 struct LeftRight : public Left, public Right
57 int left; member in struct:VirtualLeft
86 gd.left = 23;
92 Left *l = lr;
96 Left *l_lr = reinterpret_cast<Left *>(lr);
member-ptr.cc 81 that we can detect if the offset for Left or the first Base is
113 class Left : public Base {
118 int Left::vget ()
133 class Diamond : public Padding, public Left, public Right
142 return this->Left::x + 2000;
189 diamond.Left::x = 77;
194 left_pmf = (int (Diamond::*) ()) (int (Left::*) ()) (&Base::get_x);
196 left_vpmf = &Left::vget;
197 left_base_vpmf = (int (Diamond::*) ()) (int (Left::*) ()) (&Base::vget_base);
201 base_vpmf = (int (Base::*) ()) (int (Left::*) ()) &Diamond::vget_base
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
AttrIterator.h 85 friend bool operator==(specific_attr_iterator Left,
87 assert((Left.Current == nullptr) == (Right.Current == nullptr));
88 if (Left.Current < Right.Current)
89 Left.AdvanceToNext(Right.Current);
91 Right.AdvanceToNext(Left.Current);
92 return Left.Current == Right.Current;
94 friend bool operator!=(specific_attr_iterator Left,
96 return !(Left == Right);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
GtestMatchers.cpp 89 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left,
93 hasArgument(2, Left), hasArgument(3, Right));
96 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left,
100 hasArgument(2, Left), hasArgument(3, Right));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
ProfileGenerator.h 123 // LeftBoundary Left Right Left+I Right+I
124 // A duplication found if Left < LeftBoundry.
147 int32_t Left = Right;
148 while (Left >= LeftBoundary && Context[Left] == Context[Left + I]) {
149 // Find the longest suffix inside the window. When stops, Left points
151 Left--;
154 bool DuplicationFound = (Left < LeftBoundary)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatAdapters.h 44 size_t Left;
48 PadAdapter(T &&Item, size_t Left, size_t Right)
49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {}
53 Stream.indent(Left);
92 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) {
93 return detail::PadAdapter<T>(std::forward<T>(Item), Left, Right);
FormatCommon.h 17 enum class AlignStyle { Left, Center, Right };
34 // way we can also skip the intermediate stream for left-aligned output.
50 case AlignStyle::Left:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
PseudoProbeInserter.cpp 124 auto IsEqual = [](const MachineInstr *Left, const MachineInstr *Right) {
125 return Left->getOperand(0).getImm() == Right->getOperand(0).getImm() &&
126 Left->getOperand(1).getImm() == Right->getOperand(1).getImm() &&
127 Left->getOperand(3).getImm() == Right->getOperand(3).getImm() &&
128 Left->getDebugLoc() == Right->getDebugLoc();
  /src/external/apache2/llvm/dist/llvm/lib/IR/
PseudoProbe.cpp 146 auto IsEqual = [](const PseudoProbeInst *Left, const PseudoProbeInst *Right) {
147 return Left->getFuncGuid() == Right->getFuncGuid() &&
148 Left->getIndex() == Right->getIndex() &&
149 Left->getAttributes() == Right->getAttributes() &&
150 Left->getDebugLoc() == Right->getDebugLoc();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 82 CharUnits Left = RegionSize - TypeSize;
83 if (Left.isNegative())
86 return Left % FlexSize == 0;
  /src/external/mit/xorg/bin/bitmap/
Makefile 11 FILES= Dashes Down Excl FlipHoriz FlipVert Fold Left Right RotateLeft \
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
DiagnosticNames.cpp 48 static bool orderByID(const DiagnosticRecord &Left,
50 return Left.DiagID < Right.DiagID;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeBeadsGen.cpp 99 unsigned Left = Right + 8;
102 for (unsigned i = Right; i != Left; ++i) {
  /src/sys/external/bsd/acpica/dist/namespace/
nsnames.c 265 char c, *Left, *Right;
334 Left = FullPath;
337 while (Left < Right)
339 c = *Left;
340 *Left++ = *Right;
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
get_window_size.c 115 *columns = 1 + sb_info.srWindow.Right - sb_info.srWindow.Left;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DiffConsumer.h 33 /// Record that a local context has been entered. Left and
37 virtual void enterContext(Value *Left, Value *Right) = 0;
  /src/external/gpl3/binutils/dist/gprofng/src/
PRBTree.cc 43 #define D_OPPOSITE(x) (((x)==Left) ? Right : Left )
182 d = Left;
352 d = Left;
385 d = (key < y->key) ? Left : Right;
436 if (rb_child (lm, Left, curts) && rb_child (lm, Right, curts))
441 x = rb_child (y, Left, curts);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
PRBTree.cc 43 #define D_OPPOSITE(x) (((x)==Left) ? Right : Left )
182 d = Left;
352 d = Left;
385 d = (key < y->key) ? Left : Right;
436 if (rb_child (lm, Left, curts) && rb_child (lm, Right, curts))
441 x = rb_child (y, Left, curts);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Parsing.cpp 223 auto Left = ParseElement(P->State);
224 if (!Left)
225 return Left.takeError();
227 P = parseChar(',', Left->State);
240 Op(std::move(Left->Value), std::move(Right->Value)));
  /src/external/bsd/am-utils/dist/amd/
conf_tok.l 132 dprintf("%8d: Left bracket \"%s\"\n", yytext);

Completed in 32 milliseconds

1 2 3 4