HomeSort by relevance Sort by last modified time
    Searched refs:editor (Results 176 - 200 of 246) sorted by null

1 2 3 4 5 6 78 910

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 310 SharedPreferences.Editor editor = sp.edit(); local
311 editor.putLong(COLUMN_APN_ID, id != null ? id.longValue() : -1);
312 editor.apply();
  /external/proguard/src/proguard/
ProGuard.java 24 import proguard.classfile.editor.ClassElementSorter;
  /external/proguard/src/proguard/obfuscate/
Obfuscator.java 27 import proguard.classfile.editor.*;
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 27 import proguard.classfile.editor.ConstantPoolEditor;
TailRecursionSimplifier.java 28 import proguard.classfile.editor.CodeAttributeComposer;
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 27 import proguard.classfile.editor.CodeAttributeEditor;
66 * @param codeAttributeEditor a code editor that can be used for
91 * @param codeAttributeEditor a code editor that can be used for
ClassMerger.java 25 import proguard.classfile.editor.*;
TargetClassChanger.java 24 import proguard.classfile.editor.*;
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 26 import proguard.classfile.editor.CodeAttributeComposer;
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 29 import proguard.classfile.editor.*;
  /external/webkit/WebCore/page/
Frame.h 33 #include "Editor.h"
91 Editor* editor() const;
191 // === to be moved into Editor
290 // === to be moved into Editor
330 mutable Editor m_editor;
EventHandler.cpp 37 #include "Editor.h"
244 if (result.event().clickCount() == 2 && m_frame->editor()->isSelectTrailingWhitespaceEnabled())
841 if (m_frame != mainFrame && resultFrame && resultFrame != mainFrame && !resultFrame->editor()->insideVisibleArea(result.point())) {
    [all...]
FocusController.cpp 33 #include "Editor.h"
270 return frame->editor()->shouldEndEditing(rangeOfContents(root).get());
  /external/webkit/WebKitTools/Scripts/
extract-localizable-strings 219 if (!s-([^\\]|\\.)'--) { #' <-- that single quote makes the Project Builder editor less confused
prepare-ChangeLog 133 print STDERR " -o|--open Open ChangeLogs in an editor when done\n";
422 my $editor = $ENV{"CHANGE_LOG_EDIT_APPLICATION"};
423 if ($editor) {
424 system "open", "-a", $editor, @logs;
    [all...]
  /external/webkit/WebCore/rendering/
InlineTextBox.cpp 29 #include "Editor.h"
373 bool containsComposition = renderer()->node() && renderer()->document()->frame()->editor()->compositionNode() == renderer()->node();
374 bool useCustomUnderlines = containsComposition && renderer()->document()->frame()->editor()->compositionUsesCustomUnderlines();
392 renderer()->document()->frame()->editor()->compositionStart(),
393 renderer()->document()->frame()->editor()->compositionEnd());
528 const Vector<CompositionUnderline>& underlines = renderer()->document()->frame()->editor()->customCompositionUnderlines();
    [all...]
  /external/webkit/WebCore/editing/
Editor.cpp 28 #include "Editor.h"
81 VisibleSelection Editor::selectionForCommand(Event* event)
99 EditorClient* Editor::client() const
106 void Editor::handleKeyboardEvent(KeyboardEvent* event)
112 void Editor::handleInputMethodKeydown(KeyboardEvent* event)
118 bool Editor::canEdit() const
123 bool Editor::canEditRichly() const
133 bool Editor::canDHTMLCut()
138 bool Editor::canDHTMLCopy()
143 bool Editor::canDHTMLPaste(
    [all...]
DeleteButtonController.cpp 36 #include "Editor.h"
266 if (!m_frame->editor()->shouldShowDeleteInterface(static_cast<HTMLElement*>(element)))
markup.cpp 47 #include "Editor.h"
805 DeleteButtonController* deleteButton = frame ? frame->editor()->deleteButtonController() : 0;
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 245 * Get the shift key state from the editor.
247 * @param editor Editor
251 protected int getShiftKeyState(EditorInfo editor) {
252 return (getCurrentInputConnection().getCursorCapsMode(editor.inputType) == 0) ? 0 : 1;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 236 * As most other parts of the android manifest editor, this assumes the
406 // now we try to find the file that contains this class and we open it in the editor.
434 AndroidXmlEditor editor = uiNode.getEditor();
435 IEditorInput input = editor.getEditorInput();
437 // from the file editor we can get the IFile object, and from it, the IProject.
  /external/proguard/src/proguard/classfile/editor/
AttributeAdder.java 21 package proguard.classfile.editor;
  /build/tools/releasetools/
common.py 478 self.editor = os.getenv("EDITOR", None)
487 user edit that file to add more needed passwords. If no editor is
532 if not self.editor or not self.pwfile:
550 p = Run([self.editor, "+%d" % (first_line,), self.pwfile])
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 1405 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 45 import android.content.SharedPreferences.Editor;
844 Editor editor = mPrefs.edit();
845 editor.putBoolean(Prefs.DISPLAY_ONLY_PHONES, displayOnlyPhones);
846 editor.apply();
    [all...]

Completed in 1025 milliseconds

1 2 3 4 5 6 78 910