Home
last modified time | relevance | path

Searched refs:History (Results 1 – 25 of 167) sorted by relevance

1234567

/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_idlehistory.py7 from idlelib.IdleHistory import History
19 cls.history = History(cls.text)
78 self.history = History(text)
90 History = self.history
91 History.fetch(reverse)
98 Equal(History.prefix, prefix)
99 Equal(History.pointer, index)
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_history.py3 from idlelib.history import History
22 cls.history = History(cls.text)
82 self.history = History(text)
94 History = self.history
95 History.fetch(reverse)
102 Equal(History.prefix, prefix)
103 Equal(History.pointer, index)
/external/autotest/frontend/client/src/autotest/common/
DCustomHistory.java5 import com.google.gwt.user.client.History;
41 History.addValueChangeHandler(this); in CustomHistory()
53 theInstance.processHistoryTokenString(History.getToken()); in processInitialToken()
97 History.newItem(token.toString()); in newItem()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp891 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var]; in collectVariableInfo() local
892 if (History.empty()) in collectVariableInfo()
894 const MachineInstr *MInsn = History.front(); in collectVariableInfo()
925 if (History.size() <= 1 || (History.size() == 2 && in collectVariableInfo()
926 MInsn->isIdenticalTo(History.back()))) { in collectVariableInfo()
935 HI = History.begin(), HE = History.end(); HI != HE; ++HI) { in collectVariableInfo()
1149 SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var]; in beginFunction() local
1150 if (History.empty()) { in beginFunction()
1161 const MachineInstr *Prev = History.back(); in beginFunction()
1164 if (History.size() >= 2 && in beginFunction()
[all …]
/external/jline/src/src/main/java/jline/
DHistory.java17 public class History { class
27 public History() { in History() method in History
34 public History(final File historyFile) throws IOException { in History() method in History
DConsoleRunner.java46 reader.setHistory(new History (new File in main()
51 reader.setHistory(new History(new File in main()
/external/jline/src/src/test/java/jline/
DConsoleReaderTest.java155 private History createSeededHistory() { in createSeededHistory()
156 History history = new History(); in createSeededHistory()
/external/libavc/common/arm/
Dih264_arm_memory_barrier.s46 @* Revision History :
63 @* Revision History :
/external/autotest/frontend/client/src/autotest/tko/
DTkoClient.java15 import com.google.gwt.user.client.History;
82 History.newItem(getSelectTestHistoryToken(testId).toString()); in onSelectTest()
DSavedQueriesControl.java21 import com.google.gwt.user.client.History;
142 History.newItem(HISTORY_TOKEN + "=" + idString); in onChange()
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.ascend132 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
/external/autotest/frontend/client/src/autotest/common/ui/
DTabView.java11 import com.google.gwt.user.client.History;
118 History.newItem(historyToken.toString()); in openHistoryToken()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.keras.callbacks.-history.pbtxt1 path: "tensorflow.keras.callbacks.History"
3 is_instance: "<class \'tensorflow.python.keras.callbacks.History\'>"
Dtensorflow.keras.callbacks.pbtxt20 name: "History"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.keras.callbacks.-history.pbtxt1 path: "tensorflow.keras.callbacks.History"
3 is_instance: "<class \'tensorflow.python.keras.callbacks.History\'>"
Dtensorflow.keras.callbacks.pbtxt20 name: "History"
/external/python/cpython3/Doc/tutorial/
Dinteractive.rst4 Interactive Input Editing and History Substitution
16 Tab Completion and History Editing
/external/tensorflow/tensorflow/contrib/keras/api/keras/callbacks/
D__init__.py25 from tensorflow.python.keras.callbacks import History
/external/ltp/testcases/open_posix_testsuite/functional/threads/
DREADME1 Revision History:
/external/deqp/external/openglcts/docs/specs/
DCTS_KHR_no_error.txt48 Revision History
DCTS_ARB_spirv_extensions.txt56 Revision History
/external/python/cpython2/Tools/webchecker/
DREADME9 History:
/external/mesa3d/docs/specs/
DMESA_window_pos.spec122 Revision History
/external/python/cpython2/Doc/tutorial/
Dinteractive.rst4 Interactive Input Editing and History Substitution
40 History Substitution
43 History substitution works as follows. All non-empty input lines issued are
/external/python/cpython2/Lib/idlelib/
DIdleHistory.py5 class History: class

1234567