HomeSort by relevance Sort by last modified time
    Searched defs:editor (Results 276 - 300 of 335) sorted by null

<<11121314

  /packages/apps/Camera/src/com/android/camera/
VideoModule.java 28 import android.content.SharedPreferences.Editor;
749 ComboPreferences.Editor editor = mPreferences.edit(); local
750 editor.putString(CameraSettings.KEY_VIDEO_EFFECT,
752 editor.apply();
2620 Editor editor = mPreferences.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
LabeledEditorView.java 17 package com.android.contacts.editor;
64 public abstract class LabeledEditorView extends LinearLayout implements Editor, DialogShowingView {
155 // the last {@link Editor} in the section).
169 // safe to remove views (in case the user requests to delete this editor).
340 * Prepare this editor using the given {@link DataKind} for defining
  /packages/apps/Gallery2/src/com/android/camera/
PhotoModule.java 27 import android.content.SharedPreferences.Editor;
605 Editor editor = mPreferences.edit(); local
606 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
607 editor.apply();
2006 Editor editor = mPreferences.edit(); local
    [all...]
VideoModule.java 28 import android.content.SharedPreferences.Editor;
694 ComboPreferences.Editor editor = mPreferences.edit(); local
695 editor.putString(CameraSettings.KEY_VIDEO_EFFECT,
697 editor.apply();
2281 Editor editor = mPreferences.edit(); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 37 import android.content.SharedPreferences.Editor;
331 Editor editor = mPreferences.edit(); local
332 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
333 editor.apply();
2306 Editor editor = mPreferences.edit(); local
    [all...]
VideoCamera.java 37 import android.content.SharedPreferences.Editor;
785 ComboPreferences.Editor editor = mPreferences.edit(); local
786 editor.putString(CameraSettings.KEY_VIDEO_EFFECT,
788 editor.apply();
2472 Editor editor = mPreferences.edit(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 367 ITextEditor editor = AdtUtils.getActiveTextEditor(); local
368 if (editor != null) {
369 editor.setHighlightRange(replaceEdit.getOffset(), replaceEdit.getText().length(),
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 80 import org.eclipse.ui.forms.editor.IFormPage;
97 * Multi-page form editor for /res/layout XML files.
120 * Old standalone-editor ID.
132 /** Implementation of the {@link IContentOutlinePage} for this editor */
135 /** The XML editor outline */
142 * Temporary flag set by the editor caret listener which is used to cause
143 * the next getAdapter(IContentOutlinePage.class) call to return the editor
149 /** Custom implementation of {@link IPropertySheetPage} for this editor */
164 * Checks whether an editor part is an instance of {@link CommonXmlEditor}
167 * @param editorPart An editor part. Can be null
621 CommonXmlEditor editor = getEditor(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 74 * editor's configuration chooser
210 GraphicalEditorPart editor = mPalette.getEditor(); local
211 LayoutEditorDelegate layoutEditorDelegate = editor.getEditorDelegate();
212 LayoutLibrary layoutLibrary = editor.getLayoutLibrary();
243 model.setUnknownDescriptorProvider(editor.getModel().getUnknownDescriptorProvider());
266 session = RenderService.create(editor)
439 GraphicalEditorPart editor = mPalette.getEditor(); local
440 ResourceResolver resources = editor.getResourceResolver();
442 BufferedImage image = RenderService.create(editor)
SelectionManager.java 82 * The {@link SelectionManager} manages the selection in the canvas editor.
830 LayoutEditorDelegate editor = mCanvas.getEditorDelegate(); local
831 if (editor != null) {
836 LayoutActionBar layoutActionBar = editor.getGraphicalEditor().getLayoutActionBar();
    [all...]
LayoutCanvas.java 110 * {@link LayoutCanvas} implements the "Canvas" control. The editor part
128 /** The layout editor that uses this layout canvas. */
189 /** Undo action: delegates to the text editor */
192 /** Redo action: delegates to the text editor */
252 * @param editorDelegate the associated editor delegate
322 // Check editor state:
354 // TODO: In another CL we should use EasyMock/objgen to provide an editor.
363 // Get the outline associated with this editor, if any and of the right type.
770 // when the editor is being initialized
1422 ITextEditor editor = mEditorDelegate.getEditor().getStructuredTextEditor(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector;
56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
193 PropertyEditor editor = XmlPropertyEditor.INSTANCE; local
198 editor = BooleanXmlPropertyEditor.INSTANCE;
204 // since the editing experience with the enum property editor is
205 // more limited than the text editor plus enum completer anyway
211 XmlProperty property = new XmlProperty(editor, this, node, descriptor);
714 "This dialog is shown instead of an inline text editor as a\n" +
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 168 /** The editor. Non-null when invoked from {@link ExtractStringAction}. Null otherwise. */
273 * @param editor The editor.
276 public ExtractStringRefactoring(IFile file, IEditorPart editor, ITextSelection selection) {
279 mEditor = editor;
531 * originating from an Android Layout Editor. We rely on some internal properties of the
532 * Structured XML editor to retrieve file content to avoid parsing it again. We also rely
547 status.addFatalError("Only the Android XML Editor is currently supported.");
551 AndroidXmlEditor editor = (AndroidXmlEditor) mEditor; local
558 smodel = editor.getModelForRead()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 176 * @param editor the associated layout editor
182 @NonNull GraphicalEditorPart editor,
184 IProject project = editor.getProject();
185 Shell parent = editor.getCanvasControl().getShell();
186 AndroidTargetData targetData = editor.getEditorDelegate().getEditor().getTargetData();
194 chooser.setResourceResolver(editor.getResourceResolver());
197 chooser.setResourceResolver(editor.getResourceResolver());
200 chooser.setPreviewHelper(new ResourcePreviewHelper(chooser, editor));
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 207 JComponent editor = null; local
213 editor = this.editInputString;
217 editor = this.editInputMulti.getView();
221 editor = this.editInputFile;
228 paneDetailInput.setEditor(editor);
232 JComponent editor = null; local
241 editor = this.editOutputAST.getView();
247 editor = this.editOutputResult;
253 editor = this.editOutputStd.getView();
259 editor = this.editOutputReturn.getView()
365 private JComponent editor; field in class:TestCaseEditController.AbstractEditorPane
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTable.java 46 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
47 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor;
48 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
49 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
306 // editor activation
317 // send to editor
393 // de-activate current editor
396 // activate editor
534 // Editor
542 * Tries to activate editor for {@link PropertyInfo} under cursor
553 PropertyEditor editor = property.getEditor(); local
566 PropertyEditor editor = property.getEditor(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp 53 #include "Editor.h"
551 Editor* editor = focused->editor(); local
555 editor->command(AtomicString("Paste")).execute();
1283 Editor* editor = focusedFrame->editor(); local
1388 const Editor* editor = focused->editor(); local
    [all...]
WebFrameImpl.cpp 86 #include "Editor.h"
1120 Editor* editor = frame()->editor(); local
1131 Editor* editor = frame()->editor(); local
1199 Editor* editor = frame()->editor(); local
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp 54 #include "Editor.h"
159 // Lookup table mapping QWebPage::WebActions to the associated Editor commands
247 // Lookup the appropriate editor command to use for WebAction \a action
532 WebCore::Editor *editor = page->focusController()->focusedOrMainFrame()->editor();
557 case QWebPage::SelectAll: // editor command is always enabled
562 enabled = editor->canEdit();
566 // see if it's an editor command
569 // if it's an editor command, let it's logic determine stat
1056 WebCore::Editor *editor = frame->editor(); local
1231 WebCore::Editor* editor = frame->editor(); local
    [all...]
  /frameworks/base/media/java/android/media/
RemoteControlClient.java 396 * Use {@link RemoteControlClient#editMetadata(boolean)} to create an instance of an editor,
582 MetadataEditor editor = new MetadataEditor(); local
584 editor.mEditorMetadata = new Bundle();
585 editor.mEditorArtwork = null;
586 editor.mMetadataChanged = true;
587 editor.mArtworkChanged = true;
589 editor.mEditorMetadata = new Bundle(mMetadata);
590 editor.mEditorArtwork = mOriginalArtwork;
591 editor.mMetadataChanged = false;
592 editor.mArtworkChanged = false
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 582 for (IEditorPart editor : editors) {
583 if (editor instanceof StructuredTextEditor) {
584 StructuredTextEditor ste = (StructuredTextEditor) editor;
585 part.setActiveEditor(editor);
688 * Returns the current configuration, if the associated UI editor has been initialized
694 IEditorPart editor = getEditor(); local
695 if (editor != null) {
696 LayoutEditorDelegate delegate = LayoutEditorDelegate.fromEditor(editor);
713 IEditorInput editorInput = editor.getEditorInput();
730 for (IEditorReference reference : editor.getSite().getPage().getEditorReferences())
751 IEditorPart editor = getEditor(); local
777 IEditorPart editor = getEditor(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 539 * example) the XML editor just glow with yellow underlines for all the
658 * Shows the given marker in the editor
673 IEditorPart editor = local
675 if (editor != null) {
676 IDE.gotoMarker(editor, marker);
689 * @param editor the editor for the file, if known
694 @Nullable IEditorPart editor) {
695 LintListDialog dialog = new LintListDialog(shell, file, editor);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 895 IEditorPart editor = IDE.openEditor(page, file); local
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java     [all...]

Completed in 2818 milliseconds

<<11121314