HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 226 - 250 of 566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/optimize/peephole/
GotoReturnReplacer.java 25 import proguard.classfile.editor.CodeAttributeEditor;
46 * @param codeAttributeEditor a code editor that can be used for
57 * @param codeAttributeEditor a code editor that can be used for
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.
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionCommand.cpp 64 document()->frame()->editor()->unappliedSpellCorrection(startingSelection(), m_corrected, m_correction);
  /external/webkit/Source/WebCore/platform/wx/
PasteboardWx.cpp 30 #include "Editor.h"
56 wxTheClipboard->SetData( new wxTextDataObject(frame->editor()->selectedText()) );
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebContextMenuClient.cpp 73 String searchString = frame->editor()->selectedText();
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
Android.mk 43 $(TOP)/frameworks/native/include/media/editor \
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 319 SharedPreferences.Editor editor = mStorage.edit(); local
320 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
321 editor.putInt(PREFIX + "errorCount",
323 SharedPreferencesCompat.apply(editor);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorUiUtils.java 17 package com.android.contacts.editor;
31 * Utility methods for creating contact editor.
35 // Maps DataKind.mimeType to editor view layouts.
SplitContactConfirmationDialogFragment.java 17 package com.android.contacts.editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
StringXmlPropertyDialog.java 24 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyDialog;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
CopyCutAction.java 63 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit,
65 this(editor, clipboard, xmlCommit, toList(selected), performCut);
75 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit,
78 mEditor = editor;
130 // directly from the editor, try to fall back on a direct XML serialization
162 /** Get the data directly from the editor. */
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 88 // Map selectors into Editor command names.
89 // This is not needed for any selectors that have the same name as the Editor command.
114 // No need to capitalize the command name since Editor command names are not case sensitive.
138 ASSERT(!frame->editor()->hasComposition());
140 if (!frame->editor()->canEdit())
145 eventWasHandled |= frame->editor()->insertText(commands[i].text, event);
147 Editor::Command command = frame->editor()->command(commandNameForSelectorName(commands[i].commandName));
197 // Are there commands that could just cause text insertion if executed via Editor?
203 if (frame->editor()->command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 326 if (!frame || !frame->editor()->canEdit())
328 frame->editor()->confirmComposition(compositionString);
334 if (!frame || !frame->editor()->canEdit())
336 frame->editor()->setComposition(compositionString, underlines, cursorPosition, 0);
343 if (RefPtr<Range> range = frame->editor()->hasComposition() ? frame->editor()->compositionRange() : frame->selection()->selection().toNormalizedRange()) {
347 rect = frame->editor()->firstRectForRange(tempRange.get());
  /frameworks/base/media/java/android/media/videoeditor/
MediaVideoItem.java 77 * @param editor The video editor reference
84 public MediaVideoItem(VideoEditor editor, String mediaItemId, String filename,
86 this(editor, mediaItemId, filename, renderingMode, 0, END_OF_FILE, 100, false, null);
92 * @param editor The video editor reference
107 MediaVideoItem(VideoEditor editor, String mediaItemId, String filename,
110 super(editor, mediaItemId, filename, renderingMode);
112 if (editor instanceof VideoEditorImpl) {
113 mMANativeHelper = ((VideoEditorImpl)editor).getNativeContext()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 73 * Represents an XML node that can be modified by the user interface in the XML editor.
161 * Also resets the attached XML node, document, editor if any.
561 * The editor must always be set on the root node. This method takes care of that.
563 * @param editor The editor to associate this node with.
565 public void setEditor(AndroidXmlEditor editor) {
567 mEditor = editor;
569 mUiParent.setEditor(editor);
859 AndroidXmlEditor editor = getEditor(); local
1000 AndroidXmlEditor editor = getEditor(); local
1181 AndroidXmlEditor editor = getEditor(); local
1247 AndroidXmlEditor editor = getEditor(); local
2018 AndroidXmlEditor editor = getEditor(); local
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 66 * entry may have only one editor at one time; if a value is not available to be
76 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
77 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
287 entry.currentEditor = new Editor(entry);
395 * Returns an editor for the entry named {@code key}, or null if another
398 public Editor edit(String key) throws IOException {
402 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
417 Editor editor = new Editor(entry) local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 65 * entry may have only one editor at one time; if a value is not available to be
75 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
76 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
292 entry.currentEditor = new Editor(entry);
408 * Returns an editor for the entry named {@code key}, or null if another
411 public Editor edit(String key) throws IOException {
415 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
430 Editor editor = new Editor(entry) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 273 * Returns the current editor (the currently visible and active editor), or null if
276 * @return the current editor, or null
350 * Returns the current text editor (the currently visible and active editor), or null
353 * @return the current text editor, or null
356 IEditorPart editor = getActiveEditor(); local
357 if (editor != null) {
358 if (editor instanceof ITextEditor) {
359 return (ITextEditor) editor;
390 IEditorPart editor = reference.getEditor(restore); local
434 IEditorPart editor = getActiveEditor(); local
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 37 #include "Editor.h"
216 if (!frame->editor()->ignoreCompositionSelectionChange())
245 if (m_inUndoRedo || (frame && !frame->editor()->lastEditCommand() /* HACK!! Don't recreate undos */))
441 // WebKit doesn't have enough information about mode to decide how commands that just insert text if executed via Editor should be treated,
444 if (cmd && frame->editor()->command(cmd).isTextInsertion()
456 if (frame->editor()->command(commandName).execute()) // Event handled.
484 frame->editor()->insertText(kevent->text(), event);
517 frame->editor()->command(commandName).execute();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 145 if (!frame->editor()->canEdit())
148 frame->editor()->command("selectWord").execute();
150 NSString *selectedString = frame->displayStringModifiedByEncoding(frame->editor()->selectedText());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java 51 import org.eclipse.ui.forms.editor.FormEditor;
52 import org.eclipse.ui.forms.editor.IFormPage;
68 * Multi-page form editor for Android text files.
73 * source editor. This can be a no-op if desired.
84 /** Page id of the XML source editor, used for switching tabs programmatically */
90 /** Page index of the text editor (always the last page) */
93 /** The text editor */
102 * Creates a form editor.
119 * as well as text editor page) have been created. This give a chance to deriving
141 * Creates the pages of the multi-page editor
378 IEditorPart editor = getEditor(mTextPageIndex); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
user.py 99 editor = os.environ.get("EDITOR") or "vi"
100 args = shlex.split(editor)
106 print "Instead of using Xcode.app, consider using EDITOR=\"xed --wait\"."
113 print "Using editor in the CHANGE_LOG_EDIT_APPLICATION environment variable."
114 print "Please quit the editor application when done editing."
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 41 private Editor mEditor;
44 public void setEditor(int editor) {
45 mEditorID = editor;

Completed in 4088 milliseconds

1 2 3 4 5 6 7 8 91011>>