HomeSort by relevance Sort by last modified time
    Searched refs:History (Results 1 - 25 of 48) sorted by null

1 2

  /external/libavc/common/arm/
ih264_arm_memory_barrier.s 46 @* Revision History :
63 @* Revision History :
  /external/autotest/frontend/client/src/autotest/common/
CustomHistory.java 5 import com.google.gwt.user.client.History;
13 * Wrapper around gwt.user.client.History that won't call onHistoryChanged for
14 * programmatically-generated history items.
41 History.addValueChangeHandler(this);
45 * Allows programmatic simulation of history changes, without actually changing history or the
53 theInstance.processHistoryTokenString(History.getToken());
97 History.newItem(token.toString());
  /external/libedit/src/
histedit.h 38 * histedit.h: Line editor and history interface.
183 * ==== History ====
186 typedef struct history History;
194 * History access functions.
196 History * history_init(void);
197 void history_end(History *);
199 int history(History *, HistEvent *, int, ...);
288 * ==== History ===
    [all...]
history.c 1 /* $NetBSD: history.c,v 1.46 2011/11/18 20:39:18 christos Exp $ */
41 static char sccsid[] = "@(#)history.c 8.1 (Berkeley) 6/4/93";
43 __RCSID("$NetBSD: history.c,v 1.46 2011/11/18 20:39:18 christos Exp $");
48 * hist.c: TYPE(History) access functions
66 struct TYPE(history) {
67 void *h_ref; /* Argument for history fcns */
68 int h_ent; /* Last entry point for history */
76 history_vfun_t h_clear; /* Clear the history list */
104 private int history_setsize(TYPE(History) *, TYPE(HistEvent) *, int);
105 private int history_getsize(TYPE(History) *, TYPE(HistEvent) *)
    [all...]
  /prebuilts/libs/libedit/include/
histedit.h 38 * histedit.h: Line editor and history interface.
183 * ==== History ====
186 typedef struct history History;
194 * History access functions.
196 History * history_init(void);
197 void history_end(History *);
199 int history(History *, HistEvent *, int, ...);
288 * ==== History ===
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
TabView.java 11 import com.google.gwt.user.client.History;
87 * Subclasses should override this to store any additional history information.
99 * @param arguments the parsed history arguments to use
118 History.newItem(historyToken.toString());
  /external/autotest/frontend/client/src/autotest/tko/
TkoClient.java 15 import com.google.gwt.user.client.History;
85 History.newItem(getSelectTestHistoryToken(testId).toString());
SavedQueriesControl.java 21 import com.google.gwt.user.client.History;
142 History.newItem(HISTORY_TOKEN + "=" + idString);
207 // since this is happening asynchronously, the history may have changed, so ensure
  /frameworks/base/core/java/android/provider/
Browser.java 31 import android.provider.BrowserContract.History;
40 * A table containing both bookmarks and history items. The columns of the table are defined in
119 /** @removed columns needed to determine whether to truncate history @removed */
128 /** @removed truncate this many history items at a time */
155 /* Set a cap on the count of history items in the history/bookmark
301 return cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
306 * Update the visited history to acknowledge that a site has bee
    [all...]
BrowserContract.java 40 * history, images and the mapping between the image and URL.
162 * This column is valid when the row is a URL. The history table's URL
436 * The history table, which holds the browsing history.
438 public static final class History implements CommonColumns, HistoryColumns, ImageColumns {
442 private History() {}
447 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "history");
450 * The MIME type of {@link #CONTENT_URI} providing a directory of browser history items.
452 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/browser-history";
455 * The MIME type of a {@link #CONTENT_URI} of a single browser history item
    [all...]
  /frameworks/native/include/input/
InputTransport.h 364 struct History {
390 History history[2]; member in struct:android::InputConsumer::TouchState
391 History lastResample;
407 history[historyCurrent].initializeFrom(msg);
410 const History* getHistory(size_t index) const {
411 return &history[(historyCurrent + index) & 1];
  /external/mesa3d/docs/
MESA_window_pos.spec 122 Revision History
MESA_pixmap_colormap.spec 88 Revision History
MESA_resize_buffers.spec 79 Revision History
MESA_set_3dfx_mode.spec 83 Revision History
MESA_shader_debug.spec 258 Revision History
MESA_swap_control.spec 124 Revision History
MESA_ycbcr_texture.spec 197 Revision History
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 132 ATTRIBUTE Ascend-Seconds-Of-History 238 integer
133 ATTRIBUTE Ascend-History-Weigh-Type 239 integer
201 VALUE Ascend-History-Weigh-Type History-Constant 0
202 VALUE Ascend-History-Weigh-Type History-Linear 1
203 VALUE Ascend-History-Weigh-Type History-Quadratic 2
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
IdleHistory.py 3 class History:
7 self.history = []
11 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
12 text.bind("<<history-previous>>", self.history_prev)
13 text.bind("<<history-next>>", self.history_next)
34 nhist = len(self.history)
39 self._get_source("iomark", "end-1c") != self.history[pointer]:
67 item = self.history[pointer]
83 self.history.remove(source)
86 self.history.append(source
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
IdleHistory.py 3 class History:
7 self.history = []
11 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
12 text.bind("<<history-previous>>", self.history_prev)
13 text.bind("<<history-next>>", self.history_next)
34 nhist = len(self.history)
39 self._get_source("iomark", "end-1c") != self.history[pointer]:
67 item = self.history[pointer]
83 self.history.remove(source)
86 self.history.append(source
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IdleHistory.py 3 class History:
7 self.history = []
11 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
12 text.bind("<<history-previous>>", self.history_prev)
13 text.bind("<<history-next>>", self.history_next)
34 nhist = len(self.history)
39 self._get_source("iomark", "end-1c") != self.history[pointer]:
67 item = self.history[pointer]
83 self.history.remove(source)
86 self.history.append(source
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
IdleHistory.py 3 class History:
7 self.history = []
11 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
12 text.bind("<<history-previous>>", self.history_prev)
13 text.bind("<<history-next>>", self.history_next)
34 nhist = len(self.history)
39 self._get_source("iomark", "end-1c") != self.history[pointer]:
67 item = self.history[pointer]
83 self.history.remove(source)
86 self.history.append(source
    [all...]
  /external/libxml2/vms/
build_libxml.com 15 $! Change History
18 $! Update history : 19 March 2008 Tycho Hilhorst
  /external/libedit/examples/
tc1.c 137 History *hist;
146 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)
    [all...]

Completed in 412 milliseconds

1 2