HomeSort by relevance Sort by last modified time
    Searched defs:editor (Results 126 - 150 of 191) sorted by null

1 2 3 4 56 7 8

  /external/webkit/Source/WebCore/page/
Frame.h 34 #include "Editor.h"
112 Editor* editor() const;
235 mutable Editor m_editor;
315 inline Editor* Frame::editor() const function in class:WebCore::Frame
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 799 SharedPreferences.Editor editor = sp.edit(); local
800 editor.putString(VM_NUMBER, number);
801 editor.apply();
822 SharedPreferences.Editor editor = sp.edit(); local
823 editor.putString(VM_SIM_IMSI, imsi);
824 editor.apply();
1361 SharedPreferences.Editor editor = sp.edit(); local
1379 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
GroupMembershipView.java 17 package com.android.contacts.editor;
49 * An editor for group membership. Displays the current group membership list and
RawContactReadOnlyEditorView.java 17 package com.android.contacts.editor;
TextFieldsEditorView.java 17 package com.android.contacts.editor;
54 * Simple editor that handles labels and any {@link EditField} defined for the
268 * Returns true if the editor is currently configured to show optional fields.
279 * Populates the bound rectangle with the bounds of the last editor field inside this view.
ContactEditorFragment.java 17 package com.android.contacts.editor;
26 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
27 import com.android.contacts.editor.Editor.EditorListener;
124 * An intent extra that forces the editor to add the edited contact
138 * Close the editor after saving
335 // If anything was left unsaved, save it now but keep the editor open.
449 // See if this edit operation needs to be redirected to a custom editor
500 // Editor should always present a local profile for editing
602 * Removes a current editor ({@link #mState}) and rebinds new editor for a new account
705 final BaseRawContactEditorView editor; local
789 BaseRawContactEditorView editor = (BaseRawContactEditorView) mContent.getChildAt(i); local
    [all...]
AggregationSuggestionEngine.java 17 package com.android.contacts.editor;
LabeledEditorView.java 17 package com.android.contacts.editor;
61 public abstract class LabeledEditorView extends LinearLayout implements Editor, DialogShowingView {
150 // the last {@link Editor} in the section).
164 // safe to remove views (in case the user requests to delete this editor).
325 * Prepare this editor using the given {@link DataKind} for defining
RawContactEditorView.java 17 package com.android.contacts.editor;
54 * Custom view that provides all the editor interaction for a specific
210 // Show photo editor when supported
231 // Create editor sections for each possible data kind
238 // Handle special case editor for structured name
247 // Handle special case editor for photos
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 227 LayoutEditor editor = mCanvas.getLayoutEditor(); local
228 GraphicalEditorPart graphicalEditor = editor.getGraphicalEditor();
235 metadata.setProperty(editor, xmlNode, KEY_FRAGMENT_LAYOUT, layout);
274 LayoutEditor editor = mCanvas.getLayoutEditor(); local
275 IProject project = editor.getProject();
281 AndroidTargetData data = editor.getTargetData();
288 IInputValidator validator = CyclicDependencyValidator.create(editor.getInputFile());
LayoutMetadata.java 289 * @param editor the editor associated with the property
294 public String getProperty(AndroidXmlEditor editor, Node node, String name) {
295 IDocument document = editor.getStructuredSourceViewer().getDocument();
303 * @param editor the editor associated with the property
308 public void setProperty(AndroidXmlEditor editor, Node node, String name, String value) {
309 IDocument document = editor.getStructuredSourceViewer().getDocument();
333 AndroidXmlEditor editor = uiNode.getEditor(); local
334 if (editor != null)
    [all...]
ViewHierarchy.java 195 GraphicalEditorPart editor = mCanvas.getLayoutEditor().getGraphicalEditor(); local
196 if (editor.getIncludedWithin() != null) {
201 editor.showIn(null);
241 * Returns true if this view hierarchy corresponds to an editor that has a {@code
244 * @return true if there is a {@code <merge>} at the root of this editor's document
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 88 * As most other parts of the android manifest editor, this assumes the
211 // project and the current editor's site.
221 AdtPlugin.log(IStatus.ERROR, "Failed to get editor site for UiPackageAttribute"); //$NON-NLS-1$
245 AndroidXmlEditor editor = uiNode.getEditor(); local
246 IEditorInput input = editor.getEditorInput();
248 // from the file editor we can get the IFile object, and from it, the IProject.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 139 // if marker is text type, enforce a line number so that it shows in the editor
354 // before we show the type in an editor window, we make sure the current
355 // workbench page has an editor area (typically the ddms perspective doesn't).
360 // no editor area? we open the java perspective.
364 IEditorPart editor = JavaUI.openInEditor(result); local
365 if (editor instanceof ITextEditor) {
366 // get the text editor that was just opened.
367 ITextEditor textEditor = (ITextEditor)editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 117 IEditorPart editor = IDE.openEditor(page, file); local
118 assertTrue(editor instanceof AndroidXmlEditor);
119 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
224 IEditorPart editor = IDE.openEditor(page, file); local
225 assertTrue(editor instanceof AndroidXmlEditor);
226 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/xml/
HyperlinksTest.java 197 IEditorPart editor = IDE.openEditor(page, file); local
198 assertTrue(editor.getClass().getName(), editor instanceof AndroidXmlEditor);
199 AndroidXmlEditor layoutEditor = (AndroidXmlEditor) editor;
279 fail("Unhandled editor type: " + newEditor.getClass().getName());
  /libcore/luni/src/test/java/libcore/io/
DiskLruCacheTest.java 71 DiskLruCache.Editor creator = cache.edit("k1");
86 DiskLruCache.Editor creator = cache.edit("k1");
100 DiskLruCache.Editor creator = cache.edit("k1");
110 DiskLruCache.Editor creator = cache.edit("k1");
126 DiskLruCache.Editor creator = cache.edit("k1");
136 DiskLruCache.Editor k1Creator = cache.edit("k1");
140 DiskLruCache.Editor k2Creator = cache.edit("k2");
153 DiskLruCache.Editor editor = cache.edit("k1"); local
154 editor.set(0, "A")
161 DiskLruCache.Editor editor = cache.edit("k1"); local
169 DiskLruCache.Editor editor = cache.edit("k1"); local
592 DiskLruCache.Editor editor = cache.edit("A"); local
729 DiskLruCache.Editor editor = cache.edit(key); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 210 SharedPreferences.Editor editor = mPrefs.edit();
211 editor.putBoolean(MessagingPreferenceActivity.AUTO_DELETE, true);
212 editor.apply();
232 SharedPreferences.Editor editor = mPrefs.edit(); local
233 editor.putBoolean(CHECKED_MESSAGE_LIMITS, true);
234 editor.apply();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneBase.java 319 SharedPreferences.Editor editor = sp.edit(); local
320 editor.putBoolean(DNS_SERVER_CHECK_DISABLED_KEY, b);
321 editor.apply();
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ClassReferenceFixer.java 21 package proguard.classfile.editor;
CodeAttributeComposer.java 21 package proguard.classfile.editor;
  /external/quake/quake/src/WinQuake/
sys_android.cpp 304 const char *editor; local
309 editor = getenv("VISUAL");
310 if (!editor)
311 editor = getenv("EDITOR");
312 if (!editor)
313 editor = getenv("EDIT");
314 if (!editor)
315 editor = "vi";
316 sprintf(cmd, "xterm -e %s %s", editor, filename)
    [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/editors/formatting/
AndroidXmlFormattingStrategy.java 346 ITextEditor editor = AdtUtils.getActiveTextEditor(); local
347 if (editor != null) {
348 editor.setHighlightRange(replaceEdit.getOffset(), replaceEdit.getText().length(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 203 final AndroidXmlEditor editor = mNode.getEditor(); local
205 if (editor instanceof LayoutEditor) {
207 ((LayoutEditor) editor).wrapUndoEditXmlModel(
211 // Here editor.isEditXmlModelPending returns true and it
223 final AndroidXmlEditor editor = mNode.getEditor(); local
224 if (!editor.isEditXmlModelPending()) {
268 AndroidXmlEditor editor = mNode.getEditor(); local
269 if (editor instanceof LayoutEditor) {
270 engine = ((LayoutEditor)editor).getRulesEngine();
296 engine.callCreateHooks(editor, this, newNode, null)
441 AndroidXmlEditor editor = mNode.getEditor(); local
    [all...]

Completed in 2205 milliseconds

1 2 3 4 56 7 8