HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 101 - 125 of 246) sorted by null

1 2 3 45 6 7 8 910

  /external/proguard/src/proguard/optimize/peephole/
InstructionSequencesReplacer.java 24 import proguard.classfile.editor.CodeAttributeEditor;
53 * @param codeAttributeEditor a code editor that can be used for
80 * @param codeAttributeEditor a code editor that can be used for
110 * @param codeAttributeEditor a code editor that can be used for
NopRemover.java 25 import proguard.classfile.editor.CodeAttributeEditor;
45 * @param codeAttributeEditor a code editor that can be used for
56 * @param codeAttributeEditor a code editor that can be used for
PeepholeOptimizer.java 26 import proguard.classfile.editor.CodeAttributeEditor;
33 * (optional) branch target finder and code attribute editor.
48 * @param codeAttributeEditor the code attribute editor that will be reset
52 * attribute editor.
65 * @param codeAttributeEditor the code attribute editor that will be reset
69 * attribute editor.
94 // Set up the code attribute editor.
UnreachableCodeRemover.java 26 import proguard.classfile.editor.CodeAttributeEditor;
VariableShrinker.java 26 import proguard.classfile.editor.VariableEditor;
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 290 SharedPreferences.Editor editor = mStorage.edit(); local
291 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
292 editor.putInt(PREFIX + "errorCount",
294 SharedPreferencesCompat.apply(editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
CopyCutAction.java 62 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit,
64 this(editor, clipboard, xmlCommit, toList(selected), performCut);
74 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit,
77 mEditor = editor;
129 // directly from the editor, try to fall back on a direct XML serialization
161 /** Get the data directly from the editor. */
PasteAction.java 46 public PasteAction(AndroidXmlEditor editor, Clipboard clipboard, UiElementNode ui_node) {
48 mEditor = editor;
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 29 #include "Editor.h"
199 if (targetFrame->editor()->ignoreCompositionSelectionChange())
213 if (!targetFrame->editor()->hasComposition())
218 if (!targetFrame->editor()->getCompositionSelection(start, end)) {
221 targetFrame->editor()->confirmCompositionWithoutDisturbingSelection();
453 // Don't allow editor commands or text insertion for nodes that
455 if (!frame->editor()->canEdit() && !(frame->settings() && frame->settings()->caretBrowsingEnabled()))
460 Editor::Command command = frame->editor()->command(editorCommandString);
462 // On editor commands from key down events, we only want to let the event bubble up t
    [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 84 #include "Editor.h"
931 frame()->editor()->insertText(text, 0);
937 Editor* editor = frame()->editor(); local
939 editor->confirmComposition(text);
942 editor->setComposition(text, decorations, location, length);
947 frame()->editor()->confirmCompositionWithoutDisturbingSelection();
952 return frame()->editor()->hasComposition();
957 return frame()->editor()->compositionRange()
983 Editor* editor = frame()->editor(); local
    [all...]
  /external/webkit/WebCore/page/
Frame.cpp 362 Editor* Frame::editor() const function in class:WebCore::Frame
848 return editor()->client()->shouldChangeSelectedRange(oldSelection.toNormalizedRange().get(), newSelection.toNormalizedRange().get(),
854 return editor()->client()->shouldDeleteRange(selection.toNormalizedRange().get());
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp 64 #include "Editor.h"
267 // Lookup table mapping QWebPage::WebActions to the associated Editor commands
354 // Lookup the appropriate editor command to use for WebAction \a action
584 WebCore::Editor *editor = page->focusController()->focusedOrMainFrame()->editor(); local
609 case QWebPage::SelectAll: // editor command is always enabled
614 enabled = editor->canEdit();
618 // see if it's an editor command
621 // if it's an editor command, let it's logic determine stat
1239 WebCore::Editor *editor = frame->editor(); local
1301 WebCore::Editor* editor = frame->editor(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationAttributesPart.java 48 public ApplicationAttributesPart(Composite body, FormToolkit toolkit, ManifestEditor editor,
50 super(body, toolkit, editor, applicationUiNode,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 45 /** A reference to the container editor */
52 public UiElementPart(Composite body, FormToolkit toolkit, ManifestEditor editor,
56 mEditor = editor;
69 * Returns the Editor associated with this part.
264 * wizard or a multi-page editor and the user is about to leave
  /development/samples/SkeletonApp/src/com/example/android/skeletonapp/
SkeletonActivity.java 52 // Find the text editor view inside the layout, because we
54 mEditor = (EditText) findViewById(R.id.editor);
  /external/proguard/src/proguard/classfile/editor/
AnnotationAdder.java 21 package proguard.classfile.editor;
ConstantPoolSorter.java 21 package proguard.classfile.editor;
VariableCleaner.java 21 package proguard.classfile.editor;
  /external/proguard/src/proguard/optimize/
MemberDescriptorSpecializer.java 24 import proguard.classfile.editor.ClassReferenceFixer;
ParameterShrinker.java 26 import proguard.classfile.editor.*;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchShortcut.java 81 public void launch(IEditorPart editor, String mode) {
  /external/webkit/WebKit/android/jni/
WebCoreJniOnLoad.cpp 190 EditorClientAndroid* editor = new EditorClientAndroid; local
193 editor,
198 editor->setPage(page);
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 125 SharedPreferences.Editor editor = prefs.edit();
126 editor.putInt(PREF_KEY, val+1);
127 editor.commit();
  /packages/apps/Contacts/src/com/android/contacts/
DialtactsActivity.java 93 final SharedPreferences.Editor editor = local
96 editor.putBoolean(PREF_FAVORITES_AS_CONTACTS, currentTabIndex == TAB_INDEX_FAVORITES);
99 editor.apply();
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEventRedirector.java 199 SharedPreferences.Editor editor = mManager.getSharedPreferences().edit(); local
200 editor.putLong(LocalBluetoothManager.SHARED_PREFERENCES_KEY_DISCOVERING_TIMESTAMP,
202 editor.apply();

Completed in 1170 milliseconds

1 2 3 45 6 7 8 910