Home
last modified time | relevance | path

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

12345678910>>...184

/external/llvm-project/flang/runtime/
Dedit-output.cpp16 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 …]
Dedit-input.cpp19 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 …]
Ddescriptor-io.h41 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 …]
Dformat-implementation.h375 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 …]
Dio-stmt.cpp559 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/
Dindex_test.cc176 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/
Dfilelist.py30 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/
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 …]
/external/javassist/src/main/javassist/expr/
DExprEditor.java103 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/
Dformat.cpp70 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/
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/llvm-project/clang/lib/Edit/
DEditedSource.cpp28 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/
DBUILD.gn1 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/
DSharedPrefUtil.java51 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()
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/javassist/src/test/javassist/
DBench.java16 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/
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.java265 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/
Dpan_and_zoom_handler.ts100 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/
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/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSharedPreferencesTest.java40 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/
DdEQP-Charts.md9 …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…

12345678910>>...184