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

1 2 3 4 5 67 8

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 63 * There's one {@link RulesEngine} instance per layout editor.
65 * and the project specific rules (local to the current instance / layout editor).
93 * The editor which owns this {@link RulesEngine}
102 * @param editor the editor which owns this {@link RulesEngine}
105 public RulesEngine(GraphicalEditorPart editor, IProject project) {
107 mEditor = editor;
175 * @return the associated editor
510 * @param editor the XML editor to apply edits to the model for (performed by vie
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintEclipseContext.java 330 LayoutEditor editor = (LayoutEditor) active; local
331 editor.getGraphicalEditor().getLayoutActionBar().updateErrorIndicator();
LintFix.java 274 // Because we need to show the editor with text selected
325 IEditorPart editor = AdtUtils.getActiveEditor(); local
326 if (editor instanceof AndroidXmlEditor) {
327 ((AndroidXmlEditor) editor).invokeContentAssist(-1);
394 IEditorPart editor = AdtUtils.getActiveEditor(); local
395 if (editor instanceof LayoutEditor) {
396 LayoutEditor layout = (LayoutEditor) editor;
448 IEditorPart editor = AdtUtils.getActiveEditor(); local
449 if (editor instanceof LayoutEditor) {
455 editor,
    [all...]
LintListDialog.java 282 IEditorPart editor = AdtUtils.getActiveEditor(); local
283 if (editor instanceof AndroidXmlEditor) {
285 IStructuredDocument doc = ((AndroidXmlEditor) editor).getStructuredDocument();
291 AdtPlugin.log(IStatus.ERROR, "Did not find associated editor to apply fix");
342 // Jump to editor
375 LayoutEditor editor = (LayoutEditor) active;
376 if (mFile.equals(editor.getInputFile())) {
377 GraphicalEditorPart g = editor.getGraphicalEditor();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/
VoiceProxy.java 654 SharedPreferences.Editor editor = local
656 editor.putBoolean(PREF_HAS_USED_VOICE_INPUT, true);
657 SharedPreferencesCompat.apply(editor);
664 SharedPreferences.Editor editor = local
666 editor.putBoolean(PREF_HAS_USED_VOICE_INPUT_UNSUPPORTED_LOCALE, true);
667 SharedPreferencesCompat.apply(editor);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 71 * Represents an XML node that can be modified by the user interface in the XML editor.
159 * Also resets the attached XML node, document, editor if any.
559 * The editor must always be set on the root node. This method takes care of that.
561 * @param editor The editor to associate this node with.
563 public void setEditor(AndroidXmlEditor editor) {
565 mEditor = editor;
567 mUiParent.setEditor(editor);
856 AndroidXmlEditor editor = getEditor(); local
997 AndroidXmlEditor editor = getEditor(); local
2064 AndroidXmlEditor editor = getEditor(); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 1373 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /external/mksh/src/
histrap.c 74 char *editor = NULL; local
95 editor = alloc(len + 4, ATEMP);
96 memcpy(editor, p, len);
97 memcpy(editor + len, " $_", 4);
138 if (editor || lflag || nflag || rflag) {
165 if (editor && (lflag || nflag)) {
229 /* Run editor on selected lines, then run resulting commands */
253 ret = command(editor ? editor : "${FCEDIT:-/bin/ed} $_", 0);
  /external/proguard/lib/
proguard.jar 
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 21 package proguard.classfile.editor;
    [all...]
ConstantPoolRemapper.java 21 package proguard.classfile.editor;
320 // Initially, the code attribute editor doesn't contain any changes.
326 // Apply the code atribute editor. It will only contain any changes if
  /external/v8/src/
d8.cc 588 LineEditor* editor = LineEditor::Get(); local
589 printf("V8 version %s [console: %s]\n", V8::GetVersion(), editor->name());
593 editor->Open();
598 i::SmartPointer<char> input = editor->Prompt(Shell::kPrompt);
601 editor->AddHistory(*input);
605 editor->Close();
  /frameworks/base/media/java/android/media/
RemoteControlClient.java 289 * Use {@link RemoteControlClient#editMetadata(boolean)} to create an instance of an editor,
481 MetadataEditor editor = new MetadataEditor(); local
483 editor.mEditorMetadata = new Bundle();
484 editor.mEditorArtwork = null;
485 editor.mMetadataChanged = true;
486 editor.mArtworkChanged = true;
488 editor.mEditorMetadata = new Bundle(mMetadata);
489 editor.mEditorArtwork = mArtwork;
490 editor.mMetadataChanged = false;
491 editor.mArtworkChanged = false
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Camera.java 37 import android.content.SharedPreferences.Editor;
331 Editor editor = mPreferences.edit(); local
332 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
333 editor.apply();
2307 Editor editor = mPreferences.edit(); local
    [all...]
VideoCamera.java 37 import android.content.SharedPreferences.Editor;
785 ComboPreferences.Editor editor = mPreferences.edit(); local
786 editor.putString(CameraSettings.KEY_VIDEO_EFFECT,
788 editor.apply();
2473 Editor editor = mPreferences.edit(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 72 * editor's configuration chooser
208 GraphicalEditorPart editor = mPalette.getEditor(); local
209 LayoutEditor layoutEditor = editor.getLayoutEditor();
210 LayoutLibrary layoutLibrary = editor.getLayoutLibrary();
241 model.setUnknownDescriptorProvider(editor.getModel().getUnknownDescriptorProvider());
264 session = RenderService.create(editor)
431 GraphicalEditorPart editor = mPalette.getEditor(); local
432 ResourceResolver resources = editor.getResourceResolver();
434 BufferedImage image = RenderService.create(editor)
SelectionManager.java 64 * The {@link SelectionManager} manages the selection in the canvas editor.
753 LayoutEditor editor = mCanvas.getLayoutEditor(); local
754 if (editor != null) {
759 LayoutActionBar layoutActionBar = editor.getGraphicalEditor().getLayoutActionBar();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 167 /** The editor. Non-null when invoked from {@link ExtractStringAction}. Null otherwise. */
272 * @param editor The editor.
275 public ExtractStringRefactoring(IFile file, IEditorPart editor, ITextSelection selection) {
278 mEditor = editor;
530 * originating from an Android Layout Editor. We rely on some internal properties of the
531 * Structured XML editor to retrieve file content to avoid parsing it again. We also rely
546 status.addFatalError("Only the Android XML Editor is currently supported.");
550 AndroidXmlEditor editor = (AndroidXmlEditor) mEditor; local
557 smodel = editor.getModelForRead()
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallFeaturesSetting.java 34 import android.content.SharedPreferences.Editor;
1779 Editor editor = mPerProviderSavedVMNumbers.edit(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp 53 #include "Editor.h"
551 Editor* editor = focused->editor(); local
555 editor->command(AtomicString("Paste")).execute();
1283 Editor* editor = focusedFrame->editor(); local
1388 const Editor* editor = focused->editor(); local
    [all...]
WebFrameImpl.cpp 86 #include "Editor.h"
1120 Editor* editor = frame()->editor(); local
1131 Editor* editor = frame()->editor(); local
1199 Editor* editor = frame()->editor(); local
    [all...]
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 558 for (IEditorPart editor : editors) {
559 if (editor instanceof StructuredTextEditor) {
560 StructuredTextEditor ste = (StructuredTextEditor) editor;
561 part.setActiveEditor(editor);
664 * Returns the current configuration, if the associated UI editor has been initialized
670 IEditorPart editor = getEditor(); local
671 if (editor != null) {
672 if (editor instanceof LayoutEditor) {
673 LayoutEditor layoutEditor = (LayoutEditor) editor;
689 IEditorInput editorInput = editor.getEditorInput()
725 IEditorPart editor = getEditor(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 824 IEditorPart editor = IDE.openEditor(page, file); local
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java     [all...]

Completed in 681 milliseconds

1 2 3 4 5 67 8