/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerReceiver.java | 88 SharedPreferences.Editor editor = prefs.edit(); local 89 editor.putBoolean(Timers.FROM_NOTIFICATION, true); 90 editor.putLong(Timers.NOTIF_TIME, Utils.getTimeNow()); 91 editor.putInt(Timers.NOTIF_ID, timer); 92 editor.apply();
|
/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...] |
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/ |
DiskLruCache.java | 76 * entry may have only one editor at one time; if a value is not available to be 86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit} 87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set 391 entry.currentEditor = new Editor(entry); 510 * Returns an editor for the entry named {@code key}, or null if another 513 public Editor edit(String key) throws IOException { 517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { 532 Editor editor = new Editor(entry) local [all...] |
ImageCache.java | 206 final DiskLruCache.Editor editor = mDiskLruCache.edit(key); local 207 if (editor != null) { 208 out = editor.newOutputStream(DISK_CACHE_INDEX); 211 editor.commit();
|
/external/okhttp/src/main/java/libcore/io/ |
DiskLruCache.java | 67 * entry may have only one editor at one time; if a value is not available to be 77 * Every {@link #edit} call must be matched by a call to {@link Editor#commit} 78 * or {@link Editor#abort}. Committing is atomic: a read observes the full set 282 entry.currentEditor = new Editor(entry); 392 * Returns an editor for the entry named {@code key}, or null if another 395 public Editor edit(String key) throws IOException { 399 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { 414 Editor editor = new Editor(entry) local [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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintFixGenerator.java | 72 * icon in the editor, and I've spent a whole day trying to make it work. I did not 82 * I tried defining my own editor annotations, and customizing the icon directly 92 * to handle this, along with its own Annotation subclass used by the editor. 166 AndroidXmlEditor editor = AndroidXmlEditor.fromTextViewer(sourceViewer); local 167 if (editor != null) { 168 IFile file = editor.getInputFile(); 192 ICompletionProposal fix = AddSuppressAttribute.createFix(editor, marker, id); 298 AndroidXmlEditor editor = (AndroidXmlEditor) part; local 299 AddSuppressAttribute fix = AddSuppressAttribute.createFix(editor, 302 IStructuredDocument document = editor.getStructuredDocument() [all...] |
/prebuilts/tools/common/proguard/proguard4.7/lib/ |
proguard.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
LayoutEditorDelegate.java | 79 import org.eclipse.ui.forms.editor.IFormPage; 96 * Multi-page form editor for /res/layout XML files. 119 * Old standalone-editor ID. 131 /** Implementation of the {@link IContentOutlinePage} for this editor */ 134 /** The XML editor outline */ 141 * Temporary flag set by the editor caret listener which is used to cause 142 * the next getAdapter(IContentOutlinePage.class) call to return the editor 148 /** Custom implementation of {@link IPropertySheetPage} for this editor */ 163 * Checks whether an editor part is an instance of {@link CommonXmlEditor} 166 * @param editorPart An editor part. Can be null 617 CommonXmlEditor editor = getEditor(); local [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GSMPhone.java | 789 SharedPreferences.Editor editor = sp.edit(); local 790 editor.putString(VM_NUMBER, number); 791 editor.apply(); 813 SharedPreferences.Editor editor = sp.edit(); local 814 editor.putString(VM_SIM_IMSI, imsi); 815 editor.apply(); 1422 SharedPreferences.Editor editor = sp.edit(); local 1440 SharedPreferences.Editor editor = sp.edit(); local [all...] |
/external/proguard/lib/ |
proguard.jar | |
/external/webkit/Source/WebKit/win/ |
WebView.cpp | 81 #include <WebCore/Editor.h> [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
TelephonyProvider.java | 403 SharedPreferences.Editor editor = sp.edit(); local 404 editor.putLong(COLUMN_APN_ID, id != null ? id.longValue() : -1); 405 editor.apply(); 420 SharedPreferences.Editor editor = sp.edit(); local 421 editor.putLong(APN_CONFIG_CHECKSUM, id); 422 editor.apply();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiResourceAttributeNode.java | 97 * As most other parts of the android manifest editor, this assumes the 147 AndroidXmlEditor editor = uiNode.getEditor(); local 148 IProject project = editor.getProject(); 156 AndroidTargetData data = editor.getTargetData(); 223 * Computes the set of resource string matches for a given resource prefix in a given editor 225 * @param editor the editor context 232 @NonNull AndroidXmlEditor editor, 237 IProject project = editor.getProject(); 278 AndroidTargetData data = editor.getTargetData() [all...] |
/frameworks/base/core/java/android/preference/ |
PreferenceManager.java | 90 * If in no-commit mode, the shared editor to give out (which will be 93 private SharedPreferences.Editor mEditor; 96 * Blocks commits from happening on the shared editor. This is used when 484 SharedPreferences.Editor editor = local 487 editor.apply(); 490 // SharedPreferences.Editor implementation without 492 editor.commit(); 498 * Returns an editor to use when modifying the shared preferences. 502 * @return An editor to use to write to shared preferences [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
MessagingPreferenceActivity.java | 339 SharedPreferences.Editor editor = 342 editor.putBoolean(MessagingPreferenceActivity.NOTIFICATION_ENABLED, enabled); 344 editor.apply();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PaletteControl.java | 97 import org.eclipse.wb.internal.core.editor.structure.IPage; 137 PalettePage(GraphicalEditorPart editor) { 138 mEditorPart = editor; 257 * @param editor An editor associated with this palette. 259 public PaletteControl(Composite parent, GraphicalEditorPart editor) { 262 mEditor = editor; 918 GraphicalEditorPart editor = getEditor(); local [all...] |
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_editor_gtk.cc | 51 explicit ContextMenuController(BookmarkEditorGtk* editor) 52 : editor_(editor), 192 BookmarkEditorGtk* editor = local 195 editor->Show();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
AbstractListPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 24 * @coverage core.model.property.editor
|
BooleanObjectPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 26 * @coverage core.model.property.editor
|
BooleanPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 25 * @coverage core.model.property.editor
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyDialog.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 33 * @coverage core.model.property.editor 40 // so this was all stripped down to a plain String editor.
|
/external/proguard/src/proguard/classfile/editor/ |
AccessFixer.java | 21 package proguard.classfile.editor;
|
AttributesEditor.java | 21 package proguard.classfile.editor;
|
ConstantAdder.java | 21 package proguard.classfile.editor;
|