Home
last modified time | relevance | path

Searched refs:Hist (Results 1 – 7 of 7) sorted by relevance

/NextBSD/contrib/tcsh/
HDsh.hist.c45 static void hfree (struct Hist *);
71 static struct Hist *histTail = NULL; /* last element on history list */
72 static struct Hist *histMerg = NULL; /* last element merged by Htime */
74 static void insertHistHashTable(struct Hist *, unsigned);
79 hinsert(struct Hist *hp, struct Hist *pp) in hinsert()
81 struct Hist *fp = pp->Hnext; /* following element, if any */ in hinsert()
93 hremove(struct Hist *hp) in hremove()
95 struct Hist *pp = hp->Hprev; in hremove()
112 struct Hist *hp, *np; in discardExcess()
621 renumberHist(struct Hist *p) in renumberHist()
[all …]
HDsh.lex.c58 static struct Hist *findev (Char *, int);
890 struct Hist *hst; in dosub()
1150 struct Hist *hp; in gethent()
1273 static struct Hist *
1276 struct Hist *hp; in findev()
HDed.chared.c468 struct Hist *h = Histlist.Hnext; in c_expand()
958 struct Hist *hp; in GetHistLine()
1701 struct Hist *hp; in e_toggle_hist()
1841 struct Hist *hp; in e_up_search_hist()
1916 struct Hist *hp; in e_down_search_hist()
2106 struct Hist *hp; in e_last_item()
2147 struct Hist *hp; in e_dabbrev_expand()
HDsh.h1058 EXTERN struct Hist { struct
1064 struct Hist *Hnext, *Hprev; /* doubly linked list */ argument
HDsh.decls.h218 extern struct Hist *enthist (int, struct wordent *, int, int, int);
/NextBSD/contrib/llvm/lib/LineEditor/
HDLineEditor.cpp100 History *Hist; member
203 Data->Hist = ::history_init(); in LineEditor()
204 assert(Data->Hist); in LineEditor()
211 ::el_set(Data->EL, EL_HIST, history, Data->Hist); in LineEditor()
224 ::history(Data->Hist, &HE, H_SETSIZE, 800); in LineEditor()
225 ::history(Data->Hist, &HE, H_SETUNIQUE, 1); in LineEditor()
232 ::history_end(Data->Hist); in ~LineEditor()
240 ::history(Data->Hist, &HE, H_SAVE, HistoryPath.c_str()); in saveHistory()
247 ::history(Data->Hist, &HE, H_LOAD, HistoryPath.c_str()); in loadHistory()
267 ::history(Data->Hist, &HE, H_ENTER, Line); in readLine()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDecl.cpp7112 if (const FieldDecl *Hist = HistoryStack.pop_back_val()) in checkIsValidOpenCLKernelParameter() local
7113 ValidTypes.insert(Hist->getType().getTypePtr()); in checkIsValidOpenCLKernelParameter()