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

1 2

  /external/python/cpython2/Lib/idlelib/
IdleHistory.py 1 "Implement Idle Shell history mechanism with History class"
5 class History:
6 ''' Implement Idle Shell history mechanism.
10 history_next - Bound to <<history-next>> event (default Alt-N).
11 history_prev - Bound to <<history-prev>> event (default Alt-P).
17 .history - source statements, possibly with multiple lines.
18 .prefix - source already entered at prompt; filters history list.
19 .pointer - index into history.
20 .cyclic - wrap around history list (or not)
    [all...]
  /external/python/cpython3/Lib/idlelib/
history.py 1 "Implement Idle Shell history mechanism with History class"
6 class History:
7 ''' Implement Idle Shell history mechanism.
11 history_next - Bound to <<history-next>> event (default Alt-N).
12 history_prev - Bound to <<history-prev>> event (default Alt-P).
18 .history - source statements, possibly with multiple lines.
19 .prefix - source already entered at prompt; filters history list.
20 .pointer - index into history.
21 .cyclic - wrap around history list (or not)
    [all...]
  /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/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/jline/src/src/main/java/jline/
History.java 13 * A command history buffer.
17 public class History {
19 private List history = new ArrayList(); field in class:History
25 * Construstor: initialize a blank history.
27 public History() {
31 * Construstor: initialize History object the the specified {@link File} for
34 public History(final File historyFile) throws IOException {
48 * Load the history buffer from the specified InputStream.
55 * Load the history buffer from the specified Reader.
72 return history.size()
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
callbacks.py 358 @tf_export('keras.callbacks.History')
359 class History(Callback):
360 """Callback that records events into a `History` object.
363 every Keras model. The `History` object
369 self.history = {}
375 self.history.setdefault(k, []).append(v)
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Main.c 21 // Globals for command history processing
60 Save this command in the circular history buffer. Older commands are
63 @param Cmd Command line to archive the history of.
94 // Reset the command history for the next up arrow press
100 Retreave data from the Command History buffer. Direction maps into up arrow
105 @return The Command history based on the Direction
115 // No history yet?
380 The up arrow and down arrow fill Cmd with information from the history
399 CHAR8 *History;
426 History = GetCmdHistory (Key.ScanCode);
    [all...]
  /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...]
  /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...]
  /frameworks/native/include/input/
InputTransport.h 366 struct History {
383 void initializeFrom(const History& other) {
408 History history[2]; member in struct:android::InputConsumer::TouchState
409 History lastResample;
425 history[historyCurrent].initializeFrom(msg);
428 const History* getHistory(size_t index) const {
429 return &history[(historyCurrent + index) & 1];
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [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];
  /external/jline/
jline-1.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /external/annotation-tools/asmx/test/lib/
ccl.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-simpleworkflow/1.11.18/
aws-java-sdk-simpleworkflow-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/
htmlunit-2.14.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/saxon/Saxon-HE/9.8.0-5/
Saxon-HE-9.8.0-5.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0/
intellij-core-26.0.0.jar 

Completed in 353 milliseconds

1 2