HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 126 - 150 of 232) sorted by null

1 2 3 4 56 7 8 910

  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcManager.java 139 SharedPreferences.Editor editor = prefs.edit(); local
144 editor.putBoolean(NativeNfcSecureElement.PREF_SE_WIRED, false);
145 editor.apply();
157 SharedPreferences.Editor editor = prefs.edit(); local
159 editor.putBoolean(NativeNfcSecureElement.PREF_SE_WIRED, false);
160 editor.apply();
  /packages/apps/Protips/src/com/android/protips/
ProtipWidget.java 125 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
138 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp 29 #include "Editor.h"
87 // Related to Editor::selectionForCommand.
105 frame->editor()->applyStyleToSelection(style, action);
109 frame->editor()->applyStyle(style);
131 // This function must use Editor::selectionHasStyle to determine the current style but we cannot fix this
136 RefPtr<EditingStyle> selectionStyle = frame->editor()->selectionStartStyle();
165 if (frame->editor()->behavior().shouldToggleStyleBasedOnStartOfSelection())
166 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValue) == TrueTriState;
181 frame->editor()->applyParagraphStyleToSelection(style.get(), action)
    [all...]
  /external/skia/src/core/
SkPath.cpp 701 SkPathRef::Editor ed(&fPathRef);
740 SkPathRef::Editor(&fPathRef, inc, inc);
747 SkPathRef::Editor ed(&fPathRef);
783 SkPathRef::Editor ed(&fPathRef);
802 SkPathRef::Editor ed(&fPathRef);
824 SkPathRef::Editor ed(&fPathRef);
853 SkPathRef::Editor ed(&fPathRef);
913 SkPathRef::Editor ed(&fPathRef);
    [all...]
SkPathRef.h 24 * SkPathRef::Editor object. Installing the editor resets the generation ID. It also performs
25 * copy-on-write if the SkPathRef is shared by multipls SkPaths. The caller passes the Editor's
26 * constructor a SkAutoTUnref, which may be updated to point to a new SkPathRef after the editor's
71 class Editor {
73 Editor(PR_CONTAINER* pathRef,
88 ~Editor() { SkDEBUGCODE_X(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
138 * Gets the path ref that is wrapped in the Editor.
595 SkDEBUGCODE_X(int32_t fEditorsAttached;) // assert that only one editor in use at any time.
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 492 core(webView)->focusController()->focusedOrMainFrame()->editor()->command(name).execute(value);
500 return core(webView)->focusController()->focusedOrMainFrame()->editor()->command(name).isEnabled();
512 Editor* editor = frame->editor();
513 if (!editor)
515 if (!editor->canEdit() && !editor->hasComposition())
521 editor->setComposition(compositionString, underlines, start, end);
532 Editor* editor = frame->editor()
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarms.java 491 final SharedPreferences.Editor ed = prefs.edit();
533 final SharedPreferences.Editor ed = prefs.edit();
546 final SharedPreferences.Editor ed = prefs.edit();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupTestActivity.java 198 SharedPreferences.Editor editor = prefs.edit(); local
199 editor.putInt(INT_PREF, (random.nextInt(100) + 1));
200 editor.putBoolean(BOOL_PREF, random.nextBoolean());
201 editor.commit();
206 SharedPreferences.Editor editor = prefs.edit(); local
207 editor.putFloat(FLOAT_PREF, random.nextFloat());
208 editor.putLong(LONG_PREF, random.nextLong());
209 editor.putString(STRING_PREF, "Random number: " + (random.nextInt(100) + 1))
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 46 #import <WebCore/Editor.h>
  /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();
OtherPreferences.java 190 SharedPreferences.Editor editor = prefs.edit(); local
196 editor.putInt(KEY_OTHER_QUIET_HOURS_START_HOUR, hourOfDay);
197 editor.putInt(KEY_OTHER_QUIET_HOURS_START_MINUTE, minute);
201 editor.putInt(KEY_OTHER_QUIET_HOURS_END_HOUR, hourOfDay);
202 editor.putInt(KEY_OTHER_QUIET_HOURS_END_MINUTE, minute);
208 editor.commit();
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 23 import android.content.SharedPreferences.Editor;
642 Editor editor = mPrefs.edit(); local
644 editor.remove(getPersistentSelectionKey());
646 editor.putString(getPersistentSelectionKey(), contactUri.toString());
648 editor.apply();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
ImageCurves.java 39 import com.android.gallery3d.filtershow.editors.Editor;
120 Editor.hackFixStrings(popupMenu.getMenu());
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 172 SharedPreferences.Editor editPrefs =
312 SharedPreferences.Editor editPrefs =
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageFetcher.java 212 DiskLruCache.Editor editor = mHttpDiskCache.edit(key); local
213 if (editor != null) {
215 editor.newOutputStream(DISK_CACHE_INDEX))) {
216 editor.commit();
218 editor.abort();
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 194 SharedPreferences.Editor editor = mSharedPrefs.edit(); local
195 editor.putInt(mLeftPrefKey, mLeftKeyCode);
196 editor.putInt(mRightPrefKey, mRightKeyCode);
197 editor.putInt(mJumpPrefKey, mJumpKeyCode);
198 editor.putInt(mAttackPrefKey, mAttackKeyCode);
199 editor.commit();
  /external/webkit/Source/WebCore/platform/gtk/
ClipboardGtk.cpp 22 #include "Editor.h"
49 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
312 m_dataObject->setText(frame->editor()->selectedText());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 29 #include "Editor.h"
185 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
206 if (frame->editor()->insertText(keyEvent->text(), event))
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 93 SharedPreferences.Editor prefs = getPreferences(0).edit();
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 125 SharedPreferences.Editor editor = prefs.edit();
126 editor.putInt(PREF_KEY, val+1);
127 editor.commit();
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 319 SharedPreferences.Editor editor = mStorage.edit(); local
320 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
321 editor.putInt(PREFIX + "errorCount",
323 SharedPreferencesCompat.apply(editor);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 62 import com.android.contacts.editor.Editor;
63 import com.android.contacts.editor.EditorUiUtils;
64 import com.android.contacts.editor.ViewIdGenerator;
259 // Setup "header" (containing contact info) to save the detail and then go to the editor
662 * Rebuild the editor to match our underlying {@link #mEntityDeltaList} object.
681 // Otherwise display an editor that allows the user to add the data to this raw contact.
708 if (view instanceof Editor) {
709 Editor editor = (Editor) view local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 17 package com.android.contacts.editor;
119 final SharedPreferences.Editor editor = mPrefs.edit() local
127 editor.putString(KEY_KNOWN_ACCOUNTS, "");
128 editor.putString(KEY_DEFAULT_ACCOUNT, "");
130 editor.putString(KEY_KNOWN_ACCOUNTS,
132 editor.putString(KEY_DEFAULT_ACCOUNT, defaultAccount.stringify());
134 editor.apply();
195 * @return true if the contact editor should show the "accounts changed" notification, that is:
  /packages/apps/Gallery2/src/com/android/camera/
ListPreference.java 158 SharedPreferences.Editor editor = getSharedPreferences().edit(); local
159 editor.putString(mKey, value);
160 editor.apply();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorDraw.java 40 public class EditorDraw extends Editor {

Completed in 532 milliseconds

1 2 3 4 56 7 8 910