Searched refs:arrow (Results 1 - 21 of 21) sorted by relevance

/freebsd-13-stable/contrib/libedit/
H A Dterminal.c982 * Initialize the arrow key bindings from termcap
987 funckey_t *arrow = el->el_terminal.t_fkey; local
989 arrow[A_K_DN].name = L"down";
990 arrow[A_K_DN].key = T_kd;
991 arrow[A_K_DN].fun.cmd = ED_NEXT_HISTORY;
992 arrow[A_K_DN].type = XK_CMD;
994 arrow[A_K_UP].name = L"up";
995 arrow[A_K_UP].key = T_ku;
996 arrow[A_K_UP].fun.cmd = ED_PREV_HISTORY;
997 arrow[A_K_U
1032 funckey_t *arrow = el->el_terminal.t_fkey; local
1083 funckey_t *arrow = el->el_terminal.t_fkey; local
1102 funckey_t *arrow = el->el_terminal.t_fkey; local
1121 funckey_t *arrow = el->el_terminal.t_fkey; local
1141 funckey_t *arrow = el->el_terminal.t_fkey; local
[all...]
/freebsd-13-stable/contrib/tcsh/
H A Ded.screen.c720 } arrow[] = { variable in typeref:struct:__anon6248
739 arrow[A_K_DN].fun.cmd = F_DOWN_HIST;
740 arrow[A_K_DN].type = XK_CMD;
742 arrow[A_K_UP].fun.cmd = F_UP_HIST;
743 arrow[A_K_UP].type = XK_CMD;
745 arrow[A_K_LT].fun.cmd = F_CHARBACK;
746 arrow[A_K_LT].type = XK_CMD;
748 arrow[A_K_RT].fun.cmd = F_CHARFWD;
749 arrow[A_K_RT].type = XK_CMD;
751 arrow[A_K_H
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp86 TokenInfo[tok::arrow ] |= aci_custom_firstchar;
292 case tok::arrow: // ->*
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp98 case tok::arrow:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp649 // An arrow after an ObjC method expression is not a lambda arrow.
1025 tok::star, tok::arrow, tok::amp, tok::ampamp))
1497 Current.startsSequence(tok::arrow, tok::identifier, tok::less)) {
1599 } else if (Current.is(tok::arrow) &&
1602 } else if (Current.is(tok::arrow) && AutoFound && Line.MustBeDeclaration &&
1609 // Deduction guides trailing arrow " A(...) -> A<T>;".
1655 tok::comma, tok::period, tok::arrow,
1826 tok::kw_throw, tok::arrow, Keywords.kw_override,
1906 NextToken->isOneOf(tok::arrow, to
[all...]
H A DFormatToken.h422 return isOneOf(tok::arrow, tok::period, tok::arrowstar) &&
H A DUnwrappedLineParser.cpp914 Tok.isNot(tok::arrow) && Tok.isNot(tok::arrowstar) &&
1637 // In a C++ lambda a template type can only occur after an arrow. We use
1670 case tok::arrow:
1671 // This might or might not actually be a lambda arrow (this could be an
1672 // ObjC method invocation followed by a dereferencing arrow). We might
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp511 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
1030 OpLoc, tok::arrow, ObjectType,
1035 ExtraArgs->S, RetryExpr.get(), OpLoc, tok::arrow, TempSS,
1275 // For later type-checking purposes, turn arrow accesses into dot
1286 // Recover from arrow accesses to records, e.g.:
1693 /// \param OpKind either tok::arrow or tok::period
1722 bool IsArrow = (OpKind == tok::arrow);
H A DSemaPseudoObject.cpp1477 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
1506 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
H A DSemaExprCXX.cpp7107 if (OpKind == tok::arrow)
7119 if (OpKind == tok::arrow) {
7180 if (OpKind == tok::arrow) {
7240 // left-hand side of the arrow operator shall be of pointer to scalar type.
7243 // arrow operator.
7244 if (OpKind == tok::arrow) {
7332 OpKind = tok::arrow;
7389 OpKind == tok::arrow, OpLoc,
H A DTreeTransform.h11601 E->isArrow()? tok::arrow : tok::period,
12754 E->isArrow()? tok::arrow : tok::period,
14318 Base, OperatorLoc, isArrow ? tok::arrow : tok::period, SS, ScopeType,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h564 SourceLocation oploc, Expr *base, bool arrow = false,
568 D(d), Base(base), Loc(l), OpLoc(oploc), IsArrow(arrow),
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp711 if (!NextToken.isOneOf(tok::equal, tok::arrow, tok::period))
1804 case tok::arrow:
2090 case tok::arrow:
2138 OpKind == tok::arrow ? tok::period : tok::arrow;
2156 getCurScope(), Base, CorrectedBase, OpLoc, OpKind == tok::arrow, member in class:tok
H A DParseExprCXX.cpp1368 if (Tok.is(tok::arrow)) {
1399 } else if (Tok.isOneOf(tok::kw_mutable, tok::arrow, tok::kw___attribute,
1410 case tok::arrow: TokKind = 1; break;
1444 if (Tok.is(tok::arrow)) {
3441 if (!TryConsumeToken(tok::arrow))
3442 // User probably forgot the arrow, remind them and try to continue.
H A DParseDeclCXX.cpp3821 assert(Tok.is(tok::arrow) && "expected arrow");
3860 SkipUntil({tok::l_brace, tok::arrow, tok::kw_try, tok::comma, tok::colon},
3866 if (D.isFunctionDeclarator() && Tok.is(tok::arrow) &&
3881 SkipUntil({tok::equal, tok::l_brace, tok::arrow, tok::kw_try, tok::comma},
H A DParseTentative.cpp1854 tok::l_brace, tok::kw_try, tok::equal, tok::arrow) ||
H A DParseDecl.cpp5295 IsConstructor = Tok.is(tok::arrow);
6018 if (Tok.isOneOf(tok::period, tok::arrow))
6019 Diag(Tok, diag::err_invalid_operator_on_type) << Tok.is(tok::arrow);
6466 if (getLangOpts().CPlusPlus11 && Tok.is(tok::arrow)) {
H A DParseStmt.cpp126 nextTok.isOneOf(tok::l_paren, tok::identifier, tok::arrow, tok::period);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1237 assert(Arrow->kind() == tok::arrow);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1786 K == tok::period || K == tok::arrow ||
/freebsd-13-stable/contrib/ncurses/
H A Dconfigure11420 0x2190 arrow pointing left
11421 0x2192 arrow pointing right
11422 0x2193 arrow pointing down
11423 0x2191 arrow pointing up

Completed in 555 milliseconds