| /src/lib/libedit/ |
| terminal.c | 981 * Initialize the arrow key bindings from termcap 986 funckey_t *arrow = el->el_terminal.t_fkey; local 988 arrow[A_K_DN].name = L"down"; 989 arrow[A_K_DN].key = T_kd; 990 arrow[A_K_DN].fun.cmd = ED_NEXT_HISTORY; 991 arrow[A_K_DN].type = XK_CMD; 993 arrow[A_K_UP].name = L"up"; 994 arrow[A_K_UP].key = T_ku; 995 arrow[A_K_UP].fun.cmd = ED_PREV_HISTORY; 996 arrow[A_K_UP].type = XK_CMD 1031 funckey_t *arrow = el->el_terminal.t_fkey; local 1082 funckey_t *arrow = el->el_terminal.t_fkey; local 1101 funckey_t *arrow = el->el_terminal.t_fkey; local 1120 funckey_t *arrow = el->el_terminal.t_fkey; local 1140 funckey_t *arrow = el->el_terminal.t_fkey; local [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/ |
| litlint.py | 54 arrow = (col-1) * ' ' + '^' 55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
|
| /src/external/gpl3/gcc/dist/contrib/header-tools/ |
| show-headers | 59 arrow = " <<-------" 63 arrow = "" 66 output.append (padding[:indent*tabstop] + bname + arrow) 74 output.append (padding[:indent*tabstop] + bname + " ("+str(seen[inc])+")" + arrow)
|
| /src/external/gpl3/gcc.old/dist/contrib/header-tools/ |
| show-headers | 59 arrow = " <<-------" 63 arrow = "" 66 output.append (padding[:indent*tabstop] + bname + arrow) 74 output.append (padding[:indent*tabstop] + bname + " ("+str(seen[inc])+")" + arrow)
|
| /src/external/mit/libcbor/dist/docs/doxygen/ |
| dynsections.js | 64 // replace down arrow by right arrow for current row 67 currentRowSpans.filter(".arrow").html('►'); 70 // replace right arrow by down arrow for current row 73 currentRowSpans.filter(".arrow").html('▼'); 77 childRowsSpans.filter(".arrow").html('►');
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/ |
| cpls-ops.exp | 546 # Test completing an arrow operator. 548 proc_with_prefix arrow-operator {} { 572 arrow-operator
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/ |
| cpls-ops.exp | 550 # Test completing an arrow operator. 552 proc_with_prefix arrow-operator {} { 576 arrow-operator
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| tokens.h | 254 arrow, // -> member in class:TOK 434 arrow, // -> member in class:EXP
|
| tokens.d | 245 arrow, // -> 424 arrow, // -> 826 TOK.arrow: "->",
|
| cparse.d | 197 case TOK.arrow: 831 case TOK.arrow: 837 die.arrow = true;
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| TokenConcatenation.cpp | 86 TokenInfo[tok::arrow ] |= aci_custom_firstchar; 292 case tok::arrow: // ->*
|
| /src/external/bsd/ipf/dist/perl/ |
| plog | 654 my $arrow = ($dir eq 's' ? '->' : '<-'); 709 printf (" %-6s %7s %4d %4s %16s %2s %s.%s", $if, $act, $count, $protoName, &portName ($sport, $protoName), $arrow, $peerName, &portName ($dport, $protoName)); 713 printf (" %-6s %7s %4d %4s %16s %2s %s", $if, $act, $count, $protoName, &icmpType ($sport), $arrow, $peerName); 717 printf (" %-6s %7s %4d %4s %16s %2s %s", $if, $act, $count, $protoName, '', $arrow, $peerName);
|
| /src/usr.sbin/npf/npfctl/ |
| npf_show.c | 701 const char *ifname, *algo, *seg1, *seg2, *arrow; local 745 arrow = "<-"; 749 arrow = "->"; 781 seg1, arrow, seg2);
|
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_dp_helper.c | 205 const char *arrow = request == DP_AUX_NATIVE_READ ? "->" : "<-"; local 209 aux->name, offset, arrow, ret, min(ret, 20), buffer); 212 aux->name, offset, arrow, ret);
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| TokenAnnotator.cpp | 672 // An arrow after an ObjC method expression is not a lambda arrow. 1049 tok::star, tok::arrow, tok::amp, tok::ampamp)) 1516 Current.startsSequence(tok::arrow, tok::identifier, tok::less)) { 1608 } else if (Current.is(tok::arrow) && 1611 } else if (Current.is(tok::arrow) && AutoFound && Line.MustBeDeclaration && 1616 } else if (Current.is(tok::arrow) && Current.Previous && 1622 // Deduction guides trailing arrow " A(...) -> A<T>;". 1668 tok::comma, tok::period, tok::arrow, 1838 tok::kw_requires, tok::kw_throw, tok::arrow, [all...] |
| UnwrappedLineParser.cpp | 641 if (FormatTok->is(tok::arrow)) { 642 // Following the } we can find a trailing return type arrow 934 Tok.isNot(tok::arrow) && Tok.isNot(tok::arrowstar) && 1662 // In a C++ lambda a template type can only occur after an arrow. We use 1695 case tok::arrow: 1696 // This might or might not actually be a lambda arrow (this could be an 1697 // ObjC method invocation followed by a dereferencing arrow). We might
|
| FormatToken.h | 546 return isOneOf(tok::arrow, tok::period, tok::arrowstar) &&
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaExprMember.cpp | 508 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr 1005 OpLoc, tok::arrow, ObjectType, 1010 ExtraArgs->S, RetryExpr.get(), OpLoc, tok::arrow, TempSS, 1260 // For later type-checking purposes, turn arrow accesses into dot 1271 // Recover from arrow accesses to records, e.g.: 1678 /// \param OpKind either tok::arrow or tok::period 1707 bool IsArrow = (OpKind == tok::arrow);
|
| SemaPseudoObject.cpp | 1477 RefExpr->isArrow() ? tok::arrow : tok::period, SS, 1506 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
|
| SemaExprCXX.cpp | 7214 if (OpKind == tok::arrow) 7226 if (OpKind == tok::arrow) { 7287 if (OpKind == tok::arrow) { 7347 // left-hand side of the arrow operator shall be of pointer to scalar type. 7350 // arrow operator. 7351 if (OpKind == tok::arrow) { 7451 OpKind = tok::arrow; 7508 OpKind == tok::arrow, OpLoc,
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ExprObjC.h | 564 SourceLocation oploc, Expr *base, bool arrow = false, 568 D(d), Base(base), Loc(l), OpLoc(oploc), IsArrow(arrow),
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/ |
| README.md | 151 The fast_float library is used by [Apache Arrow](https://github.com/apache/arrow/pull/8494) where it multiplied the number parsing speed by two or three times. It is also used by [Yandex ClickHouse](https://github.com/ClickHouse/ClickHouse) and by [Google Jsonnet](https://github.com/google/jsonnet).
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/ |
| README.md | 128 The fast_float library is used by [Apache Arrow](https://github.com/apache/arrow/pull/8494) where it multiplied the number parsing speed by two or three times. It is also used by [Yandex ClickHouse](https://github.com/ClickHouse/ClickHouse) and by [Google Jsonnet](https://github.com/google/jsonnet).
|
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseExpr.cpp | 711 if (!NextToken.isOneOf(tok::equal, tok::arrow, tok::period)) 1790 case tok::arrow: 2078 case tok::arrow: 2126 OpKind == tok::arrow ? tok::period : tok::arrow; 2145 getCurScope(), Base, CorrectedBase, OpLoc, OpKind == tok::arrow, member in class:tok
|
| ParseDeclCXX.cpp | 3863 assert(Tok.is(tok::arrow) && "expected arrow"); 3902 SkipUntil({tok::l_brace, tok::arrow, tok::kw_try, tok::comma, tok::colon}, 3908 if (D.isFunctionDeclarator() && Tok.is(tok::arrow) && 3924 SkipUntil({tok::equal, tok::l_brace, tok::arrow, tok::kw_try, tok::comma},
|