Searched refs:history (Results 1 - 25 of 187) sorted by relevance

12345678

/macosx-10.10/emacs-93/emacs/lisp/
H A Dchistory.el1 ;;; chistory.el --- list command history
29 ;; This really has nothing to do with list-command-history per se, but
37 "List command history."
45 command history is offered. The form is placed in the minibuffer for
52 (let ((history command-history)
55 (while (and history (not what))
56 (setq temp (car history))
59 (setq what (car history))
60 (setq history (cd
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DPopStateEvent.cpp56 PopStateEvent::PopStateEvent(PassRefPtr<SerializedScriptValue> serializedState, PassRefPtr<History> history) argument
59 , m_history(history)
72 PassRefPtr<PopStateEvent> PopStateEvent::create(PassRefPtr<SerializedScriptValue> serializedState, PassRefPtr<History> history) argument
74 return adoptRef(new PopStateEvent(serializedState, history));
H A DPopStateEvent.h53 History* history() const { return m_history.get(); } function in class:WebCore::PopStateEvent
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSPopStateEventCustom.cpp59 History* history = event.history();
60 if (!history || !event.serializedState())
64 // event, but there is a history object, so first we need to see if the state object has been
65 // deserialized through the history object already.
66 // The current history state object might've changed in the meantime, so we need to take care
67 // of using the correct one, and always share the same deserialization with history.state.
69 bool isSameState = history->isSameAsCurrentState(event.serializedState().get());
73 JSHistory* jsHistory = jsCast<JSHistory*>(toJS(exec, globalObject(), history).asCell());
H A DJSHistoryCustom.cpp106 // Only allow the history object to enumerated by frames in the same origin.
114 History& history = impl(); local
117 if (!cachedValue.isEmpty() && !history.stateChanged())
120 RefPtr<SerializedScriptValue> serialized = history.state();
/macosx-10.10/postfix-255/postfix/src/smtpd/
H A Dsmtpd_chat.c101 if (state->history) {
102 argv_free(state->history);
103 state->history = 0;
117 if (state->history == 0)
118 state->history = argv_alloc(10);
120 argv_add(state->history, line, (char *) 0);
248 if (state->history == 0)
249 msg_panic("%s: no conversation history", myname);
281 argv_terminate(state->history);
282 for (cpp = state->history
[all...]
/macosx-10.10/misc_cmds-33/calendar/calendars/
H A Dcalendar.world13 #include <calendar.history>
/macosx-10.10/bc-21/bc/bc/
H A Dbcdefs.h53 #include <readline/history.h>
181 #define HISTORY_SIZE(n) history(hist, &histev, H_SETSIZE, n)
182 #define UNLIMIT_HISTORY history(hist, &histev, H_SETSIZE, INT_MAX)
/macosx-10.10/Heimdal-398.1.2/lib/libedit/examples/
H A Dtc1.c146 hist = history_init(); /* Init the builtin history */
148 history(hist, &ev, H_SETSIZE, 100);
159 /* Tell editline to use this history interface */
160 el_set(el, EL_HIST, history, hist);
170 * of previous and next history.
220 * moved around in history.
222 if (history(hist, &ev, H_SET, lastevent) == -1)
224 history(hist, &ev, H_ADD , buf);
226 history(hist, &ev, H_ENTER, buf);
231 history(his
[all...]
/macosx-10.10/postfix-255/postfix/src/smtp/
H A Dsmtp_chat.c152 session->history = 0;
159 if (session->history) {
160 argv_free(session->history);
161 session->history = 0;
172 if (session->history == 0)
173 session->history = argv_alloc(10);
175 argv_add(session->history, line, (char *) 0);
442 if (session->history == 0)
443 msg_panic("%s: no conversation history", myname);
479 argv_terminate(session->history);
[all...]
/macosx-10.10/ncurses-44/ncurses/test/
H A Dknight.c74 static cell history[BDEPTH * BWIDTH + 1]; /* choice history */ variable
314 oldy = history[movecount - 1].y;
315 oldx = history[movecount - 1].x;
417 int rdif = iabs(row - history[movecount - 1].y);
418 int cdif = iabs(column - history[movecount - 1].x);
457 int review = 0; /* review history */
480 memset(history, 0, sizeof(history));
481 history[
[all...]
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dreadline.c178 * generic function for moving around history
186 if (history(h, &ev, op) != 0)
236 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
239 el_set(e, EL_HIST, history, h);
353 history(h, &ev, H_GETSIZE);
360 * history functions
365 * history expansion functions
441 if (history(h, &ev, H_FIRST) != 0)
499 if (history(h, &ev, H_CURR) != 0) {
518 history(
[all...]
H A Dhistedit.h39 * histedit.h: Line editor and history interface.
160 typedef struct history History;
173 int history(History *, HistEvent *, int, ...);
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebHistory.idl27 @discussion Notifications sent when history is modified.
70 @abstract Returns a shared WebHistory instance initialized with the default history file.
74 HRESULT optionalSharedHistory([out, retval] IWebHistory** history);
78 @param history The history to use for the global WebHistory.
79 + (void)setOptionalSharedHistory:(WebHistory *)history;
81 HRESULT setOptionalSharedHistory([in] IWebHistory* history);
109 or more history items, ordered from most recent to oldest.
110 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory.
132 @param URL The URL of the history ite
[all...]
/macosx-10.10/ntp-92/libntp/
H A Dntp_lineedit.c15 # include <readline/history.h>
97 history(ntp_hist, &hev, H_SETSIZE, 128);
99 el_set(ntp_el, EL_HIST, history, ntp_hist);
189 history(ntp_hist, &hev, H_ENTER, cline);
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dreadline.c185 * generic function for moving around history
193 if (history(h, &ev, op) != 0)
230 static const char _dothistory[] = "/.history";
310 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
313 el_set(e, EL_HIST, history, h);
428 history(h, &ev, H_GETSIZE);
435 * history functions
440 * history expansion functions
516 if (history(h, &ev, H_FIRST) != 0)
574 if (history(
[all...]
/macosx-10.10/vim-55/runtime/syntax/
H A Dreadline.vim73 \ match-hidden-files history-preserve-point
84 \ accept-line previous-history
85 \ next-history beginning-of-history
86 \ end-of-history reverse-search-history
87 \ forward-search-history
88 \ non-incremental-reverse-search-history
89 \ non-incremental-forward-search-history
90 \ history
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DHistory.cpp70 if (HistoryItem* historyItem = m_frame->loader().history().currentItem())
154 m_frame->loader().history().pushState(data, title, fullURL.string());
157 m_frame->loader().history().replaceState(data, title, fullURL.string());
/macosx-10.10/libedit-40/src/
H A Dreadline.c187 * generic function for moving around history
195 if (history(h, &ev, op) != 0)
242 (void)snprintf(path, sizeof(path), "%s/.history", p->pw_dir);
309 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
312 el_set(e, EL_HIST, history, h);
432 history(h, &ev, H_GETSIZE);
439 * history functions
444 * history expansion functions
520 if (history(h, &ev, H_FIRST) != 0)
578 if (history(
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/wce_tpcb/
H A DTpcbExample.h43 int history; member in class:TpcbExample
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Drltest.c10 reading lines of text with interactive input and history editing.
42 # include "history.h"
45 # include <readline/history.h>
/macosx-10.10/libauto-186/
H A Dauto_impl_utilities.c209 auto_refcount_history_t *history = NULL; local
232 history = &history_list[history_hash(addr)];
233 if (history->address != addr) {
235 history->address = (vm_address_t)ptr;
236 history->nextEntry = 0;
238 history->entries[e].oldCount = UNUSED;
243 entry = &history->entries[history->nextEntry++];
244 if (history->nextEntry == ENTRY_COUNT) history
260 auto_refcount_history_t *history = NULL; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_c/
H A Dex_tpcb.c59 * with which to populate the account, history, branch, and teller tables
131 int accounts, branches, seed, tellers, history; local
136 accounts = branches = history = tellers = 0;
171 case 's': /* Number of history records */
172 if ((history = atoi(optarg)) <= 0)
199 history = history == 0 ? HISTORY : history;
204 (long)tellers, (long)history);
210 accounts, branches, history, teller
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsolePrompt.js105 get history()
111 set history(history)
113 this._history = history instanceof Array ? history.slice(0, WebInspector.ConsolePrompt.MaximumHistorySize) : [{}];
249 // Replace the first history entry and push a new empty one.
253 // Trim the history length if needed.
/macosx-10.10/emacs-93/emacs/lisp/eshell/
H A Dem-hist.el1 ;;; em-hist.el --- history list management
31 "This module provides command history management."
37 ;; Eshell's history facility imitates the syntax used by bash
44 ;; ; position, by looking at the history list
45 ;; !ls<C-c SPC> ; expand any matching history input at point
64 ;; not being used, history navigation will use comint's keybindings;
65 ;; if it is, history navigation tries to use similar keybindings to
85 (remove-hook 'kill-emacs-hook 'eshell-save-some-history))))
90 (defcustom eshell-history-file-name
91 (concat eshell-directory-name "history")
[all...]

Completed in 335 milliseconds

12345678