HomeSort by relevance Sort by last modified time
    Searched defs:History (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
history.js 30 var history = history || {};
34 history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES = {
41 history.validateParameter = function(state, key, value, validateFn)
52 history.isTreeMap = function()
58 history.queryHashAsMap = function()
102 history._diffStates = function(oldState, newState)
119 history._fillMissingValues = function(to, from)
127 history.History = function(configuration
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
history.js 7 * @fileoverview Stores the history of a ChromeVox session.
10 goog.provide('cvox.History');
16 * A history event is stored in the cvox.History object and contains all the
162 cvox.History = function() {
175 // NOTE(deboer): Currently we only ever have one cvox.History, but
180 goog.addSingletonGetter(cvox.History);
186 cvox.History.prototype.addListDiv_ = function() {
199 button.onclick = cvox.History.sendToFeedback;
206 dumpButton.onclick = cvox.History.dumpJs
    [all...]
  /external/lldb/include/lldb/Interpreter/
CommandHistory.h 69 typedef std::vector<std::string> History;
71 History m_history;
  /external/chromium_org/chrome/browser/ui/app_list/search/
history.cc 5 #include "chrome/browser/ui/app_list/search/history.h"
27 History::History(content::BrowserContext* context)
42 History::~History() {
46 bool History::IsReady() const {
50 void History::AddLaunchEvent(const std::string& query,
56 scoped_ptr<KnownResults> History::GetKnownResults(
62 void History::OnHistoryDataLoadedFromStore() {
history.h 31 // History tracks the launch events of the search results and uses HistoryData
37 class History : public KeyedService, public HistoryDataObserver {
39 explicit History(content::BrowserContext* context);
40 virtual ~History();
63 DISALLOW_COPY_AND_ASSIGN(History);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
TabbedEditorContainer.js 68 this._history = WebInspector.TabbedEditorContainer.History.fromObject(this._previouslyViewedFilesSetting.get());
567 WebInspector.TabbedEditorContainer.History = function(items)
575 * @return {!WebInspector.TabbedEditorContainer.History}
577 WebInspector.TabbedEditorContainer.History.fromObject = function(serializedHistory)
582 return new WebInspector.TabbedEditorContainer.History(items);
585 WebInspector.TabbedEditorContainer.History.prototype = {
  /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...]
PyShell.py 852 from idlelib.IdleHistory import History
    [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...]
PyShell.py 852 from idlelib.IdleHistory import History
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 27 #include "core/frame/History.h"
45 History::History(LocalFrame* frame)
52 unsigned History::length() const
61 SerializedScriptValue* History::state()
67 SerializedScriptValue* History::stateInternal() const
78 bool History::stateChanged() const
83 bool History::isSameAsCurrentState(SerializedScriptValue* state) const
88 void History::back(ExecutionContext* context)
93 void History::forward(ExecutionContext* context
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 35 GDBRemoteCommunication::History::History (uint32_t size) :
44 GDBRemoteCommunication::History::~History ()
49 GDBRemoteCommunication::History::AddPacket (char packet_char,
66 GDBRemoteCommunication::History::AddPacket (const std::string &src,
84 GDBRemoteCommunication::History::Dump (lldb_private::Stream &strm) const
95 strm.Printf ("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s\n",
105 GDBRemoteCommunication::History::Dump (lldb_private::Log *log) const
119 log->Printf ("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s"
    [all...]
GDBRemoteCommunication.h 121 class History
158 History (uint32_t size);
160 ~History ();
252 History m_history;
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCInitialPresence.java 34 * The amount of discussion history provided on entering a room (perhaps because the
36 * setting a configured History instance to the MUCInitialPresence instance.
37 * @see MUCInitialPresence#setHistory(MUCInitialPresence.History).
44 private History history; field in class:MUCInitialPresence
69 * Returns the history that manages the amount of discussion history provided on
72 * @return the history that manages the amount of discussion history provided on
75 public History getHistory()
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UI.java 38 History,
  /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...]
  /frameworks/native/include/input/
InputTransport.h 362 struct History {
388 History history[2]; member in struct:android::InputConsumer::TouchState
389 History lastResample;
405 history[historyCurrent].initializeFrom(msg);
408 const History* getHistory(size_t index) const {
409 return &history[(historyCurrent + index) & 1];
  /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...]
  /frameworks/base/core/java/android/provider/
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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
classpnp.h 436 SRB_HISTORY_ITEM History[1];
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 1083 milliseconds