Searched refs:edit (Results 1 – 25 of 2233) sorted by relevance
12345678910>>...90
30 edit = self.dict[key]31 edit.top.wakeup()32 return edit37 edit = self.EditorWindow(self, filename, key)38 if edit.good_load:39 return edit41 edit._close()45 edit = self.open(filename)46 if edit is not None and lineno is not None:47 edit.gotoline(lineno)[all …]
29 edit = self.dict[key]30 edit.top.wakeup()31 return edit39 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): argument55 key = self.inversedict[edit][all …]
112 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 and116 edit.offset == last_edit.offset and edit.length == last_edit.length):119 (filename, edit.offset, edit.length, edit.replacement,124 last_edit = edit125 contents[edit.offset:edit.offset + edit.length] = edit.replacement126 if not edit.replacement:127 _ExtendDeletionIfElementIsInList(contents, edit.offset)
99 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 …]
20 using namespace edit;274 for (edit::Commit::edit_iterator in commit()276 const edit::Commit::Edit &edit = *I; in commit() local277 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 …]
17 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()
49 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()
74 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()
39 # *** 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:
56 for (const auto& edit : tracked_edits_) { in SerializeTo() local57 for (const auto& filename : edit.getValue().filenames) { in SerializeTo()58 output << filename.getKey() << ":" << tag << ":" << edit.getKey() << ":" in SerializeTo()59 << edit.getValue().new_text << "\n"; in SerializeTo()
269 // 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 …]
265 Editor e = mPreferences.edit(); in save()536 EditItem edit = mHistory.getPrevious(); in undo() local537 if (edit == null) { in undo()541 int start = edit.mmIndex; in undo()542 int end = start + (edit.mmAfter != null ? edit.mmAfter.length() : 0); in undo()544 text.replace(start, end, edit.mmBefore); in undo()550 Selection.setSelection(text, edit.mmBefore == null ? start : (start + edit.mmBefore.length())); in undo()554 EditItem edit = mHistory.getNext(); in redo() local555 if (edit == null) { in redo()559 int start = edit.mmIndex; in redo()[all …]
20 edit=30 edit=yes118 if test -n "$EDITOR" -a -n "$edit"133 if test -n "$EDITOR" -a -n "$edit"
40 editor = sharedPreferences.edit(); in setUp()74 anotherSharedPreferences.edit().putString("string", "value for key").commit(); in commit_shouldClearEditsThatNeedRemoveAndEditsThatNeedCommit()178 anotherSharedPreferences.edit().putString("key", "value"); in shouldRemoveRegisteredListenersOnUnresgister()197 anotherSharedPreferences.edit().putString(testKey, "bar").commit(); in shouldTriggerRegisteredListeners()205 sharedPreferences.edit().putString("foo", "bar").commit(); in defaultSharedPreferences()220 sharedPreferences.edit().putBoolean("foo", true).apply(); in commit_multipleTimes()221 sharedPreferences.edit().putBoolean("bar", true).commit(); in commit_multipleTimes()
143 auto edit = fArrayEditStack.back(); in exitArray() local146 return edit; in exitArray()157 ArrayEdit& edit(fArrayEditStack.back()); in item() local163 edit.fVerb = ArrayEdit::Verb::kRemove; in item()164 edit.fIndex = index; in item()168 edit.fVerb = ArrayEdit::Verb::kMoveForward; in item()169 edit.fIndex = index; in item()173 edit.fVerb = ArrayEdit::Verb::kMoveForward; in item()174 edit.fIndex = index + 1; in item()
38 private Button edit = new Button(EDIT_FILTER_STRING); field in FilterStringViewer46 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()
95 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 …]
7 - edit `RELEASE-NOTES` to be accurate31 - edit `Makefile` (version number and date),33 - edit `_newslog.html` (announce the new release) and35 - edit `_changes.html` (insert changes+bugfixes from RELEASE-NOTES)48 - edit the newly made release tag so that it is listed as the latest release
1 A[edit]37 B[edit]93 C[edit]226 D[edit]240 E[edit]266 F[edit]278 G[edit]322 H[edit]340 I[edit]410 J[edit][all …]
1035 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()
861 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()
98 $ 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")
4 …tps://docs.google.com/presentation/d/16r9HMS4_UBrcF3HUHscAqbSgkrtIwqaihZNwGP2TL_s/edit?usp=sharing)5 …](https://docs.google.com/document/d/17Gq-huAf9q7wA4MRfXwpi_bYLrVeteKcSfAep0Am-wA/edit?usp=sharing)
... MalformedTreeException org.eclipse.text.edits.CopyTargetEdit edit public org.eclipse.text.edits.ISourceModifier ...