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

<<11121314

  /external/proguard/src/proguard/classfile/editor/
ClassReferenceFixer.java 21 package proguard.classfile.editor;
CodeAttributeComposer.java 21 package proguard.classfile.editor;
CodeAttributeEditor.java 21 package proguard.classfile.editor;
    [all...]
ConstantPoolRemapper.java 21 package proguard.classfile.editor;
320 // Initially, the code attribute editor doesn't contain any changes.
326 // Apply the code atribute editor. It will only contain any changes if
  /external/quake/quake/src/WinQuake/
sys_android.cpp 304 const char *editor; local
309 editor = getenv("VISUAL");
310 if (!editor)
311 editor = getenv("EDITOR");
312 if (!editor)
313 editor = getenv("EDIT");
314 if (!editor)
315 editor = "vi";
316 sprintf(cmd, "xterm -e %s %s", editor, filename)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 32 #include "Editor.h"
129 const Editor* editor = frame->editor(); local
130 if (!editor)
132 if (editor->isSpellCheckingEnabledInFocusedNode())
390 // Keys with special meaning. These will be delegated to the editor using
576 Editor::Command command = frame->editor()->command(commandName);
580 // commands that just insert text if executed via Editor should be treated
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 806 SharedPreferences.Editor editor = sp.edit(); local
807 editor.putString(VM_NUMBER, number);
808 editor.apply();
831 SharedPreferences.Editor editor = sp.edit(); local
832 editor.putString(VM_SIM_IMSI, imsi);
833 editor.apply();
1476 SharedPreferences.Editor editor = sp.edit(); local
1494 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 17 package com.android.contacts.editor;
GroupMembershipView.java 17 package com.android.contacts.editor;
52 * An editor for group membership. Displays the current group membership list and
RawContactEditorView.java 17 package com.android.contacts.editor;
54 * Custom view that provides all the editor interaction for a specific
253 // Show photo editor when supported
274 // Create editor sections for each possible data kind
281 // Handle special case editor for structured name
290 // Handle special case editor for photos
  /packages/apps/Phone/src/com/android/phone/
CallFeaturesSetting.java 29 import android.content.SharedPreferences.Editor;
1822 final SharedPreferences.Editor editor = prefs.edit(); local
2090 Editor editor = mPerProviderSavedVMNumbers.edit(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ViewHierarchy.java 203 GraphicalEditorPart editor = mCanvas.getEditorDelegate().getGraphicalEditor(); local
204 if (editor.getIncludedWithin() != null) {
209 editor.showIn(null);
255 * Returns true if this view hierarchy corresponds to an editor that has a {@code
258 * @return true if there is a {@code <merge>} at the root of this editor's document
RenderPreview.java 507 GraphicalEditorPart editor = mCanvas.getEditorDelegate().getGraphicalEditor(); local
508 if (editor.getReadyLayoutLib(false /*displayError*/) == null) {
520 RenderService renderService = RenderService.create(editor, configuration, resolver);
527 IAndroidTarget target = editor.getRenderingTarget();
545 model.setUnknownDescriptorProvider(editor.getModel().getUnknownDescriptorProvider());
556 renderService.setModel(editor.getModel());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 59 * There's one {@link RulesEngine} instance per layout editor.
61 * and the project specific rules (local to the current instance / layout editor).
84 * The editor which owns this {@link RulesEngine}
93 * @param editor the editor which owns this {@link RulesEngine}
96 public RulesEngine(GraphicalEditorPart editor, IProject project) {
98 mEditor = editor;
114 * @return the associated editor
497 * @param editor the XML editor to apply edits to the model for (performed by vie
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 73 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
74 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
75 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
90 * Special property editor used for the {@link XmlProperty} instances which handles
392 GraphicalEditorPart editor = xmlProperty.getGraphicalEditor(); local
393 if (editor != null) {
394 LayoutCanvas canvas = editor.getCanvasControl();
518 // Fallback: Just use a plain string editor
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 73 * icon in the editor, and I've spent a whole day trying to make it work. I did not
83 * I tried defining my own editor annotations, and customizing the icon directly
93 * to handle this, along with its own Annotation subclass used by the editor.
167 AndroidXmlEditor editor = AndroidXmlEditor.fromTextViewer(sourceViewer); local
168 if (editor != null) {
169 IFile file = editor.getInputFile();
193 proposals.addAll(AddSuppressAttribute.createFixes(editor, marker, id));
295 AndroidXmlEditor editor = (AndroidXmlEditor) part; local
296 List<AddSuppressAttribute> fixes = AddSuppressAttribute.createFixes(editor,
299 IStructuredDocument document = editor.getStructuredDocument()
    [all...]
LintListDialog.java 71 @Nullable IEditorPart editor) {
74 mEditor = editor;
120 mShowButton.setToolTipText("Opens the editor to reveal the XML with the issue");
219 IEditorPart editor = AdtUtils.getActiveEditor(); local
220 if (editor instanceof AndroidXmlEditor) {
221 IStructuredDocument doc = ((AndroidXmlEditor) editor).getStructuredDocument();
227 AdtPlugin.log(IStatus.ERROR, "Did not find associated editor to apply fix");
248 AndroidXmlEditor editor = (AndroidXmlEditor) mEditor; local
249 AddSuppressAttribute fix = AddSuppressAttribute.createFixForAll(editor,
252 IStructuredDocument document = editor.getStructuredDocument()
    [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...]
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 395 SharedPreferences.Editor editor = sp.edit(); local
396 editor.putBoolean(DNS_SERVER_CHECK_DISABLED_KEY, b);
397 editor.apply();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 1506 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /external/mksh/src/
histrap.c 96 char **hfirst, **hlast, **hp, *editor = NULL; local
115 editor = alloc(len + 4, ATEMP);
116 memcpy(editor, p, len);
117 memcpy(editor + len, Tspdollaru, 4);
167 if (editor || lflag || nflag || rflag) {
229 if (editor && (lflag || nflag)) {
295 /* Run editor on selected lines, then run resulting commands */
320 ret = command(editor ? editor : TFCEDIT_dollaru, 0);
    [all...]
  /external/proguard/lib/
proguard.jar 
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 25 import android.content.SharedPreferences.Editor;
173 final Editor editor = preferenceScreen.getEditor(); local
174 editor.putString(GeneralPreferences.KEY_ALERTS_RINGTONE, ringToneUri).apply();
  /packages/apps/Camera/src/com/android/camera/
PhotoModule.java 26 import android.content.SharedPreferences.Editor;
618 Editor editor = mPreferences.edit(); local
619 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
620 editor.apply();
2407 Editor editor = mPreferences.edit(); local
    [all...]

Completed in 9006 milliseconds

<<11121314