HomeSort by relevance Sort by last modified time
    Searched defs:Editor (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/python/cpython2/Lib/idlelib/idle_test/
mock_idle.py 35 class Editor(object):
test_formatparagraph.py 160 """Test the reformat_paragraph function without the editor window."""
186 """Test the reformat_comment function without the editor window."""
213 instance = fp.FormatParagraph('editor')
214 self.assertEqual(instance.editwin, 'editor')
220 # a mock Editor with .text and .get_selection_indices. The text must
238 class Editor:
272 editor = Editor(root=cls.root)
273 cls.text = editor.text.text # Test code does not need the wrapper.
274 cls.formatter = fp.FormatParagraph(editor).format_paragraph_even
    [all...]
  /external/v8/src/compiler/
graph-reducer.h 69 class Editor {
71 virtual ~Editor() {}
84 explicit AdvancedReducer(Editor* editor) : editor_(editor) {}
119 Editor* const editor_;
125 : public NON_EXPORTED_BASE(AdvancedReducer::Editor) {
  /external/skia/src/core/
SkPathRef.cpp 15 SkPathRef::Editor::Editor(sk_sp<SkPathRef>* pathRef,
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 17 package com.android.notificationstudio.editor;
34 public interface Editor {
38 private static final Map<Integer, Editor> EDITORS = editors();
41 private static Map<Integer, Editor> editors() {
42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>();
69 Editor editor = EDITORS.get(item.getType()); local
70 if (editor == null)
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable()
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /frameworks/base/core/java/android/content/
SharedPreferences.java 28 * Modifications to the preferences must go through an {@link Editor} object
65 * object. All changes you make in an editor are batched, and not copied
69 public interface Editor {
71 * Set a String value in the preferences editor, to be written back once
79 * @return Returns a reference to the same Editor object, so you can
82 Editor putString(String key, @Nullable String value);
85 * Set a set of String values in the preferences editor, to be written
92 * @return Returns a reference to the same Editor object, so you can
95 Editor putStringSet(String key, @Nullable Set<String> values);
98 * Set an int value in the preferences editor, to be written back onc
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 17 package com.android.contacts.editor;
29 public interface Editor {
33 * Called when the given {@link Editor} is requested to be deleted by the user.
35 public void onDeleteRequested(Editor editor);
38 * Called when the given {@link Editor} has a request, for example it
49 // The editor has switched between different representations of the same
53 // Focus has changed inside the editor.
58 * Returns whether or not all the fields are empty in this {@link Editor}.
63 * Prepares this editor for the given {@link ValuesDelta}, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 64 edit::EditedSource Editor;
  /external/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),
  /packages/apps/Dialer/java/com/android/dialer/common/
PerAccountSharedPreferences.java 52 public class Editor {
54 private final SharedPreferences.Editor editor; field in class:PerAccountSharedPreferences.Editor
56 private Editor() {
57 editor = preferences.edit();
61 editor.apply();
64 public Editor putBoolean(String key, boolean value) {
65 editor.putBoolean(getKey(key), value);
69 public Editor putFloat(String key, float value) {
70 editor.putFloat(getKey(key), value)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/
VoicemailStatus.java 32 public static class Editor {
39 private Editor(Context context, PhoneAccountHandle phoneAccountHandle) {
45 "VoicemailStatus.Editor created with null phone account, status will"
55 public Editor setType(String type) {
60 public Editor setConfigurationState(int configurationState) {
65 public Editor setDataChannelState(int dataChannelState) {
70 public Editor setNotificationChannelState(int notificationChannelState) {
75 public Editor setQuota(int occupied, int total) {
87 * Apply the changes to the {@link VoicemailStatus} {@link #Editor}.
118 * A voicemail status editor that the decision of whether to actually write to the database can b
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/
VisualVoicemailPreferences.java 46 public class Editor {
48 private final SharedPreferences.Editor mEditor;
50 private Editor() {
58 public Editor putBoolean(String key, boolean value) {
64 public Editor putFloat(String key, float value) {
69 public Editor putInt(String key, int value) {
75 public Editor putLong(String key, long value) {
80 public Editor putString(String key, String value) {
86 public Editor putStringSet(String key, Set<String> value) {
92 public Editor edit()
    [all...]
VisualVoicemailSmsFilterConfig.java 50 new Editor(context, callingPackage, subId)
60 new Editor(context, callingPackage, subId)
111 private static class Editor {
113 private final SharedPreferences.Editor mPrefsEditor;
116 public Editor(Context context, String packageName, int subId) {
121 private Editor setInt(String key, int value) {
126 private Editor setString(String key, String value) {
131 private Editor setBoolean(String key, boolean value) {
136 private Editor setStringList(String key, List<String> value) {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),

Completed in 2495 milliseconds

1 2 3 4