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

1 23 4 5 6 7 8 91011>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
InputViewManager.java 58 * @param editor The information about the editor
60 public void setPreferences(SharedPreferences pref, EditorInfo editor);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
BitmapEditor.java 17 package com.android.notificationstudio.editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportPropertiesPage.java 24 import org.eclipse.ui.forms.editor.FormPage;
41 /** Container editor */
48 public ExportPropertiesPage(ExportEditor editor) {
49 super(editor, PAGE_ID, "Export Properties"); // tab's label, user visible, keep it short
50 mEditor = editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuTreePage.java 28 import org.eclipse.ui.forms.editor.FormPage;
32 * Page for the menu form editor.
38 /** Container editor */
41 public MenuTreePage(CommonXmlEditor editor) {
42 super(editor, PAGE_ID, "Layout"); // tab's label, keep it short
43 mEditor = editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlTreePage.java 28 import org.eclipse.ui.forms.editor.FormPage;
32 * Page for the xml form editor.
38 /** Container editor */
41 public OtherXmlTreePage(CommonXmlEditor editor) {
42 super(editor, PAGE_ID, "Structure"); // tab's label, keep it short
43 mEditor = editor;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RedirectGetter.java 77 SharedPreferences.Editor editor = preferences.edit();
78 editor.putString("text", mText.getText().toString());
80 if (editor.commit()) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextDialogPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
24 * @coverage core.model.property.editor
LocalePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
21 * @coverage core.model.property.editor
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DoNotDisturbController.java 58 SharedPreferences.Editor editor = Prefs.edit(mContext); local
59 editor.putBoolean(Prefs.DO_NOT_DISTURB_PREF, value);
60 editor.apply();
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 29 #include "Editor.h"
245 return m_impl->frame->editor()->command(command).execute(parameter);
251 WebCore::TriState state = m_impl->frame->editor()->command(command).state();
266 return m_impl->frame->editor()->command(command).value();
275 return m_impl->frame->editor()->findString(string, forward, caseSensitive, wrapSelection, startInSelection);
336 if (m_impl->frame && m_impl->frame->editor() && CanUndo())
337 return m_impl->frame->editor()->undo();
342 if (m_impl->frame && m_impl->frame->editor() && CanRedo())
343 return m_impl->frame->editor()->redo();
348 if (m_impl->frame && m_impl->frame->editor())
    [all...]
  /system/core/sh/
histedit.c 66 #define DEFEDITOR "ed" /* default editor *should* be $EDITOR */
222 const char *editor = NULL; local
236 (void) &editor;
261 editor = optionarg;
288 if (lflg == 0 || editor || sflg) {
310 * Set editor.
313 if (editor == NULL &&
314 (editor = bltinlookup("FCEDIT", 1)) == NULL &&
315 (editor = bltinlookup("EDITOR", 1)) == NULL
    [all...]
  /hardware/ti/wpan/tools/FM/FmTxApp/src/com/ti/fmtxapp/
FmTxConfig.java 409 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
412 /*editor.putInt(DISPLAY_MODE, spnDisplayMode.getSelectedItemPosition());
413 editor.putInt(TX_MODE, spnTxMode.getSelectedItemPosition());
414 editor.putInt(REPERTOIRE, spnRepetoire.getSelectedItemPosition());*/
415 editor.putInt(MONO_STEREO, spnMonoStereo.getSelectedItemPosition());
416 //editor.putInt(ECC, spnEcc.getSelectedItemPosition());
418 editor.putString(PS_STRING, txtPsStr.getText().toString());
419 editor.putString(RT_STRING, edtRadioText.getText().toString());
420 editor.putString(PTY_STRING, edtPty.getText().toString())
459 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
509 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
561 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
612 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
    [all...]
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
Policy.java 71 SharedPreferences.Editor editor = local
74 editor.putInt(KEY_PASSWORD_QUALITY, passwordQuality);
78 editor.putInt(KEY_PASSWORD_LENGTH, passwordLength);
82 editor.putInt(KEY_PASSWORD_MIN_UPPERCASE, passwordMinUppercase);
85 editor.commit();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 47 Vector<Editor::Command> commands;
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data());
79 // During RawKeyDown events if an editor command will insert text, defer
90 if (executePendingEditorCommands(frame, pendingEditorCommands, frame->editor()->canEdit())) {
97 if (!frame->editor()->canEdit())
107 frame->editor()->insertText(platformEvent->text(), event);
119 if (frame->editor()->insertText(platformEvent->text(), event))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutWindowCoordinator.java 50 * <b>inside</b> the editor area, in a right-docked view! This right docked view
53 * view as well), then it will be shown inside the editor area, along with the outline
54 * which should also be there (since if the outline was showing outside the editor
56 * <li> When the editor is maximized, then all views are temporarily hidden. In this
57 * case, the property sheet and outline will show up inside the editor.
58 * When the editor view is un-maximized, the view state will return to what it
78 /** Is the editor maximized? */
107 // What if the editor part is *already* open? How do I deal with that?
132 * Returns true if the main editor window is maximized
134 * @return true if the main editor window is maximize
249 LayoutEditorDelegate editor = LayoutEditorDelegate.fromEditor((IEditorPart) part); local
259 IEditorPart editor = activePage.getActiveEditor(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 40 #include "Editor.h"
106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
160 if (m_webView->focusedWebCoreFrame()->editor()->canUndo())
162 if (m_webView->focusedWebCoreFrame()->editor()->canRedo())
164 if (m_webView->focusedWebCoreFrame()->editor()->canCut())
166 if (m_webView->focusedWebCoreFrame()->editor()->canCopy())
168 if (m_webView->focusedWebCoreFrame()->editor()->canPaste())
170 if (m_webView->focusedWebCoreFrame()->editor()->canDelete())
253 data.selectedText = selectedFrame->editor()->selectedText().stripWhiteSpace()
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 161 final SharedPreferences.Editor editor = prefs.edit(); local
169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
177 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
178 editor.putInt(Key.virt_strength.toString(), vIStrength);
185 editor.putBoolean(Key.virt_strength_supported.toString(),
201 editor.putBoolean(Key.bb_enabled.toString(), isBBEnabled);
202 editor.putInt(Key.bb_strength.toString(), bBStrength);
267 editor.putInt(Key.eq_level_range.toString() + 0, mEQBandLevelRange[0]);
268 editor.putInt(Key.eq_level_range.toString() + 1, mEQBandLevelRange[1])
506 final SharedPreferences.Editor editor = prefs.edit(); local
560 final SharedPreferences.Editor editor = prefs.edit(); local
980 final SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /external/replicaisland/src/com/replica/replicaisland/
MainMenuActivity.java 221 SharedPreferences.Editor editor = prefs.edit(); local
222 editor.putBoolean(PreferenceConstants.PREFERENCE_CLICK_ATTACK, false);
223 editor.commit();
226 SharedPreferences.Editor editor = prefs.edit(); local
231 editor.putBoolean(PreferenceConstants.PREFERENCE_SCREEN_CONTROLS, true);
235 editor.putBoolean(PreferenceConstants.PREFERENCE_TILT_CONTROLS, true);
238 editor.commit();
260 SharedPreferences.Editor editor = prefs.edit() local
265 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /external/okhttp/src/main/java/libcore/net/http/
HttpResponseCache.java 164 DiskLruCache.Editor editor = null; local
166 editor = cache.edit(key);
167 if (editor == null) {
170 entry.writeTo(editor);
171 return new CacheRequestImpl(editor);
173 abortQuietly(editor);
195 DiskLruCache.Editor editor = null; local
197 editor = snapshot.edit(); // returns null if snapshot is not curren
270 private final DiskLruCache.Editor editor; field in class:HttpResponseCache.CacheRequestImpl
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpResponseCache.java 159 DiskLruCache.Editor editor = null; local
161 editor = cache.edit(key);
162 if (editor == null) {
165 entry.writeTo(editor);
166 return new CacheRequestImpl(editor);
168 abortQuietly(editor);
189 DiskLruCache.Editor editor = null; local
191 editor = snapshot.edit(); // returns null if snapshot is not curren
264 private final DiskLruCache.Editor editor; field in class:HttpResponseCache.CacheRequestImpl
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumSettings.java 104 SharedPreferences.Editor editor = mSettings.edit(); local
106 editor.putStringSet(ALBUM_SET, new HashSet<String>(mEnabledAlbums));
107 editor.commit();
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generateviewbylayout/ui/
ChooseLayoutItemsDialog.java 125 final TableEditor editor = new TableEditor(getViewer().getTable()); local
126 editor.setColumn(3);
127 editor.horizontalAlignment = SWT.CENTER;
128 editor.grabHorizontal = false;
129 editor.minimumWidth =
138 editor.minimumWidth =
153 if ((e.item instanceof TableItem) && (editor.getItem() == e.item))
167 LayoutNode node = (LayoutNode) editor.getItem().getData();
171 editor.setEditor(checkbox, item, 3);
179 editor.getEditor().dispose();
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 21 package proguard.classfile.editor;
CodeAttributeEditorResetter.java 21 package proguard.classfile.editor;
43 * @param codeAttributeEditor the code attribute editor that will be reset.

Completed in 1405 milliseconds

1 23 4 5 6 7 8 91011>>