/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
D | TestSharedPreferences.java | 74 public Editor edit() { in edit() 96 private class TestSharedPreferencesEditor implements Editor { 103 public Editor putString(String key, String value) { in putString() 110 public Editor putInt(String key, int value) { in putInt() 117 public Editor putLong(String key, long value) { in putLong() 124 public Editor putFloat(String key, float value) { in putFloat() 131 public Editor putBoolean(String key, boolean value) { in putBoolean() 138 public Editor remove(String key) { in remove() 144 public Editor clear() { in clear() 176 public Editor putStringSet(String key, Set<String> values) { in putStringSet()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
D | DiskLruCacheTest.java | 156 DiskLruCache.Editor creator = cache.edit("k1"); in writeAndReadEntry() 169 DiskLruCache.Editor creator = cache.edit("k1"); in readAndWriteEntryAcrossCacheOpenAndClose() 183 DiskLruCache.Editor creator = cache.edit("k1"); in readAndWriteEntryWithoutProperClose() 197 DiskLruCache.Editor creator = cache.edit("k1"); in journalWithEditAndPublish() 207 DiskLruCache.Editor creator = cache.edit("k1"); in revertedNewFileIsRemoveInJournal() 223 DiskLruCache.Editor creator = cache.edit("k1"); in journalDoesNotIncludeReadOfYetUnpublishedValue() 233 DiskLruCache.Editor k1Creator = cache.edit("k1"); in journalWithEditAndPublishAndRead() 237 DiskLruCache.Editor k2Creator = cache.edit("k2"); in journalWithEditAndPublishAndRead() 248 DiskLruCache.Editor editor = cache.edit("k1"); in cannotOperateOnEditAfterPublish() 256 DiskLruCache.Editor editor = cache.edit("k1"); in cannotOperateOnEditAfterRevert() [all …]
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | SharedPrefUtil.java | 48 SharedPreferences.Editor eabPref = context.getSharedPreferences( in setInitDone() 62 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastContactChangedTimestamp() 76 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastProfileContactChangedTimestamp() 90 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastContactDeletedTimestamp() 98 SharedPreferences.Editor eabPref = context.getSharedPreferences( in validateDeviceTimestamp() 110 SharedPreferences.Editor eabPref = context.getSharedPreferences( in resetEABSharedPref()
|
D | PresencePreferences.java | 33 import android.content.SharedPreferences.Editor; 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/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 95 std::unique_ptr<edit::EditedSource> Editor; member in __anon0681c7a60111::ObjCMigrateASTConsumer 129 Editor.reset(new edit::EditedSource(Context.getSourceManager(), in Initialize() 324 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 326 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 330 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 332 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 336 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 339 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 892 edit::Commit commit(*Editor); in migrateProtocolConformance() 895 Editor->commit(commit); in migrateProtocolConformance() [all …]
|
/external/libbackup/src/com/google/android/libraries/backup/ |
D | PersistentBackupAgentHelper.java | 8 import android.content.SharedPreferences.Editor; 65 Editor backupEditor = getSharedPreferences(RESERVED_SHARED_PREFERENCES, MODE_PRIVATE).edit(); in writeFromPreferenceFilesToBackupFile() 94 String srcFileName, Editor editor, BackupKeyPredicate backupKeyPredicate) { in writeToBackupFile() 119 public static void putSharedPreference(Editor editor, String key, Object value) { in putSharedPreference() 168 Map<String, Editor> editors = new HashMap<>(); in writeFromBackupFileToPreferenceFiles() 181 Editor editor = editors.get(fileName); in writeFromBackupFileToPreferenceFiles() 193 for (Editor editor : editors.values()) { in writeFromBackupFileToPreferenceFiles()
|
/external/v8/src/compiler/ |
D | graph-reducer.h | 69 class Editor { 71 virtual ~Editor() {} in ~Editor() 84 explicit AdvancedReducer(Editor* editor) : editor_(editor) {} in AdvancedReducer() 119 Editor* const editor_; 125 : public NON_EXPORTED_BASE(AdvancedReducer::Editor) { in NON_EXPORTED_BASE() argument
|
/external/tensorflow/tensorflow/docs_src/api_guides/python/ |
D | contrib.graph_editor.md | 1 # Graph Editor (contrib) 4 TensorFlow Graph Editor. 6 The TensorFlow Graph Editor library allows for modification of an existing 14 TensorFlow core library. The Graph Editor library is an attempt to allow for 27 **Important: modifying a graph in-place with the Graph Editor must be done 30 Of course new operations can be appended online but Graph Editor specific 37 * Modify the graph with the Graph Editor. 45 * Modify the graph with the Graph Editor. 55 Most of the functions in the Graph Editor library operate on *sub-graph*. 80 Note that the Graph Editor is meant to manipulate several graphs at the same
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_rstrip.py | 3 from idlelib.idle_test.mock_idle import Editor 8 editor = Editor() 22 editor = Editor()
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_rstrip.py | 3 from idlelib.idle_test.mock_idle import Editor 8 editor = Editor() 22 editor = Editor()
|
/external/clang/lib/Edit/ |
D | Commit.cpp | 38 Commit::Commit(EditedSource &Editor) in Commit() argument 39 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()), in Commit() 40 PPRec(Editor.getPPCondDirectiveRecord()), in Commit() 41 Editor(&Editor), IsCommitable(true) { } in Commit() 290 if (!Editor) in canInsertInOffset() 292 return Editor->canInsertInOffset(OrigLoc, Offs); in canInsertInOffset()
|
D | EditedSource.cpp | 265 EditedSource &Editor; in commit() member 266 CommitRAII(EditedSource &Editor) : Editor(Editor) { in commit() 267 Editor.startingCommit(); in commit() 270 Editor.finishedCommit(); in commit()
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
D | SmaliCodeFragmentFactoryTest.java | 44 import com.intellij.openapi.editor.Editor; 233 Editor editor = createEditor(fragment.getVirtualFile()); in assertCompletionContains() 256 Editor editor = createEditor(fragment.getVirtualFile()); in assertVariableType() 265 protected Editor createEditor(@NotNull VirtualFile file) { in createEditor() 267 Editor editor = FileEditorManager.getInstance(getProject()).openTextEditor( in createEditor()
|
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/ |
D | DiskLruCache.java | 312 entry.currentEditor = new Editor(entry); in readJournalLine() 440 public Editor edit(String key) throws IOException { in edit() 444 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { in edit() 458 Editor editor = new Editor(entry); in edit() 501 private synchronized void completeEdit(Editor editor, boolean success) throws IOException { in completeEdit() 684 public Editor edit() throws IOException { in edit() 705 public final class Editor { class in DiskLruCache 710 private Editor(Entry entry) { in Editor() method in DiskLruCache.Editor 817 private Editor currentEditor;
|
/external/clang/lib/Frontend/Rewrite/ |
D | FixItRewriter.cpp | 34 Editor(SourceMgr, LangOpts), in FixItRewriter() 82 Editor.applyRewrites(Rec); in WriteFixedFiles() 148 edit::Commit commit(Editor); in HandleDiagnostic() 183 if (!Editor.commit(commit)) { in HandleDiagnostic()
|
/external/tensorflow/tensorflow/contrib/graph_editor/ |
D | README.md | 1 # TensorFlow Graph Editor 3 The TensorFlow Graph Editor library allows for modification of an existing
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | DiskLruCache.java | 342 entry.currentEditor = new Editor(entry); in readJournalLine() 445 public Editor edit(String key) throws IOException { in edit() 449 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { in edit() 475 Editor editor = new Editor(entry); in edit() 514 private synchronized void completeEdit(Editor editor, boolean success) throws IOException { in completeEdit() 788 public Editor edit() throws IOException { in edit() 826 public final class Editor { class 831 private Editor(Entry entry) { in Editor() method in Editor 966 private Editor currentEditor;
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | PreferenceManagerTest.java | 5 import android.content.SharedPreferences.Editor; 25 Editor editor = testPrefs.edit(); in shouldProvideDefaultSharedPreferences()
|
/external/clang/include/clang/Edit/ |
D | Commit.h | 51 EditedSource *Editor; variable 59 explicit Commit(EditedSource &Editor); 62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr), in SourceMgr()
|
/external/python/cpython2/Doc/library/ |
D | idle.rst | 8 single: Python Editor 38 IDLE has two main window types, the Shell window and the Editor window. It is 41 have the same top menu as Editor windows but a different default title and 47 File menu (Shell and Editor) 67 Show functions, classes, and methods in the current Editor file in a 97 Edit menu (Shell and Editor) 154 Format menu (Editor window only) 194 Run menu (Editor window only) 201 Check the syntax of the module currently open in the Editor window. If the 205 Editor window. [all …]
|
/external/python/cpython3/Doc/library/ |
D | idle.rst | 12 single: Python Editor 42 IDLE has two main window types, the Shell window and the Editor window. It is 45 have the same top menu as Editor windows but a different default title and 51 File menu (Shell and Editor) 71 Show functions, classes, and methods in the current Editor file in a 101 Edit menu (Shell and Editor) 158 Format menu (Editor window only) 198 Run menu (Editor window only) 205 Check the syntax of the module currently open in the Editor window. If the 209 Editor window. [all …]
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/findUsages/ |
D | SmaliUsageTargetProvider.java | 37 import com.intellij.openapi.editor.Editor; 53 @Nullable @Override public UsageTarget[] getTargets(Editor editor, PsiFile file) { in getTargets()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | MainMenuActivity.java | 221 SharedPreferences.Editor editor = prefs.edit(); in onResume() 226 SharedPreferences.Editor editor = prefs.edit(); in onResume() 260 SharedPreferences.Editor editor = prefs.edit(); in onResume() 265 SharedPreferences.Editor editor = prefs.edit(); in onResume() 347 SharedPreferences.Editor editor = prefs.edit(); in onCreateDialog()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Cache.java | 233 DiskLruCache.Editor editor = null; in put() 254 DiskLruCache.Editor editor = null; in update() 266 private void abortQuietly(DiskLruCache.Editor editor) { in abortQuietly() 424 private final DiskLruCache.Editor editor; 429 public CacheRequestImpl(final DiskLruCache.Editor editor) throws IOException { in CacheRequestImpl() 577 public void writeTo(DiskLruCache.Editor editor) throws IOException { in writeTo()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | PreferencesFacade.java | 21 import android.content.SharedPreferences.Editor; 76 Editor e = p.edit(); in prefPutValue()
|