Searched refs:History (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_history.py | 3 from idlelib.history import History namespace 17 '''Tests History.__init__ and History.store with mock Text''' 22 cls.history = History(cls.text) 34 idleConf.GetOption("main", "History", "cyclic", 1, "bool")) 69 '''Test History.fetch with wrapped tk.Text. 82 self.history = History(text) 94 History = self.history 95 History.fetch(reverse) 102 Equal(History [all...] |
/third_party/python/Lib/idlelib/ |
H A D | history.py | 1 "Implement Idle Shell history mechanism with History class" 6 class History: class 27 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
|
H A D | pyshell.py | 879 from idlelib.history import History namespace 948 self.history = self.History(self.text)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/ |
H A D | LineEditor.cpp | 101 History *Hist;
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 1329 if (ImGui::TreeNode("Completion, History, Edit Callbacks")) in ShowDemoWindowWidgets() 1373 ImGui::InputText("History", buf2, 64, ImGuiInputTextFlags_CallbackHistory, Funcs::MyCallback); in ShowDemoWindowWidgets() 6228 ImVector<char*> History; member 6229 int HistoryPos; // -1: new line, 0..History.Size-1 browsing history. 6252 for (int i = 0; i < History.Size; i++) 6253 free(History[i]); 6425 for (int i = History.Size - 1; i >= 0; i--) 6426 if (Stricmp(History[i], command_line) == 0) 6428 free(History[i]); 6429 History [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
Completed in 51 milliseconds