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

1 23 4 5 6 7 8 910

  /external/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(0),
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
VersionedPrefs.java 26 import android.content.SharedPreferences.Editor;
45 private final Editor mEditor;
94 protected Editor getEditor() {
  /external/clang/lib/Edit/
Commit.cpp 38 Commit::Commit(EditedSource &Editor)
39 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()),
40 PPRec(Editor.getPPCondDirectiveRecord()),
41 Editor(&Editor), IsCommitable(true) { }
290 if (!Editor)
292 return Editor->canInsertInOffset(OrigLoc, Offs);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DropDownEditor.java 17 package com.android.notificationstudio.editor;
29 import com.android.notificationstudio.editor.Editors.Editor;
32 public class DropDownEditor implements Editor {
DateTimeEditor.java 17 package com.android.notificationstudio.editor;
35 import com.android.notificationstudio.editor.Editors.Editor;
41 public class DateTimeEditor implements Editor {
IconEditor.java 17 package com.android.notificationstudio.editor;
32 import com.android.notificationstudio.editor.Editors.Editor;
35 public class IconEditor implements Editor {
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 54 OwningPtr<edit::EditedSource> Editor;
81 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
157 edit::Commit commit(*Consumer.Editor);
159 Consumer.Editor->commit(commit);
163 edit::Commit commit(*Consumer.Editor);
165 Consumer.Editor->commit(commit);
298 edit::Commit commit(*Editor);
300 Editor->commit(commit);
514 edit::Commit commit(*Editor);
517 Editor->commit(commit)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 46 * top text editor, but not of the bottom text editor. You can see the difference
120 SharedPreferences.Editor editor = getPreferences(0).edit(); local
121 editor.putString("text", mSaved.getText().toString());
122 editor.putInt("selection-start", mSaved.getSelectionStart());
123 editor.putInt("selection-end", mSaved.getSelectionEnd());
124 editor.commit();
RedirectGetter.java 77 SharedPreferences.Editor editor = preferences.edit();
78 editor.putString("text", mText.getText().toString());
80 if (editor.commit()) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
EditorClient.h 42 class Editor;
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 60 edit::EditedSource Editor;
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 34 Editor(SourceMgr, LangOpts),
83 Editor.applyRewrites(Rec);
143 edit::Commit commit(Editor);
178 if (!Editor.commit(commit)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorCurves.java 28 public class EditorCurves extends Editor {
EditorRedEye.java 28 * The editor with no slider for filters without UI
30 public class EditorRedEye extends Editor {
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/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...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
gallery_testapi.js 8 * Test API for Chrome OS Image Editor.
10 * There are two ways to load Image Editor before testing:
11 * - open File Manager, and then click on an image file to open Image Editor;
17 * After Image Editor is loaded, you can call methods from |galleryTestAPI| to
22 * Open the Photo Editor.
147 * Waits until editor is ready, performs action and then responds.
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 64 * entry may have only one editor at one time; if a value is not available to be
74 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
75 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
306 entry.currentEditor = new Editor(entry);
442 * Returns an editor for the entry named {@code key}, or null if another
445 public Editor edit(String key) throws IOException {
449 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
464 Editor editor = new Editor(entry) local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/admin/
PolicySerializationTestActivity.java 28 import android.content.SharedPreferences.Editor;
128 SharedPreferences.Editor editor = prefs.edit(); local
129 editor.clear();
130 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, false);
131 editor.apply();
161 SharedPreferences.Editor editor = prefs.edit(); local
162 editor.clear();
163 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, true)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/quickcontact/
QuickContactTestsActivity.java 22 import android.content.SharedPreferences.Editor;
102 final Editor editor = sharedPreferences.edit(); local
103 editor.putString(PREF_SETTING_URI, mContactUri == null ? null : mContactUri.toString());
104 editor.apply();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchSettingsImpl.java 23 import android.content.SharedPreferences.Editor;
206 Editor sharedPrefEditor = getSearchPreferences().edit();
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeSelector.java 32 import android.content.SharedPreferences.Editor;
138 Editor edit = mSharedPref.edit();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
__init__.py 99 getbaseclasses(Editor)
166 'EDTR' : Editor,
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.cpp 36 #include "core/editing/Editor.h"
92 inline Editor& InputMethodController::editor() const function in class:WebCore::InputMethodController
94 return *m_frame->editor();
99 return editor().client();
168 if (!hasComposition() || editor().preventRevealSelection())
190 Editor::RevealSelectionScope revealSelectionScope(&editor());
228 Editor::RevealSelectionScope revealSelectionScope(&editor());
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SetPreferencesActivity.java 63 SharedPreferences.Editor editor = prefs.edit(); local
64 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_ROW);
65 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_INDEX);
66 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_COMPLETED);
67 editor.remove(PreferenceConstants.PREFERENCE_LINEAR_MODE);
68 editor.remove(PreferenceConstants.PREFERENCE_TOTAL_GAME_TIME);
69 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED);
70 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_TOTAL);
71 editor.remove(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 83 SharedPreferences.Editor editor = prefs.edit(); local
85 editor.putString(SettingsActivity.KEY_VOLUME_BEHAVIOR,
89 editor.putBoolean(PREF_VOLUME_DEF_DONE, true);
90 editor.apply();

Completed in 3604 milliseconds

1 23 4 5 6 7 8 910