/external/proguard/src/proguard/classfile/editor/ |
VariableEditor.java | 21 package proguard.classfile.editor;
|
VariableSizeUpdater.java | 21 package proguard.classfile.editor;
|
/external/proguard/src/proguard/obfuscate/ |
ClassRenamer.java | 26 import proguard.classfile.editor.ConstantPoolEditor;
|
/external/proguard/src/proguard/optimize/ |
BootstrapMethodArgumentShrinker.java | 29 import proguard.classfile.editor.ConstantPoolEditor;
|
/external/proguard/src/proguard/optimize/peephole/ |
GotoGotoReplacer.java | 25 import proguard.classfile.editor.CodeAttributeEditor; 46 * @param codeAttributeEditor a code editor that can be used for 57 * @param codeAttributeEditor a code editor that can be used for
|
GotoReturnReplacer.java | 25 import proguard.classfile.editor.CodeAttributeEditor; 46 * @param codeAttributeEditor a code editor that can be used for 57 * @param codeAttributeEditor a code editor that can be used for
|
InstructionSequencesReplacer.java | 24 import proguard.classfile.editor.CodeAttributeEditor; 53 * @param codeAttributeEditor a code editor that can be used for 80 * @param codeAttributeEditor a code editor that can be used for 110 * @param codeAttributeEditor a code editor that can be used for
|
NopRemover.java | 25 import proguard.classfile.editor.CodeAttributeEditor; 45 * @param codeAttributeEditor a code editor that can be used for 56 * @param codeAttributeEditor a code editor that can be used for
|
PeepholeOptimizer.java | 26 import proguard.classfile.editor.CodeAttributeEditor; 33 * (optional) branch target finder and code attribute editor. 48 * @param codeAttributeEditor the code attribute editor that will be reset 52 * attribute editor. 65 * @param codeAttributeEditor the code attribute editor that will be reset 69 * attribute editor. 94 // Set up the code attribute editor.
|
/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/editor/ |
EditorUiUtils.java | 17 package com.android.contacts.editor; 31 * Utility methods for creating contact editor. 35 // Maps DataKind.mimeType to editor view layouts.
|
SplitContactConfirmationDialogFragment.java | 17 package com.android.contacts.editor;
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DirectoryContactUtil.java | 5 import com.android.contacts.common.editor.SelectAccountDialogFragment;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
StringXmlPropertyDialog.java | 24 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyDialog;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
CopyCutAction.java | 63 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit, 65 this(editor, clipboard, xmlCommit, toList(selected), performCut); 75 public CopyCutAction(AndroidXmlEditor editor, Clipboard clipboard, ICommitXml xmlCommit, 78 mEditor = editor; 130 // directly from the editor, try to fall back on a direct XML serialization 162 /** Get the data directly from the editor. */
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
CachedBluetoothDevice.java | 695 SharedPreferences.Editor editor = preferences.edit(); local 696 editor.remove(mDevice.getAddress()); 697 editor.commit(); 738 SharedPreferences.Editor editor = preferences.edit(); local 739 editor.remove(mDevice.getAddress()); 740 editor.commit(); 761 SharedPreferences.Editor editor = mContext.getSharedPreferences local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiElementNode.java | 73 * Represents an XML node that can be modified by the user interface in the XML editor. 161 * Also resets the attached XML node, document, editor if any. 561 * The editor must always be set on the root node. This method takes care of that. 563 * @param editor The editor to associate this node with. 565 public void setEditor(AndroidXmlEditor editor) { 567 mEditor = editor; 569 mUiParent.setEditor(editor); 859 AndroidXmlEditor editor = getEditor(); local 1000 AndroidXmlEditor editor = getEditor(); local 1181 AndroidXmlEditor editor = getEditor(); local 1247 AndroidXmlEditor editor = getEditor(); local 2018 AndroidXmlEditor editor = getEditor(); local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
DiskLruCache.java | 62 * entry may have only one editor at one time; if a value is not available to be 72 * Every {@link #edit} call must be matched by a call to {@link Editor#commit} 73 * or {@link Editor#abort}. Committing is atomic: a read observes the full set 306 entry.currentEditor = new Editor(entry); 441 * Returns an editor for the entry named {@code key}, or null if another 444 public Editor edit(String key) throws IOException { 448 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { 463 Editor editor = new Editor(entry) local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
DeskClock.java | 281 SharedPreferences.Editor editor = prefs.edit(); local 282 editor.putBoolean(Timers.NOTIF_APP_OPEN, true); 283 editor.apply(); 296 SharedPreferences.Editor editor = prefs.edit(); local 297 editor.putBoolean(Timers.NOTIF_APP_OPEN, false); 298 editor.apply(); 394 SharedPreferences.Editor editor = prefs.edit() local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PreviewIconFactory.java | 74 * editor's configuration chooser 210 GraphicalEditorPart editor = mPalette.getEditor(); local 211 LayoutEditorDelegate layoutEditorDelegate = editor.getEditorDelegate(); 212 LayoutLibrary layoutLibrary = editor.getLayoutLibrary(); 243 model.setUnknownDescriptorProvider(editor.getModel().getUnknownDescriptorProvider()); 266 session = RenderService.create(editor) 270 .setLog(editor.createRenderLogger("palette")) 439 GraphicalEditorPart editor = mPalette.getEditor(); local 440 ResourceResolver resources = editor.getResourceResolver(); 442 BufferedImage image = RenderService.create(editor) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtUtils.java | 272 * Returns the current editor (the currently visible and active editor), or null if 275 * @return the current editor, or null 349 * Returns the current text editor (the currently visible and active editor), or null 352 * @return the current text editor, or null 355 IEditorPart editor = getActiveEditor(); local 356 if (editor != null) { 357 if (editor instanceof ITextEditor) { 358 return (ITextEditor) editor; 389 IEditorPart editor = reference.getEditor(restore); local 433 IEditorPart editor = getActiveEditor(); local [all...] |
/external/chromium_org/native_client_sdk/src/doc/ |
io2014.rst | 45 Editor 48 To follow along in this tutorial, you'll need to use a text editor to modify 50 There are currently two editor options, nano or vim. 139 We'll need to start an editor to fix this. 169 Open your editor again, navigate to line 485 and change *valu* to *value*.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
sourcesView.css | 36 #sources-editor-container-tabbed-pane { 40 #sources-editor-container-tabbed-pane .tabbed-pane-header-tab { 86 .editor-container-unsaved-committed-changes-icon {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidTextEditor.java | 51 import org.eclipse.ui.forms.editor.FormEditor; 52 import org.eclipse.ui.forms.editor.IFormPage; 68 * Multi-page form editor for Android text files. 73 * source editor. This can be a no-op if desired. 84 /** Page id of the XML source editor, used for switching tabs programmatically */ 90 /** Page index of the text editor (always the last page) */ 93 /** The text editor */ 102 * Creates a form editor. 119 * as well as text editor page) have been created. This give a chance to deriving 141 * Creates the pages of the multi-page editor 378 IEditorPart editor = getEditor(mTextPageIndex); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
LocalFrame.h | 44 class Editor; 88 Editor& editor() const; 161 const OwnPtrWillBePersistent<Editor> m_editor; 204 inline Editor& LocalFrame::editor() const function in class:WebCore::LocalFrame
|