| /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| GtestMatchers.h | 35 StatementMatcher Right); 39 StatementMatcher Right);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| casts.cc | 44 struct Right 46 int right; member in struct:Right 49 struct LeftRight : public Left, public Right 64 int right; member in struct:VirtualRight 87 gd.right = 27; 89 unsigned long long r_value = (unsigned long long) (Right *) &gd; 93 Right *r = lr; 97 Right *r_lr = reinterpret_cast<Right *>(lr);
|
| member-ptr.cc | 123 class Right : public Base { 128 int Right::vget () 133 class Diamond : public Padding, public Left, public Right 190 diamond.Right::x = 88; 195 right_pmf = (int (Diamond::*) ()) (int (Right::*) ()) (&Base::get_x); 198 right_vpmf = &Right::vget;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| casts.cc | 44 struct Right 46 int right; member in struct:Right 49 struct LeftRight : public Left, public Right 64 int right; member in struct:VirtualRight 87 gd.right = 27; 89 unsigned long long r_value = (unsigned long long) (Right *) &gd; 93 Right *r = lr; 97 Right *r_lr = reinterpret_cast<Right *>(lr);
|
| member-ptr.cc | 123 class Right : public Base { 128 int Right::vget () 133 class Diamond : public Padding, public Left, public Right 190 diamond.Right::x = 88; 195 right_pmf = (int (Diamond::*) ()) (int (Right::*) ()) (&Base::get_x); 198 right_vpmf = &Right::vget;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| AttrIterator.h | 86 specific_attr_iterator Right) { 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; 95 specific_attr_iterator Right) { 96 return !(Left == Right);
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| TokenAnnotator.cpp | 120 // tokens to prevent splitting right bitshift operators and potentially 318 // categorize it as an unary operator, so set the right type here. 1814 // If there is an identifier (or with a few exceptions a keyword) right 1821 // Certain other tokens right before the parentheses are also signals that 1987 // declarations. Thus, having an identifier on the right-hand side 2599 const FormatToken &Right = Tok; 2605 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) 2607 if (Right.is(Keywords.kw_implements)) 2612 if (Right.is(Keywords.kw_function) && Left.isNot(tok::comma)) 2617 (Right.is(TT_TemplateString) && Right.TokenText.startswith("}")) [all...] |
| TokenAnnotator.h | 175 bool spaceRequiredBeforeParens(const FormatToken &Right) const; 178 const FormatToken &Right); 180 bool spaceRequiredBefore(const AnnotatedLine &Line, const FormatToken &Right); 182 bool mustBreakBefore(const AnnotatedLine &Line, const FormatToken &Right); 184 bool canBreakBefore(const AnnotatedLine &Line, const FormatToken &Right);
|
| /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| GtestMatchers.cpp | 90 StatementMatcher Right) { 93 hasArgument(2, Left), hasArgument(3, Right)); 97 StatementMatcher Right) { 100 hasArgument(2, Left), hasArgument(3, Right));
|
| /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)}); 68 // Iterate through the right side, either merging with the map values or 72 for (auto *Callee : Right.Callees) { 83 // Add any callees that weren't found in the right side.
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/ |
| ProfileGenerator.h | 94 // skipping the right half part of the window, otherwise just copy back 104 // right half of the window(End = 0), then slide the window. 105 // Result: [a1], a2, b1, b2 (End points to the element right before ], 108 // 2) Next window is [a1, a2]. Since a1 == a2, then skip the right half of 112 // 3) Next window is [a2, b1], copy the right half of the window(b1 is 123 // LeftBoundary Left Right Left+I Right+I 126 int32_t Right = I - 1; 129 while (Right + I < Context.size()) { 140 // 1) For the window [a, b1, c1, b2], non-common-suffix for the right [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| FormatAdapters.h | 45 size_t Right; 48 PadAdapter(T &&Item, size_t Left, size_t Right) 49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} 55 Stream.indent(Right); 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 };
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| FormatVariadic.cpp | 20 return AlignStyle::Right; 29 Where = AlignStyle::Right; 65 AlignStyle Where = AlignStyle::Right; 107 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2); 108 return std::make_pair(ReplacementItem{Middle}, Right); 130 StringRef Right = Fmt.substr(BC + 1); 134 return std::make_pair(*RI, Right);
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CodeBeadsGen.cpp | 98 unsigned Right = 8 * p; 99 unsigned Left = Right + 8; 102 for (unsigned i = Right; i != Left; ++i) {
|
| /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/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 | 49 const DiagnosticRecord &Right) { 50 return Left.DiagID < Right.DiagID;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| ilist.h | 349 void merge(iplist_impl &Right, Compare comp) { 350 if (this == &Right) 352 this->transferNodesFromList(Right, Right.begin(), Right.end()); 353 base_list_type::merge(Right, comp); 355 void merge(iplist_impl &Right) { return merge(Right, op_less); } 415 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { 416 Left.swap(Right); [all...] |
| /src/sys/external/bsd/acpica/dist/namespace/ |
| nsnames.c | 265 char c, *Left, *Right; 335 Right = FullPath+Length - 1; 337 while (Left < Right) 340 *Left++ = *Right; 341 *Right-- = c;
|
| /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 | 34 /// Right are IR "containers" of some sort which are being 37 virtual void enterContext(Value *Left, Value *Right) = 0;
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
| Parsing.cpp | 231 auto Right = ParseElement(P->State); 232 if (!Right) 233 return Right.takeError(); 235 P = parseChar(')', Right->State); 240 Op(std::move(Left->Value), std::move(Right->Value)));
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| PRBTree.h | 65 Right
|