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

1 23 4 5 6 7 8 910

  /external/quake/quake/src/QW/client/
sys_linux.c 265 char *editor; local
270 editor = getenv("VISUAL");
271 if (!editor)
272 editor = getenv("EDITOR");
273 if (!editor)
274 editor = getenv("EDIT");
275 if (!editor)
276 editor = "vi";
277 sprintf(cmd, "xterm -e %s %s", editor, filename);
    [all...]
  /external/quake/quake/src/WinQuake/
sys_linux.cpp 263 char *editor; local
268 editor = getenv("VISUAL");
269 if (!editor)
270 editor = getenv("EDITOR");
271 if (!editor)
272 editor = getenv("EDIT");
273 if (!editor)
274 editor = "vi";
275 sprintf(cmd, "xterm -e %s %s", editor, filename)
    [all...]
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/WebKit/chromium/src/
ContextMenuClientImpl.cpp 39 #include "Editor.h"
200 if (m_webView->focusedWebCoreFrame()->editor()->isContinuousSpellCheckingEnabled()) {
215 if (selectedFrame->editor()->selectionHasStyle(style.get()) != FalseTriState)
218 if (selectedFrame->editor()->selectionHasStyle(style.get()) != FalseTriState)
230 if (m_webView->focusedWebCoreFrame()->editor()->canUndo())
232 if (m_webView->focusedWebCoreFrame()->editor()->canRedo())
234 if (m_webView->focusedWebCoreFrame()->editor()->canCut())
236 if (m_webView->focusedWebCoreFrame()->editor()->canCopy())
238 if (m_webView->focusedWebCoreFrame()->editor()->canPaste())
240 if (m_webView->focusedWebCoreFrame()->editor()->canDelete()
    [all...]
SuggestionsPopupMenuClient.cpp 65 EditorClientImpl* editor =
67 ASSERT(editor);
68 editor->onAutofillSuggestionAccepted(
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 22 import android.content.SharedPreferences.Editor;
104 SharedPreferences.Editor editor = ComboPreferences local
106 editor.putString(KEY_PICTURE_SIZE, candidate);
107 editor.apply();
313 SharedPreferences.Editor editor = pref.edit();
314 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
315 editor.apply();
327 SharedPreferences.Editor editor = pref.edit()
388 Editor editor = pref.edit(); local
    [all...]
ListPreference.java 109 SharedPreferences.Editor editor = getSharedPreferences().edit(); local
110 editor.putString(mKey, value);
111 editor.apply();
  /packages/apps/Contacts/src/com/android/contacts/model/
Editor.java 29 public interface Editor {
31 * Listener for an {@link Editor}, usually to handle deleted items.
35 * Called when the given {@link Editor} has been deleted.
37 public void onDeleted(Editor editor);
40 * Called when the given {@link Editor} has a request, for example it
50 * Prepare this editor for the given {@link ValuesDelta}, which
58 * Add a specific {@link EditorListener} to this {@link Editor}.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportLinksPart.java 41 public ExportLinksPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
77 mFormText.addHyperlinkListener(editor.createHyperlinkListener());
105 * @param editor The {@link ExportEditor} instance.
107 public void onModelInit(ExportEditor editor) {
115 * @param editor The {@link ExportEditor} instance.
118 public void onModelChanged(ExportEditor editor, DocumentEvent event) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationPage.java 30 import org.eclipse.ui.forms.editor.FormPage;
36 * Page for "Application" settings, part of the AndroidManifest form editor.
46 /** Container editor */
55 public ApplicationPage(ManifestEditor editor) {
56 super(editor, PAGE_ID, "Application"); // tab's label, keep it short
57 mEditor = editor;
  /external/webkit/WebCore/platform/
ContextMenu.cpp 40 #include "Editor.h"
396 Vector<String> guesses = frame->editor()->guessesForMisspelledOrUngrammaticalSelection(misspelling, badGrammar);
498 bool shouldShowFontMenu = frame->editor()->canEditRichly();
521 || (settings->textDirectionSubmenuInclusionBehavior() == TextDirectionSubmenuAutomaticallyIncluded && frame->editor()->hasBidiSelection());
573 shouldEnable = frame->editor()->canEdit();
585 shouldCheck = frame->editor()->selectionHasStyle(style.get()) != FalseTriState;
590 Editor::Command command = frame->editor()->command("MakeTextWritingDirectionNatural");
596 Editor::Command command = frame->editor()->command("MakeTextWritingDirectionLeftToRight")
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
user.py 44 editor = os.environ.get("EDITOR") or "vi"
45 args = shlex.split(editor)
  /external/webkit/WebCore/editing/
TypingCommand.cpp 33 #include "Editor.h"
74 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
92 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
111 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
159 RefPtr<EditCommand> lastEditCommand = frame->editor()->lastEditCommand();
193 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
209 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
225 EditCommand* lastEditCommand = frame->editor()->lastEditCommand();
289 if (!document()->frame()->editor()->isContinuousSpellCheckingEnabled()
290 && !document()->frame()->editor()->isAutomaticQuoteSubstitutionEnabled(
    [all...]
  /frameworks/base/core/java/android/preference/
Preference.java 870 * Returns an {@link SharedPreferences.Editor} where this Preference can
882 * @return A {@link SharedPreferences.Editor} where this preference saves
888 public SharedPreferences.Editor getEditor() {
1230 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1276 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1320 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1364 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1408 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LanguageSwitcher.java 22 import android.content.SharedPreferences.Editor;
189 Editor editor = sp.edit(); local
190 editor.putString(LatinIME.PREF_INPUT_LANGUAGE, getInputLanguage());
191 SharedPreferencesCompat.apply(editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 62 * actual resource file. By looking at the Active Window > Active Page > Active Editor we
136 * Returns the active editor (hopefully matching our selection) or null.
158 private IFile getSelectedFile(IEditorPart editor) {
159 if (editor != null) {
160 IEditorInput input = editor.getEditorInput();
  /external/proguard/src/proguard/classfile/constant/visitor/
ExceptClassConstantFilter.java 24 import proguard.classfile.editor.*;
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 21 package proguard.classfile.editor;
ExceptionInfoAdder.java 21 package proguard.classfile.editor;
InstructionAdder.java 21 package proguard.classfile.editor;
LocalVariableInfoAdder.java 21 package proguard.classfile.editor;
LocalVariableTypeInfoAdder.java 21 package proguard.classfile.editor;
  /external/proguard/src/proguard/obfuscate/
SourceFileRenamer.java 26 import proguard.classfile.editor.ConstantPoolEditor;
  /external/proguard/src/proguard/optimize/
MethodStaticizer.java 25 import proguard.classfile.editor.MethodInvocationFixer;
  /external/proguard/src/proguard/optimize/peephole/
MemberPrivatizer.java 24 import proguard.classfile.editor.MethodInvocationFixer;

Completed in 343 milliseconds

1 23 4 5 6 7 8 910