Searched refs:editor (Results 26 - 50 of 214) sorted by relevance

123456789

/external/proguard/src/proguard/classfile/editor/
H A DAnnotationsAttributeEditor.java21 package proguard.classfile.editor;
H A DCodeAttributeEditorResetter.java21 package proguard.classfile.editor;
43 * @param codeAttributeEditor the code attribute editor that will be reset.
H A DExceptionAdder.java21 package proguard.classfile.editor;
H A DExceptionsAttributeEditor.java21 package proguard.classfile.editor;
H A DInterfaceAdder.java21 package proguard.classfile.editor;
H A DLineNumberInfoAdder.java21 package proguard.classfile.editor;
H A DLineNumberTableAttributeEditor.java21 package proguard.classfile.editor;
H A DLocalVariableTableAttributeEditor.java21 package proguard.classfile.editor;
H A DLocalVariableTypeTableAttributeEditor.java21 package proguard.classfile.editor;
H A DParameterAnnotationsAttributeEditor.java21 package proguard.classfile.editor;
H A DStackSizeUpdater.java21 package proguard.classfile.editor;
H A DVariableCleaner.java21 package proguard.classfile.editor;
61 AttributesEditor editor =
67 editor.deleteAttribute(ClassConstants.ATTR_LocalVariableTable);
73 AttributesEditor editor =
79 editor.deleteAttribute(ClassConstants.ATTR_LocalVariableTypeTable);
H A DClassMemberSorter.java21 package proguard.classfile.editor;
H A DExceptionInfoAdder.java21 package proguard.classfile.editor;
H A DInnerClassesAccessFixer.java21 package proguard.classfile.editor;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
25 * Abstract editor for {@link Property}.
28 * @coverage core.model.property.editor
55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation
62 * the mouse location, if editor is activated using mouse click, or <code>null</code> if
65 * @return <code>true</code> if editor should be remembered as active for future
75 * Sets the new bounds for editor's control.
81 * Deactivates editor for current {@link Property}. {@link PropertyEditor} should dispose any
84 * If any exception happened during activation, editor stil
[all...]
H A DPropertyDescriptorEditorProvider.java11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
H A DStringComboPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorCommand.cpp110 frame.editor().applyStyleToSelection(style, action);
114 frame.editor().applyStyle(style);
169 if (frame.editor().behavior().shouldToggleStyleBasedOnStartOfSelection())
170 styleIsPresent = frame.editor().selectionStartHasStyle(propertyID, onValue);
172 styleIsPresent = frame.editor().selectionHasStyle(propertyID, onValue) == TrueTriState;
185 frame.editor().applyParagraphStyleToSelection(style.get(), action);
189 frame.editor().applyParagraphStyle(style.get());
245 if (frame.editor().behavior().shouldToggleStyleBasedOnStartOfSelection())
246 return frame.editor().selectionStartHasStyle(propertyID, desiredValue) ? TrueTriState : FalseTriState;
247 return frame.editor()
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dresedit.py53 """Create a new editor.
225 """Commit any successful resource edits this editor has performed.
300 # Create the editor for our input file.
301 editor = _ResourceEditor(args[0], options.output_file)
304 editor.ExtractAllToDir(options.extract_all)
307 editor.ExtractResource(res_type, int(res_lang), res_name, dest_file)
310 editor.RemoveResource(res_type, int(res_lang), res_name)
313 editor.UpdateResource(res_type, int(res_lang), res_name, src_file)
315 if editor.modified:
316 editor
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DDelayedSyncController.java78 SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(ctx).edit();
79 editor.putString(DELAYED_ACCOUNT_NAME, accountName);
80 editor.apply();
/external/chromium_org/v8/tools/
H A Dtest-push-to-trunk.sh43 # Open editor
215 editor() { function
217 echo "editor $@" >> $TEST_OUTPUT
229 export -f editor
230 export EDITOR=editor
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DProperty.java16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
50 public Property(PropertyEditor editor) { argument
52 m_editor = editor;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DTestCaseEditController.java207 JComponent editor = null;
213 editor = this.editInputString;
217 editor = this.editInputMulti.getView();
221 editor = this.editInputFile;
228 paneDetailInput.setEditor(editor);
232 JComponent editor = null;
241 editor = this.editOutputAST.getView();
247 editor = this.editOutputResult;
253 editor = this.editOutputStd.getView();
259 editor
365 private JComponent editor; field in class:TestCaseEditController.AbstractEditorPane
[all...]
/external/proguard/src/proguard/classfile/constant/visitor/
H A DExceptClassConstantFilter.java24 import proguard.classfile.editor.*;

Completed in 483 milliseconds

123456789