HomeSort by relevance Sort by last modified time
    Searched refs:PropertyTable (Results 1 - 25 of 28) sorted by null

1 2

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyTooltipSite.java 22 * @return the {@link PropertyTable} of this site.
24 PropertyTable getTable();
PropertyTableTooltipHelper.java 31 private final PropertyTable m_table;
39 public PropertyTableTooltipHelper(PropertyTable table) {
82 * {@link PropertyTable} call this method to inform that cursor location was changed.
106 public PropertyTable getTable() {
PropertyTooltipProvider.java 97 PropertyTable table = m_site.getTable();
HtmlTooltipHelper.java 96 styles = DesignerPlugin.readFile(PropertyTable.class.getResourceAsStream("Tooltip.css"),
272 ClassLoader classLoader = PropertyTable.class.getClassLoader();
  /external/webkit/Source/JavaScriptCore/runtime/
PropertyMapHashTable.h 88 class PropertyTable {
144 // Constructor is passed an initial capacity, a PropertyTable to copy, or both.
145 explicit PropertyTable(unsigned initialCapacity);
146 PropertyTable(JSGlobalData&, JSCell*, const PropertyTable&);
147 PropertyTable(JSGlobalData&, JSCell*, unsigned initialCapacity, const PropertyTable&);
148 ~PropertyTable();
179 // Copy this PropertyTable, ensuring the copy has at least the capacity provided.
180 PassOwnPtr<PropertyTable> copy(JSGlobalData&, JSCell* owner, unsigned newCapacity)
    [all...]
Structure.cpp 477 PropertyTable::iterator end = transition->m_propertyTable->end();
478 for (PropertyTable::iterator iter = transition->m_propertyTable->begin(); iter != end; ++iter)
491 PropertyTable::iterator end = transition->m_propertyTable->end();
492 for (PropertyTable::iterator iter = transition->m_propertyTable->begin(); iter != end; ++iter)
525 PropertyTable::iterator end = m_propertyTable->end();
526 for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) {
543 PropertyTable::iterator end = m_propertyTable->end();
544 for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) {
562 PropertyTable::iterator end = m_propertyTable->end();
563 for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter, ++i)
    [all...]
Structure.h 188 PropertyTable* copyPropertyTable(JSGlobalData&, Structure* owner);
225 OwnPtr<PropertyTable> m_propertyTable;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
PropertyEditorPresentation.java 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
30 public abstract int show(PropertyTable propertyTable,
40 public abstract void hide(PropertyTable propertyTable, Property property);
ButtonPropertyEditorPresentation.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
59 m_impl.setSelection(propertyTable, property, selected);
68 public final int show(final PropertyTable propertyTable,
74 return m_impl.show(propertyTable, property, x, y, width, height);
78 public final void hide(PropertyTable propertyTable, Property property) {
79 m_impl.hide(propertyTable, property)
    [all...]
ButtonPropertyEditorPresentationImplMac.java 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {
44 CFlatButton button = new CFlatButton(propertyTable, SWT.NONE);
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
CompoundPropertyEditorPresentation.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
49 public int show(PropertyTable propertyTable,
57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height);
65 public void hide(PropertyTable propertyTable, Property property) {
67 presentation.hide(propertyTable, property);
ButtonPropertyEditorPresentationImpl.java 22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
53 public final void hide(PropertyTable propertyTable, Property property) {
54 Control control = m_propertyToControl.remove(propertyTable, property);
61 public final int show(PropertyTable propertyTable,
68 Control control = m_propertyToControl.get(propertyTable, property);
70 control = createControl(propertyTable, property);
82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
56 * happens when user selects property in {@link PropertyTable}. {@link PropertyEditor} should
69 public boolean activate(PropertyTable propertyTable, Property property, Point location)
82 * {@link Control}'s created before in {@link #activate(PropertyTable, Property, Point)}.
90 public void deactivate(PropertyTable propertyTable, Property property, boolean save) {
94 * Handles double click on {@link Property} value in {@link PropertyTable}.
103 * Handles {@link SWT#KeyDown} event in {@link PropertyTable}.
105 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event
    [all...]
TextDialogPropertyEditor.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
50 public boolean activate(PropertyTable propertyTable, Property property, Point location)
AbstractComboBoxPropertyEditor.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
49 public final boolean activate(final PropertyTable propertyTable,
52 m_combo = new CComboBox(propertyTable, SWT.NONE);
60 handleKeyPressed(propertyTable, property, e);
66 propertyTable.deactivateEditor(true);
72 propertyTable.deactivateEditor(true);
91 private void handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) {
93 propertyTable.deactivateEditor(false)
    [all...]
AbstractTextPropertyEditor.java 35 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
59 private final PropertyTable m_propertyTable;
67 PropertyTable propertyTable) {
70 m_propertyTable = propertyTable;
158 public boolean activate(final PropertyTable propertyTable, final Property property, Point location)
162 m_textControl = new Text(propertyTable, SWT.NONE);
176 propertyTable);
192 handleKeyPressed(propertyTable, property, e)
    [all...]
AbstractComboPropertyEditor.java 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location)
49 m_combo = new CCombo3(propertyTable, SWT.NONE);
60 propertyTable.deactivateEditor(true);
67 toProperty(propertyTable, property, index);
74 propertyTable.deactivateEditor(false);
82 propertyTable.handleException(e);
83 propertyTable.deactivateEditor(false);
94 toProperty(propertyTable, property, index)
    [all...]
BooleanObjectPropertyEditor.java 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
84 public boolean activate(PropertyTable propertyTable, Property property, Point location)
BooleanPropertyEditor.java 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
82 public boolean activate(PropertyTable propertyTable, Property property, Point location)
TextDisplayPropertyEditor.java 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
21 * {@link PropertyTable}.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
47 openDialog(propertyTable, property);
94 private void openDialog(PropertyTable propertyTable, Property property) throws Exception {
95 StringPropertyDialog dialog = new StringPropertyDialog(propertyTable.getShell(), property);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 27 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
84 public boolean activate(PropertyTable propertyTable, Property property, Point location)
PropertySheetPage.java 53 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
66 private PropertyTable mPropertyTable;
100 mPropertyTable = new PropertyTable(parent, SWT.NONE);
XmlPropertyEditor.java 63 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
91 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
92 openDialog(propertyTable, property);
292 gc.setForeground(PropertyTable.COLOR_PROPERTY_FG_DEFAULT);
308 private void openDialog(PropertyTable propertyTable, Property property) throws Exception {
328 new FlagXmlPropertyDialog(propertyTable.getShell(),
339 new FlagXmlPropertyDialog(propertyTable.getShell(),
422 new StringXmlPropertyDialog(propertyTable.getShell(), property)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
ComplexProperty.java 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
194 public boolean activate(PropertyTable propertyTable, Property property, Point location)

Completed in 128 milliseconds

1 2