/external/llvm-project/flang/runtime/ |
D | edit-output.cpp | 16 bool EditIntegerOutput(IoStatementState &io, const DataEdit &edit, INT n) { in EditIntegerOutput() argument 26 switch (edit.descriptor) { in EditIntegerOutput() 30 if (isNegative || (edit.modes.editingFlags & signPlus)) { in EditIntegerOutput() 58 edit.descriptor); in EditIntegerOutput() 64 int editWidth{edit.width.value_or(0)}; in EditIntegerOutput() 65 if (edit.digits && digits <= *edit.digits) { // Iw.m in EditIntegerOutput() 66 if (*edit.digits == 0 && n == 0) { in EditIntegerOutput() 72 leadingZeroes = *edit.digits - digits; in EditIntegerOutput() 82 if (edit.IsListDirected()) { in EditIntegerOutput() 97 int expo, const DataEdit &edit, int &length) { in FormatExponent() argument [all …]
|
D | edit-input.cpp | 19 IoStatementState &io, const DataEdit &edit, std::optional<int> &remaining) { in PrepareInput() argument 21 if (edit.descriptor == DataEdit::ListDirected) { in PrepareInput() 24 if (edit.width.value_or(0) > 0) { in PrepareInput() 25 remaining = *edit.width; in PrepareInput() 32 static bool EditBOZInput(IoStatementState &io, const DataEdit &edit, void *n, in EditBOZInput() argument 35 std::optional<char32_t> next{PrepareInput(io, edit, remaining)}; in EditBOZInput() 68 static bool ScanNumericPrefix(IoStatementState &io, const DataEdit &edit, in ScanNumericPrefix() argument 70 next = PrepareInput(io, edit, remaining); in ScanNumericPrefix() 83 IoStatementState &io, const DataEdit &edit, void *n, int kind) { in EditIntegerInput() argument 85 switch (edit.descriptor) { in EditIntegerInput() [all …]
|
D | descriptor-io.h | 41 if (auto edit{io.GetNextDataEdit()}) { in FormattedIntegerIO() 44 if (!EditIntegerOutput(io, *edit, static_cast<std::int64_t>(x))) { in FormattedIntegerIO() 47 } else if (edit->descriptor != DataEdit::ListDirectedNullValue) { in FormattedIntegerIO() 48 if (!EditIntegerInput(io, *edit, reinterpret_cast<void *>(&x), in FormattedIntegerIO() 72 if (auto edit{io.GetNextDataEdit()}) { in FormattedRealIO() 75 if (!RealOutputEditing<KIND>{io, x}.Edit(*edit)) { in FormattedRealIO() 78 } else if (edit->descriptor != DataEdit::ListDirectedNullValue) { in FormattedRealIO() 79 if (!EditRealInput<KIND>(io, *edit, reinterpret_cast<void *>(&x))) { in FormattedRealIO() 115 auto edit{io.GetNextDataEdit()}; in FormattedComplexIO() 116 if (!edit) { in FormattedComplexIO() [all …]
|
D | format-implementation.h | 375 DataEdit edit; in GetNextDataEdit() local 376 edit.descriptor = static_cast<char>(Capitalize(GetNextChar(context))); in GetNextDataEdit() 377 if (edit.descriptor == 'E') { in GetNextDataEdit() 378 edit.variation = static_cast<char>(Capitalize(PeekNext())); in GetNextDataEdit() 379 if (edit.variation >= 'A' && edit.variation <= 'Z') { in GetNextDataEdit() 384 if (edit.descriptor == 'A') { // width is optional for A[w] in GetNextDataEdit() 387 edit.width = GetIntField(context); in GetNextDataEdit() 390 edit.width = GetIntField(context); in GetNextDataEdit() 392 edit.modes = context.mutableModes(); in GetNextDataEdit() 395 edit.digits = GetIntField(context); in GetNextDataEdit() [all …]
|
D | io-stmt.cpp | 559 DataEdit edit; in GetNextDataEdit() local 560 edit.descriptor = DataEdit::ListDirected; in GetNextDataEdit() 561 edit.repeat = maxRepeat; in GetNextDataEdit() 562 edit.modes = io.mutableModes(); in GetNextDataEdit() 563 return edit; in GetNextDataEdit() 571 DataEdit edit; in GetNextDataEdit() local 572 edit.descriptor = DataEdit::ListDirected; in GetNextDataEdit() 573 edit.repeat = 1; // may be overridden below in GetNextDataEdit() 574 edit.modes = connection.modes; in GetNextDataEdit() 576 edit.descriptor = DataEdit::ListDirectedNullValue; in GetNextDataEdit() [all …]
|
/external/icing/icing/index/ |
D | index_test.cc | 176 Index::Editor edit = index_->Edit( in TEST_F() local 178 EXPECT_THAT(edit.BufferTerm("foo"), IsOk()); in TEST_F() 179 EXPECT_THAT(edit.IndexAllBufferedTerms(), IsOk()); in TEST_F() 200 Index::Editor edit = index_->Edit( in TEST_F() local 202 EXPECT_THAT(edit.BufferTerm("foo"), IsOk()); in TEST_F() 203 EXPECT_THAT(edit.IndexAllBufferedTerms(), IsOk()); in TEST_F() 226 Index::Editor edit = index_->Edit( in TEST_F() local 228 EXPECT_THAT(edit.BufferTerm("foo"), IsOk()); in TEST_F() 229 EXPECT_THAT(edit.IndexAllBufferedTerms(), IsOk()); in TEST_F() 240 Index::Editor edit = index_->Edit( in TEST_F() local [all …]
|
/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/javassist/src/main/javassist/expr/ |
D | ExprEditor.java | 103 edit(h); in doit() 197 edit((MethodCall)expr); in loopBody() 203 edit((FieldAccess)expr); in loopBody() 217 edit((NewExpr)expr); in loopBody() 225 edit(ccall); in loopBody() 229 edit(mcall); in loopBody() 238 edit((NewArray)expr); in loopBody() 242 edit((Instanceof)expr); in loopBody() 246 edit((Cast)expr); in loopBody() 267 public void edit(NewExpr e) throws CannotCompileException {} in edit() method in ExprEditor [all …]
|
/external/llvm-project/flang/unittests/Runtime/ |
D | format.cpp | 70 void TestFormatContext::Report(const DataEdit &edit) { in Report() argument 71 std::string str{edit.descriptor}; in Report() 72 if (edit.repeat != 1) { in Report() 73 str = std::to_string(edit.repeat) + '*' + str; in Report() 75 if (edit.variation) { in Report() 76 str += edit.variation; in Report() 78 if (edit.width) { in Report() 79 str += std::to_string(*edit.width); in Report() 81 if (edit.digits) { in Report() 82 str += "."s + std::to_string(*edit.digits); in Report() [all …]
|
/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/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/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/llvm-project/clang/lib/Edit/ |
D | EditedSource.cpp | 28 using namespace edit; 292 for (edit::Commit::edit_iterator in commit() 294 const edit::Commit::Edit &edit = *I; in commit() local 295 switch (edit.Kind) { in commit() 296 case edit::Commit::Act_Insert: in commit() 297 commitInsert(edit.OrigLoc, edit.Offset, edit.Text, edit.BeforePrev); in commit() 299 case edit::Commit::Act_InsertFromRange: in commit() 300 commitInsertFromRange(edit.OrigLoc, edit.Offset, in commit() 301 edit.InsertFromRangeOffs, edit.Length, in commit() 302 edit.BeforePrev); in commit() [all …]
|
/external/llvm-project/llvm/utils/gn/build/libs/edit/ |
D | BUILD.gn | 1 import("//llvm/utils/gn/build/libs/edit/enable.gni") 4 visibility = [ ":edit" ] 5 libs = [ "edit" ] 8 group("edit") {
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | SharedPrefUtil.java | 51 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in setInitDone() 65 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastContactChangedTimestamp() 79 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastProfileContactChangedTimestamp() 93 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastContactDeletedTimestamp() 101 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in validateDeviceTimestamp() 113 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in resetEABSharedPref() 126 EAB_SHARED_PREF, Context.MODE_PRIVATE).edit(); in saveLastUsedSubscriptionId()
|
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/javassist/src/test/javassist/ |
D | Bench.java | 16 public void edit(MethodCall m) throws CannotCompileException { in testProceed() 24 public void edit(MethodCall m) throws CannotCompileException { in testProceed() 32 public void edit(MethodCall m) throws CannotCompileException { in testProceed() 44 public void edit(MethodCall m) throws CannotCompileException { in testProceed() 70 public void edit(NewExpr m) throws CannotCompileException { 77 public void edit(NewExpr m) throws CannotCompileException { 96 public void edit(MethodCall m) throws CannotCompileException {
|
/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/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/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/perfetto/ui/src/frontend/ |
D | pan_and_zoom_handler.ts | 100 private endSelection: (edit: boolean) => void; 119 endSelection: (edit: boolean) => void, 137 let edit = false; variable 144 this.onSelection(dragStartX, dragStartY, prevX, x, y, edit); 152 edit = this.editSelection(x); 155 if (edit) { 166 this.endSelection(edit);
|
/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/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/angle/doc/ |
D | dEQP-Charts.md | 9 …zUxb048nh5l52zdrAznek/edit#gid=2131794282](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7… 21 …MzUxb048nh5l52zdrAznek/edit#gid=88272764](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7w… 41 …zUxb048nh5l52zdrAznek/edit#gid=1236517289](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7… 53 …zUxb048nh5l52zdrAznek/edit#gid=745187740](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7w… 63 …zUxb048nh5l52zdrAznek/edit#gid=518000832](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7w… 75 …zUxb048nh5l52zdrAznek/edit#gid=1271046732](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7… 95 …zUxb048nh5l52zdrAznek/edit#gid=703637628](https://docs.google.com/spreadsheets/d/1uttk1z8lJ4ZsUY7w…
|