/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/ |
IPage.java | 11 package org.eclipse.wb.internal.core.editor.structure; 21 * @coverage core.editor.structure
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
TextControlActionsManager.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 22 * @coverage 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
|
/external/proguard/src/proguard/classfile/editor/ |
ClassElementSorter.java | 21 package proguard.classfile.editor;
|
/external/webkit/Source/WebCore/editing/ |
DeleteButton.cpp | 31 #include "Editor.h" 54 document()->frame()->editor()->deleteButtonController()->deleteTarget();
|
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/ |
Cities.java | 33 SharedPreferences.Editor editor = prefs.edit(); local 34 editor.putInt(NUMBER_OF_CITIES, cities.size()); 40 c.saveCityToSharedPrefs(editor, count); 43 editor.apply();
|
/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);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsUpgradeReceiver.java | 67 SharedPreferences.Editor editor = prefs.edit(); local 68 editor.putInt(PREF_DB_VERSION, ContactsDatabaseHelper.DATABASE_VERSION); 69 editor.putString(PREF_ICU_VERSION, curIcuVersion); 70 editor.commit();
|
/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/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
PreferenceManagerTest.java | 5 import android.content.SharedPreferences.Editor; 25 Editor editor = testPrefs.edit(); local 26 editor.putInt("foobar", 13); 27 editor.commit();
|
/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();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiAttributeNode.java | 28 * Represents an XML attribute that can be modified by the XML editor's user interface. 72 * Sets whether the attribute is dirty and also notifies the editor some part's dirty 85 AndroidXmlEditor editor = getUiParent().getEditor(); local 86 if (editor != null) { 87 editor.editorDirtyStateChanged(); 152 * Called by the user interface when the editor is saved or its state changed
|
/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 252 LayoutEditorDelegate editor = LayoutEditorDelegate.fromEditor((IEditorPart) part); local 262 IEditorPart editor = activePage.getActiveEditor(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddSuppressAttribute.java | 68 @NonNull AndroidXmlEditor editor, 74 mEditor = editor; 134 * @param editor the associated editor containing the marker 141 @NonNull AndroidXmlEditor editor, 153 node = DomUtilities.getNode(editor.getStructuredDocument(), 0); 158 node = DomUtilities.getNode(editor.getStructuredDocument(), offset); 177 fixes.add(new AddSuppressAttribute(editor, id, marker, element, desc, null)); 192 fixes.add(new AddSuppressAttribute(editor, id, marker, element, 197 fixes.add(new AddSuppressAttribute(editor, id, marker, element [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); 179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled); 180 editor.putInt(Key.virt_strength.toString(), vIStrength); 187 editor.putBoolean(Key.virt_strength_supported.toString(), 203 editor.putBoolean(Key.bb_enabled.toString(), isBBEnabled); 204 editor.putInt(Key.bb_strength.toString(), bBStrength); 269 editor.putInt(Key.eq_level_range.toString() + 0, mEQBandLevelRange[0]); 270 editor.putInt(Key.eq_level_range.toString() + 1, mEQBandLevelRange[1]) 509 final SharedPreferences.Editor editor = prefs.edit(); local 563 final SharedPreferences.Editor editor = prefs.edit(); local 983 final SharedPreferences.Editor editor = prefs.edit(); local [all...] |