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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 33 #include "core/editing/Editor.h"
163 document->frame()->editor()->updateMarkersForWordsAffectedByEditing(isSpaceOrNewline(text[0]));
239 RefPtr<CompositeEditCommand> lastEditCommand = frame->editor()->lastEditCommand();
299 if (!frame->editor()->isContinuousSpellCheckingEnabled())
302 frame->editor()->spellChecker()->cancelCheck();
314 frame->editor()->markMisspellingsAfterTypingToWord(p1, endingSelection());
328 frame->editor()->appliedEditing(this);
410 frame->editor()->updateMarkersForWordsAffectedByEditing(false);
497 frame->editor()->addToKillRing(selectionToDelete.toNormalizedRange().get(), false);
514 frame->editor()->updateMarkersForWordsAffectedByEditing(false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
scriptsPanel.css 65 #scripts-editor-toolbar {
168 #scripts-editor-container-tabbed-pane .tabbed-pane-header {
172 #scripts-editor-container-tabbed-pane .tabbed-pane-header-contents {
177 #scripts-editor-container-tabbed-pane .tabbed-pane-header-tab {
253 .editor-container-unsaved-committed-changes-icon {
  /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 64 * entry may have only one editor at one time; if a value is not available to be
74 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
75 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
306 entry.currentEditor = new Editor(entry);
442 * Returns an editor for the entry named {@code key}, or null if another
445 public Editor edit(String key) throws IOException {
449 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
464 Editor editor = new Editor(entry) local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 197 SharedPreferences.Editor editor = prefs.edit(); local
198 editor.putBoolean(Timers.NOTIF_APP_OPEN, true);
199 editor.apply();
212 SharedPreferences.Editor editor = prefs.edit(); local
213 editor.putBoolean(Timers.NOTIF_APP_OPEN, false);
214 editor.apply();
322 SharedPreferences.Editor editor = prefs.edit() 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...]
  /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...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 903 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Frame.h 48 class Editor;
97 Editor* editor() const;
186 OwnPtr<Editor> m_editor;
237 inline Editor* Frame::editor() const function in class:WebCore::Frame