/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_idlehistory.py | 7 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/ |
D | test_history.py | 3 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/ |
D | CustomHistory.java | 5 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/ |
D | DwarfDebug.cpp | 891 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/ |
D | History.java | 17 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
|
D | ConsoleRunner.java | 46 reader.setHistory(new History (new File in main() 51 reader.setHistory(new History(new File in main()
|
/external/jline/src/src/test/java/jline/ |
D | ConsoleReaderTest.java | 155 private History createSeededHistory() { in createSeededHistory() 156 History history = new History(); in createSeededHistory()
|
/external/libavc/common/arm/ |
D | ih264_arm_memory_barrier.s | 46 @* Revision History : 63 @* Revision History :
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | TkoClient.java | 15 import com.google.gwt.user.client.History; 82 History.newItem(getSelectTestHistoryToken(testId).toString()); in onSelectTest()
|
D | SavedQueriesControl.java | 21 import com.google.gwt.user.client.History; 142 History.newItem(HISTORY_TOKEN + "=" + idString); in onChange()
|
/external/ppp/pppd/plugins/radius/etc/ |
D | 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
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
D | TabView.java | 11 import com.google.gwt.user.client.History; 118 History.newItem(historyToken.toString()); in openHistoryToken()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.keras.callbacks.-history.pbtxt | 1 path: "tensorflow.keras.callbacks.History" 3 is_instance: "<class \'tensorflow.python.keras.callbacks.History\'>"
|
D | tensorflow.keras.callbacks.pbtxt | 20 name: "History"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.keras.callbacks.-history.pbtxt | 1 path: "tensorflow.keras.callbacks.History" 3 is_instance: "<class \'tensorflow.python.keras.callbacks.History\'>"
|
D | tensorflow.keras.callbacks.pbtxt | 20 name: "History"
|
/external/python/cpython3/Doc/tutorial/ |
D | interactive.rst | 4 Interactive Input Editing and History Substitution 16 Tab Completion and History Editing
|
/external/tensorflow/tensorflow/contrib/keras/api/keras/callbacks/ |
D | __init__.py | 25 from tensorflow.python.keras.callbacks import History
|
/external/ltp/testcases/open_posix_testsuite/functional/threads/ |
D | README | 1 Revision History:
|
/external/deqp/external/openglcts/docs/specs/ |
D | CTS_KHR_no_error.txt | 48 Revision History
|
D | CTS_ARB_spirv_extensions.txt | 56 Revision History
|
/external/python/cpython2/Tools/webchecker/ |
D | README | 9 History:
|
/external/mesa3d/docs/specs/ |
D | MESA_window_pos.spec | 122 Revision History
|
/external/python/cpython2/Doc/tutorial/ |
D | interactive.rst | 4 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/ |
D | IdleHistory.py | 5 class History: class
|