/external/python/cpython3/Lib/idlelib/ |
D | filelist.py | 30 edit = self.dict[key] 31 edit.top.wakeup() 32 return edit 37 edit = self.EditorWindow(self, filename, key) 38 if edit.good_load: 39 return edit 41 edit._close() 45 edit = self.open(filename) 46 if edit is not None and lineno is not None: 47 edit.gotoline(lineno) [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | FileList.py | 29 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 …]
|
/external/v8/tools/clang/scripts/ |
D | apply_edits.py | 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 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/ |
D | DiskLruCacheTest.java | 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 …]
|
/external/clang/lib/Edit/ |
D | EditedSource.cpp | 20 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/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | stringquery.cpp | 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()
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | SharedPrefUtil.java | 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()
|
D | PresencePreferences.java | 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()
|
/external/python/cpython2/Demo/tix/ |
D | INSTALL.txt | 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:
|
/external/v8/tools/clang/rewrite_to_chrome_style/ |
D | EditTracker.cpp | 56 for (const auto& edit : tracked_edits_) { in SerializeTo() local 57 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()
|
/external/protobuf/objectivec/Tests/ |
D | GPBMessageTests+Merge.m | 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 …]
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
D | ScriptEditor.java | 265 Editor e = mPreferences.edit(); in save() 536 EditItem edit = mHistory.getPrevious(); in undo() local 537 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() local 555 if (edit == null) { in redo() 559 int start = edit.mmIndex; in redo() [all …]
|
/external/libpng/contrib/tools/ |
D | chkfmt | 20 edit= 30 edit=yes 118 if test -n "$EDITOR" -a -n "$edit" 133 if test -n "$EDITOR" -a -n "$edit"
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowSharedPreferencesTest.java | 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()
|
/external/skia/tools/viewer/ |
D | ParticlesSlide.cpp | 143 auto edit = fArrayEditStack.back(); in exitArray() local 146 return edit; in exitArray() 157 ArrayEdit& edit(fArrayEditStack.back()); in item() local 163 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()
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | FilterStringViewer.java | 38 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/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 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 …]
|
/external/curl/docs/ |
D | RELEASE-PROCEDURE.md | 7 - edit `RELEASE-NOTES` to be accurate 31 - edit `Makefile` (version number and date), 33 - edit `_newslog.html` (announce the new release) and 35 - 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
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | WikipediaOfficialLanguages.txt | 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 …]
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XString.java | 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()
|
D | XStringForFSB.java | 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()
|
/external/curl/packages/vms/ |
D | compare_curl_source.com | 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")
|
D | build_gnv_curl_pcsi_desc.com | 85 $ 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/skia/site/dev/design/ |
D | aaa.md | 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)
|
/external/skqp/site/dev/design/ |
D | aaa.md | 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)
|