/external/skia/modules/skplaintexteditor/src/ |
D | editor.cpp | 47 void Editor::markDirty(TextLine* line) { in markDirty() 53 void Editor::setFont(SkFont font) { in setFont() 61 void Editor::setWidth(int w) { in setWidth() 70 Editor::TextPosition Editor::getPosition(SkIPoint xy) { in getPosition() 71 Editor::TextPosition approximatePosition; in getPosition() 91 return Editor::TextPosition{i, j}; in getPosition() 124 SkRect Editor::getLocation(Editor::TextPosition cursor) { in getLocation() 126 cursor = this->move(Editor::Movement::kNowhere, cursor); in getLocation() 146 Editor::TextPosition Editor::insert(TextPosition pos, const char* utf8Text, size_t byteLen) { in insert() 150 pos = this->move(Editor::Movement::kNowhere, pos); in insert() [all …]
|
/external/skia/modules/skplaintexteditor/app/ |
D | editor_application.cpp | 22 using SkPlainTextEditor::Editor; 61 static Editor::Movement convert(skui::Key key) { in convert() 63 case skui::Key::kLeft: return Editor::Movement::kLeft; in convert() 64 case skui::Key::kRight: return Editor::Movement::kRight; in convert() 65 case skui::Key::kUp: return Editor::Movement::kUp; in convert() 66 case skui::Key::kDown: return Editor::Movement::kDown; in convert() 67 case skui::Key::kHome: return Editor::Movement::kHome; in convert() 68 case skui::Key::kEnd: return Editor::Movement::kEnd; in convert() 69 default: return Editor::Movement::kNowhere; in convert() 94 Editor fEditor; [all …]
|
/external/skia/modules/skplaintexteditor/include/ |
D | editor.h | 24 class Editor { 73 TextPosition move(Editor::Movement move, Editor::TextPosition pos) const; 128 static inline bool operator==(const SkPlainTextEditor::Editor::TextPosition& u, 129 const SkPlainTextEditor::Editor::TextPosition& v) { 132 static inline bool operator!=(const SkPlainTextEditor::Editor::TextPosition& u, 133 … const SkPlainTextEditor::Editor::TextPosition& v) { return !(u == v); } 135 static inline bool operator<(const SkPlainTextEditor::Editor::TextPosition& u, 136 const SkPlainTextEditor::Editor::TextPosition& v) {
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | InMemorySharedPreferences.java | 108 public SharedPreferences.Editor edit() { in edit() 125 private class InMemoryEditor implements SharedPreferences.Editor { 133 public SharedPreferences.Editor putString(String key, String value) { in putString() 142 public SharedPreferences.Editor putStringSet(String key, Set<String> values) { in putStringSet() 151 public SharedPreferences.Editor putInt(String key, int value) { in putInt() 160 public SharedPreferences.Editor putLong(String key, long value) { in putLong() 169 public SharedPreferences.Editor putFloat(String key, float value) { in putFloat() 178 public SharedPreferences.Editor putBoolean(String key, boolean value) { in putBoolean() 187 public SharedPreferences.Editor remove(String key) { in remove() 197 public SharedPreferences.Editor clear() { in clear()
|
/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 | 50 SharedPreferences.Editor eabPref = context.getSharedPreferences( in setInitDone() 64 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastContactChangedTimestamp() 78 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastProfileContactChangedTimestamp() 92 SharedPreferences.Editor eabPref = context.getSharedPreferences( in saveLastContactDeletedTimestamp() 100 SharedPreferences.Editor eabPref = context.getSharedPreferences( in validateDeviceTimestamp() 112 SharedPreferences.Editor eabPref = context.getSharedPreferences( in resetEABSharedPref() 125 SharedPreferences.Editor lastUsedSubIdPref = context.getSharedPreferences( in saveLastUsedSubscriptionId()
|
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/icing/icing/index/ |
D | index_test.cc | 176 Index::Editor edit = index_->Edit( in TEST_F() 200 Index::Editor edit = index_->Edit( in TEST_F() 226 Index::Editor edit = index_->Edit( in TEST_F() 240 Index::Editor edit = index_->Edit( in TEST_F() 256 Index::Editor edit = index_->Edit( in TEST_F() 271 Index::Editor edit = index_->Edit( in TEST_F() 288 Index::Editor edit = index_->Edit( in TEST_F() 302 Index::Editor edit = index_->Edit( in TEST_F() 318 Index::Editor edit = index_->Edit( in TEST_F() 344 Index::Editor edit = index_->Edit( in TEST_F() [all …]
|
/external/skia/modules/skplaintexteditor/ |
D | README.md | 1 # Editor # chapter 3 This is an experimental Editor layer that abstracts out SkShaper text layeout 4 for easy embedding into an application. The Editor layer is agnostic about the 13 | |Editor |
|
/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/llvm-project/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 98 std::unique_ptr<edit::EditedSource> Editor; member in __anonb70a21be0111::ObjCMigrateASTConsumer 134 Editor.reset(new edit::EditedSource(Context.getSourceManager(), in Initialize() 327 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 329 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 333 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 335 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 339 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 342 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 885 edit::Commit commit(*Editor); in migrateProtocolConformance() 888 Editor->commit(commit); in migrateProtocolConformance() [all …]
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 95 std::unique_ptr<edit::EditedSource> Editor; member in __anon541d4ad00111::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/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/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()
|
/external/llvm-project/clang/lib/Edit/ |
D | Commit.cpp | 43 Commit::Commit(EditedSource &Editor) in Commit() argument 44 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()), in Commit() 45 PPRec(Editor.getPPCondDirectiveRecord()), in Commit() 46 Editor(&Editor) {} in Commit() 291 if (!Editor) in canInsertInOffset() 293 return Editor->canInsertInOffset(OrigLoc, Offs); in canInsertInOffset()
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/ios/ |
D | libgrpc.a.meta | 16 Exclude Editor: 1 30 Editor: Editor
|
D | libgrpc_csharp_ext.a.meta | 19 Exclude Editor: 1 41 Editor: Editor
|
/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/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/android/arm64-v8a/ |
D | libgrpc_csharp_ext.so.meta | 17 Exclude Editor: 1 37 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/android/armeabi-v7a/ |
D | libgrpc_csharp_ext.so.meta | 17 Exclude Editor: 1 37 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/android/x86/ |
D | libgrpc_csharp_ext.so.meta | 17 Exclude Editor: 1 37 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/linux/x86/ |
D | libgrpc_csharp_ext.so.meta | 19 Exclude Editor: 0 41 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/win/x86/ |
D | grpc_csharp_ext.dll.meta | 19 Exclude Editor: 0 41 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/osx/x86/ |
D | grpc_csharp_ext.bundle.meta | 19 Exclude Editor: 0 41 Editor: Editor
|
/external/grpc-grpc/src/csharp/unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/linux/x64/ |
D | libgrpc_csharp_ext.so.meta | 19 Exclude Editor: 0 41 Editor: Editor
|