HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 301 - 325 of 537) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/classfile/editor/
ElementValuesEditor.java 21 package proguard.classfile.editor;
VariableRemapper.java 21 package proguard.classfile.editor;
65 // Initially, the code attribute editor doesn't contain any changes.
71 // Apply the code atribute editor.
  /external/proguard/src/proguard/optimize/
DuplicateInitializerInvocationFixer.java 28 import proguard.classfile.editor.CodeAttributeEditor;
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 27 #import "Editor.h"
33 #import "Editor.h"
44 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
49 void Editor::showFontPanel()
54 void Editor::showStylesPanel()
59 void Editor::showColorPanel()
64 void Editor::pasteWithPasteboard(Pasteboard* pasteboard, bool allowPlainText)
69 m_frame->editor()->client()->setInsertionPasteboard([NSPasteboard generalPasteboard]);
89 m_frame->editor()->client()->setInsertionPasteboard(nil);
92 NSDictionary* Editor::fontAttributesForSelectionStart() cons
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTextControlMultiLine.cpp 60 frame->editor()->textDidChangeInTextArea(textArea);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebContextMenuClient.cpp 113 String searchString = frame->editor()->selectedText();
  /packages/apps/Contacts/src/com/android/contacts/editor/
BaseRawContactEditorView.java 17 package com.android.contacts.editor;
38 * Base view that provides common code for the editor interaction for a specific
111 * @return the RawContact ID that this editor is editing.
SelectAccountDialogFragment.java 17 package com.android.contacts.editor;
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 23 import android.content.SharedPreferences.Editor;
659 Editor editor = mPrefs.edit(); local
661 editor.remove(getPersistentSelectionKey());
663 editor.putString(getPersistentSelectionKey(), contactUri.toString());
665 editor.apply();
  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 633 SharedPreferences.Editor editor = local
636 editor.remove(mDevice.getAddress());
638 editor.putInt(mDevice.getAddress(), permissionChoice);
640 editor.commit();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SettingsValues.java 350 final SharedPreferences.Editor editor = prefs.edit(); local
351 editor.remove(PREF_SUPPRESS_LANGUAGE_SWITCH_KEY);
352 editor.putBoolean(Settings.PREF_SHOW_LANGUAGE_SWITCH_KEY, !suppressLanguageSwitchKey);
353 editor.apply();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 160 // editor.
165 // we'll make sure that that editor has the same sourceViewer such that
168 AndroidXmlEditor editor = AndroidXmlEditor.fromTextViewer(sourceViewer); local
169 if (editor != null) {
170 IFile file = editor.getInputFile();
188 IProject project = editor.getProject();
386 + "and opens it in the editor.";
  /external/mksh/src/
histrap.c 78 char *editor = NULL; local
102 editor = alloc(len + 4, ATEMP);
103 memcpy(editor, p, len);
104 memcpy(editor + len, " $_", 4);
154 if (editor || lflag || nflag || rflag) {
181 if (editor && (lflag || nflag)) {
247 /* Run editor on selected lines, then run resulting commands */
272 ret = command(editor ? editor : "${FCEDIT:-/bin/ed} $_", 0);
    [all...]
  /external/webkit/Source/WebCore/page/
Frame.h 34 #include "Editor.h"
112 Editor* editor() const;
235 mutable Editor m_editor;
315 inline Editor* Frame::editor() const function in class:WebCore::Frame
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 29 #include "Editor.h"
185 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
206 if (frame->editor()->insertText(keyEvent->text(), event))
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 37 import com.android.contacts.editor.ContactEditorFragment;
38 import com.android.contacts.editor.ContactEditorFragment.SaveMode;
55 * (instead of launching a new view intent) after the editor changes have been
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutWizard.java 49 public ChangeLayoutWizard(ChangeLayoutRefactoring ref, LayoutEditorDelegate editor) {
50 super(ref, editor);
ChangeViewWizard.java 47 public ChangeViewWizard(ChangeViewRefactoring ref, LayoutEditorDelegate editor) {
48 super(ref, editor);
UnwrapRefactoring.java 77 UnwrapRefactoring(List<Element> selectedElements, LayoutEditorDelegate editor) {
78 super(selectedElements, editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java 57 public ApplicationToggle(Composite body, FormToolkit toolkit, ManifestEditor editor,
59 super(body, toolkit, editor, applicationUiNode,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiListAttributeNode.java 62 * As most other parts of the android manifest editor, this assumes the
160 AndroidXmlEditor editor = uiNode.getEditor(); local
161 AndroidTargetData data = editor.getTargetData();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 74 * TODO: Add support for performing previews without an associated graphical editor,
75 * such as previewing icons from the manifest form editor; just pick default
79 * @param editor a graphical editor. This is currently needed in order to provide
82 public ResourcePreviewHelper(TrayDialog trayDialog, GraphicalEditorPart editor) {
84 this.mEditor = editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 563 for (IEditorPart editor : editors) {
564 if (editor instanceof StructuredTextEditor) {
565 StructuredTextEditor ste = (StructuredTextEditor) editor;
566 part.setActiveEditor(editor);
669 * Returns the current configuration, if the associated UI editor has been initialized
675 IEditorPart editor = getEditor(); local
676 if (editor != null) {
677 LayoutEditorDelegate delegate = LayoutEditorDelegate.fromEditor(editor);
694 IEditorInput editorInput = editor.getEditorInput();
711 for (IEditorReference reference : editor.getSite().getPage().getEditorReferences())
732 IEditorPart editor = getEditor(); local
758 IEditorPart editor = getEditor(); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 283 SharedPreferences.Editor editor = prefs.edit(); local
284 editor.putBoolean(key, value);
285 editor.apply();
290 SharedPreferences.Editor editor = prefs.edit(); local
291 editor.putInt(key, value);
292 editor.apply();
303 SharedPreferences.Editor editor = prefs.edit() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 106 * {@link LayoutCanvas} implements the "Canvas" control. The editor part
124 /** The layout editor that uses this layout canvas. */
185 /** Undo action: delegates to the text editor */
188 /** Redo action: delegates to the text editor */
306 // Check editor state:
340 // TODO: In another CL we should use EasyMock/objgen to provide an editor.
349 // Get the outline associated with this editor, if any and of the right type.
684 // when the editor is being initialized
1309 ITextEditor editor = mEditorDelegate.getEditor().getStructuredTextEditor(); local
    [all...]

Completed in 1854 milliseconds

<<11121314151617181920>>