Home
last modified time | relevance | path

Searched refs:edit (Results 1 – 25 of 1131) sorted by relevance

12345678910>>...46

/external/python/cpython2/Lib/idlelib/
DFileList.py29 edit = self.dict[key]
30 edit.top.wakeup()
31 return edit
39 edit = self.open(filename)
40 if edit is not None and lineno is not None:
41 edit.gotoline(lineno)
47 for edit in self.inversedict.keys():
48 reply = edit.close()
53 def unregister_maybe_terminate(self, edit): argument
55 key = self.inversedict[edit]
[all …]
Dextend.txt5 edit windows. There is a simple mechanism to load extensions when IDLE
6 starts up and to attach them to each edit window. (It is also possible
16 automatically applied by IDLE when the extension is linked to an edit
26 flist the FileList instance (shared by all edit windows)
62 ('edit', [
/external/javassist/src/main/javassist/expr/
DExprEditor.java97 edit(h); in doit()
191 edit((MethodCall)expr); in loopBody()
197 edit((FieldAccess)expr); in loopBody()
211 edit((NewExpr)expr); in loopBody()
219 edit(ccall); in loopBody()
223 edit(mcall); in loopBody()
232 edit((NewArray)expr); in loopBody()
236 edit((Instanceof)expr); in loopBody()
240 edit((Cast)expr); in loopBody()
262 public void edit(NewExpr e) throws CannotCompileException {} in edit() method in ExprEditor
[all …]
/external/v8/tools/clang/scripts/
Dapply_edits.py112 for edit in reversed(edits):
113 if edit == last_edit:
115 if (last_edit is not None and edit.edit_type == last_edit.edit_type and
116 edit.offset == last_edit.offset and edit.length == last_edit.length):
119 (filename, edit.offset, edit.length, edit.replacement,
124 last_edit = edit
125 contents[edit.offset:edit.offset + edit.length] = edit.replacement
126 if not edit.replacement:
127 _ExtendDeletionIfElementIsInList(contents, edit.offset)
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java99 cache.edit(key); in validateKey()
106 cache.edit(key); in validateKey()
113 cache.edit(key); in validateKey()
120 cache.edit(key); in validateKey()
127 cache.edit(key); in validateKey()
135 cache.edit(key); in validateKey()
146 cache.edit(key).abort(); in validateKey()
149 cache.edit(key).abort(); in validateKey()
152 cache.edit(key).abort(); in validateKey()
156 DiskLruCache.Editor creator = cache.edit("k1"); in writeAndReadEntry()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dstringquery.cpp17 edit = new QLineEdit; in StringQuery()
18 edit->setFocus(); in StringQuery()
21 layout->addWidget(edit, 0, 1); in StringQuery()
24 connect(edit, SIGNAL(returnPressed()), this, SLOT(accept())); in StringQuery()
30 return edit->text(); in get_string()
/external/clang/lib/Edit/
DEditedSource.cpp20 using namespace edit;
274 for (edit::Commit::edit_iterator in commit()
276 const edit::Commit::Edit &edit = *I; in commit() local
277 switch (edit.Kind) { in commit()
278 case edit::Commit::Act_Insert: in commit()
279 commitInsert(edit.OrigLoc, edit.Offset, edit.Text, edit.BeforePrev); in commit()
281 case edit::Commit::Act_InsertFromRange: in commit()
282 commitInsertFromRange(edit.OrigLoc, edit.Offset, in commit()
283 edit.InsertFromRangeOffs, edit.Length, in commit()
284 edit.BeforePrev); in commit()
[all …]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DSharedPrefUtil.java49 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in setInitDone()
63 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastContactChangedTimestamp()
77 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastProfileContactChangedTimestamp()
91 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastContactDeletedTimestamp()
99 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in validateDeviceTimestamp()
111 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in resetEABSharedPref()
DPresencePreferences.java74 Editor editor = mCommonPref.edit(); in updateCapabilityDiscoveryTime()
94 Editor editor = mCommonPref.edit(); in setSubscriberId()
113 Editor editor = mCommonPref.edit(); in setLine1Number()
132 Editor editor = mCommonPref.edit(); in setRcsTestMode()
/external/v8/tools/clang/rewrite_to_chrome_style/
DEditTracker.cpp35 for (const auto& edit : tracked_edits_) { in SerializeTo() local
36 for (const auto& filename : edit.getValue().filenames) { in SerializeTo()
37 output << filename.getKey() << ":" << tag << ":" << edit.getKey() << ":" in SerializeTo()
38 << edit.getValue().new_text << "\n"; in SerializeTo()
/external/python/cpython2/Demo/tix/
DINSTALL.txt39 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
41 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
43 # *** Uncomment and edit to reflect where your X11 header files are:
47 # *** Uncomment and edit for BLT extension only:
49 # *** Uncomment and edit for PIL (TkImaging) extension only:
52 # *** Uncomment and edit for TOGL extension only:
54 # *** Uncomment and edit for Tix extension only:
56 # *** Uncomment and edit to reflect your Tcl/Tk versions:
58 # *** Uncomment and edit to reflect where your X11 libraries are:
/external/libpng/contrib/tools/
Dchkfmt20 edit=
30 edit=yes
118 if test -n "$EDITOR" -a -n "$edit"
133 if test -n "$EDITOR" -a -n "$edit"
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java264 Editor e = mPreferences.edit(); in save()
535 EditItem edit = mHistory.getPrevious(); in undo() local
536 if (edit == null) { in undo()
540 int start = edit.mmIndex; in undo()
541 int end = start + (edit.mmAfter != null ? edit.mmAfter.length() : 0); in undo()
543 text.replace(start, end, edit.mmBefore); in undo()
549 Selection.setSelection(text, edit.mmBefore == null ? start : (start + edit.mmBefore.length())); in undo()
553 EditItem edit = mHistory.getNext(); in redo() local
554 if (edit == null) { in redo()
558 int start = edit.mmIndex; in redo()
[all …]
/external/protobuf/objectivec/Tests/
DGPBMessageTests+Merge.m269 // This block of code is generated, do not edit it directly.
278 // This block of code is generated, do not edit it directly.
287 // This block of code is generated, do not edit it directly.
296 // This block of code is generated, do not edit it directly.
305 // This block of code is generated, do not edit it directly.
314 // This block of code is generated, do not edit it directly.
323 // This block of code is generated, do not edit it directly.
332 // This block of code is generated, do not edit it directly.
341 // This block of code is generated, do not edit it directly.
350 // This block of code is generated, do not edit it directly.
[all …]
/external/autotest/frontend/client/src/autotest/tko/
DFilterStringViewer.java38 private Button edit = new Button(EDIT_FILTER_STRING); field in FilterStringViewer
46 edit.addClickHandler(new ClickHandler() { in FilterStringViewer()
62 viewerHeaderPanel.add(edit); in FilterStringViewer()
145 edit.setText(EDIT_FILTER_STRING); in changeEditable()
152 edit.setText(UNEDIT_FILTER_STRING); in changeEditable()
/external/curl/docs/
DRELEASE-PROCEDURE7 - edit `RELEASE-NOTES` to be accurate
30 - edit `Makefile` (version number and date),
32 - edit `_newslog.html` (announce the new release) and
34 - edit `_changes.html` (insert changes+bugfixes from RELEASE-NOTES)
47 - edit the newly made release tag so that it is listed as the latest release
/external/clang/lib/ARCMigrate/
DObjCMT.cpp95 std::unique_ptr<edit::EditedSource> Editor;
129 Editor.reset(new edit::EditedSource(Context.getSourceManager(), in Initialize()
233 const NSAPI &NS, edit::Commit &commit, in rewriteToPropertyDotSyntax()
324 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr()
325 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap); in VisitObjCMessageExpr()
330 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr()
331 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit); in VisitObjCMessageExpr()
336 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr()
454 const NSAPI &NS, edit::Commit &commit, in rewriteToObjCProperty()
664 const NSAPI &NS, edit::Commit &commit) { in rewriteToObjCInterfaceDecl()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXString.java1035 boolean edit = false; in fixWhiteSpace()
1060 edit = true; in fixWhiteSpace()
1082 edit = true; in fixWhiteSpace()
1095 edit = true; in fixWhiteSpace()
1104 edit = true; in fixWhiteSpace()
1111 return edit ? xsf.newstr(new String(buf, start, d - start)) : this; in fixWhiteSpace()
DXStringForFSB.java861 boolean edit = false; in fixWhiteSpace()
877 edit = true; in fixWhiteSpace()
899 edit = true; in fixWhiteSpace()
912 edit = true; in fixWhiteSpace()
921 edit = true; in fixWhiteSpace()
928 return edit ? xsf.newstr(buf, start, d - start) : this; in fixWhiteSpace()
/external/pcre/dist2/cmake/
DFindEditline.cmake8 /usr/include/edit/readline
12 FIND_LIBRARY(EDITLINE_LIBRARY NAMES edit)
/external/curl/packages/vms/
Dcompare_curl_source.com98 $ myprocdir = f$edit(myprocdir, "LOWERCASE")
101 $ mydir = f$edit(mydir, "LOWERCASE")
113 $ resultd = f$edit(resultd, "LOWERCASE")
124 $ ref_root_dir = f$edit(ref_root_dir, "LOWERCASE")
193 $ ref_dir = f$edit(ref_dir, "LOWERCASE")
251 $ ref_type = f$edit(ref_type, "UPCASE")
256 $ ref_fname = f$edit(ref_fname, "LOWERCASE")
Dbuild_gnv_curl_pcsi_desc.com85 $ kit_type = f$edit(f$extract(0, 1, majorver), "upcase")
167 $ line_in = f$edit(line_in,"compress,trim,uncomment")
284 $ line_in = f$edit(line_in,"compress,trim,uncomment")
311 $ filetype_u = f$edit(filetype, "upcase")
337 $ line_in = f$edit(line_in,"compress,trim,uncomment")
409 $ line_in = f$edit(line_in,"compress,trim,uncomment")
418 $ filetype = f$edit(f$parse(filename,,,"TYPE"), "upcase")
433 $ filedir = f$edit(f$parse(filename,,,"DIRECTORY"), "lowercase")
446 $ line_in = f$edit(line_in,"compress,trim,uncomment")
/external/python/cpython2/Tools/faqwiz/
Dfaqwiz.py259 def show(self, edit=1): argument
303 if edit:
358 def show(self, file, edit=1): argument
359 self.open(file).show(edit=edit)
485 self.format_all(files, edit=0)
499 def format_all(self, files, edit=1, headers=1): argument
514 entry.show(edit=edit)
700 entry.show(edit=0)
710 entry.show(edit=0)
749 entry.show(edit=0)
/external/devlib/src/netstats/
Dproguard-project.txt1 # To enable ProGuard in your project, edit project.properties
7 # You can edit the include path and order by changing the ProGuard
/external/clang/tools/clang-format/
Dclang-format-sublime.py30 def run(self, edit): argument
51 edit, sublime.Region(0, self.view.size()),

12345678910>>...46