Searched defs:property (Results 26 - 50 of 344) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DStringListPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
20 * @coverage core.model.property.editor
32 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) argument
34 property.setValue(m_strings[index]);
H A DTextDisplayPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
24 * @coverage core.model.property.editor
33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument
34 String text = getText(property);
44 protected abstract String getText(Property property) throws Exception; argument
H A DAbstractComboBoxPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
37 * @coverage core.model.property.editor
50 final Property property,
54 addItems(property, m_combo);
55 selectItem(property, m_combo);
60 handleKeyPressed(propertyTable, property, e);
91 private void handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) { argument
102 public final void deactivate(PropertyTable propertyTable, Property property, boolea argument
49 activate(final PropertyTable propertyTable, final Property property, Point location) argument
112 toProperty(PropertyTable propertyTable, Property property) argument
126 keyDown(PropertyTable propertyTable, Property property, KeyEvent event) argument
144 addItems(Property property, CComboBox combo) argument
149 selectItem(Property property, CComboBox combo) argument
155 toPropertyEx(Property property, CComboBox combo) argument
[all...]
H A DAbstractComboPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
33 * @coverage core.model.property.editor
45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) argument
52 addItems(property, m_combo);
54 selectItem(property, m_combo);
67 toProperty(propertyTable, property, index);
78 property.setValue(Property.UNKNOWN_VALUE);
80 selectItem(property, m_comb
114 deactivate(PropertyTable propertyTable, Property property, boolean save) argument
129 addItems(Property property, CCombo3 combo) argument
134 selectItem(Property property, CCombo3 combo) argument
139 toPropertyEx(Property property, CCombo3 combo, int index) argument
145 toProperty(PropertyTable propertyTable, Property property, int index) argument
[all...]
H A DAbstractListPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
35 public String getText(Property property) throws Exception { argument
37 Object value = property.getValue();
76 //public String getClipboardSource(GenericProperty property) throws Exception {
77 // Object value = property.getValue();
87 protected void addItems(Property property, CCombo3 combo) throws Exception { argument
94 protected void selectItem(Property property, CCombo3 combo) throws Exception { argument
95 combo.setText(getText(property));
99 toPropertyEx(Property property, CCombo3 combo, int index) argument
127 toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) argument
[all...]
H A DBooleanObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument
49 Object value = property.getValue();
84 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
88 invertValue(property);
95 public void doubleClick(Property property, Point location) throws Exception { argument
96 invertValue(property);
102 invertValue(Property property) argument
[all...]
H A DBooleanPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
17 import org.eclipse.wb.internal.core.model.property.Property;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument
49 Object value = property.getValue();
82 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
86 invertValue(property);
93 public void doubleClick(Property property, Point location) throws Exception { argument
94 invertValue(property);
100 invertValue(Property property) argument
[all...]
H A DEnumerationValuesPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
16 import org.eclipse.wb.internal.core.model.property.Property;
26 * @coverage core.model.property.editor
59 public String getText(Property property) throws Exception { argument
60 Object value = property.getValue();
96 // public String getClipboardSource(GenericProperty property) throws Exception {
97 // Object value = property.getValue();
107 protected void addItems(Property property, CCombo3 combo) throws Exception { argument
114 protected void selectItem(Property property, CCombo3 combo) throws Exception { argument
115 combo.setText(getText(property));
119 toPropertyEx(Property property, CCombo3 combo, int index) argument
[all...]
H A DIValueSourcePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
18 * @coverage core.model.property.editor
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DPropertyEditorPresentation.java11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
22 * @coverage core.model.property.editor
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property); argument
30 show(PropertyTable propertyTable, Property property, int x, int y, int width, int height) argument
H A DCompoundPropertyEditorPresentation.java11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
50 Property property,
57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height);
65 public void hide(PropertyTable propertyTable, Property property) { argument
67 presentation.hide(propertyTable, property);
49 show(PropertyTable propertyTable, Property property, int x, int y, int width, int height) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
H A DStringPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor.string;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
47 openDialog(propertyTable, property);
62 getText(Property property) argument
76 getEditorText(Property property) argument
81 setEditorText(Property property, String text) argument
94 openDialog(PropertyTable propertyTable, Property property) argument
[all...]
H A DStringPropertyDialog.java11 package org.eclipse.wb.internal.core.model.property.editor.string;
23 import org.eclipse.wb.internal.core.model.property.Property;
33 * @coverage core.model.property.editor
54 public StringPropertyDialog(Shell parentShell, Property property) throws Exception { argument
56 m_property = property;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTooltipTextProvider.java11 package org.eclipse.wb.internal.core.model.property.table;
16 import org.eclipse.wb.internal.core.model.property.Property;
22 * @coverage core.model.property.table
31 public Control createTooltipControl(Property property, argument
40 // was: header = property.getTitle();
41 header = property.getName();
43 content = getText(property);
66 protected abstract String getText(Property property) throws Exception; argument
H A DPropertyTooltipProvider.java11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
27 * @coverage core.model.property.table
31 * Show tooltip directly on property row.
35 * Show tooltip below property row.
47 public abstract Control createTooltipControl(Property property, argument
61 * use tooltip to show just longer (full) text of property. But for "class" property we show
62 * hierarchy, so it is better show it below and allow user see also property row.
/external/chromium_org/chrome/browser/chromeos/options/
H A Dnetwork_property_ui_data_unittest.cc18 void CheckProperty(const NetworkPropertyUIData& property, argument
24 property.default_value()));
26 EXPECT_FALSE(property.default_value());
28 EXPECT_EQ(expected_managed, property.IsManaged());
29 EXPECT_EQ(expected_editable, property.IsEditable());
/external/chromium_org/components/policy/core/common/
H A Dmac_util.cc46 scoped_ptr<base::Value> PropertyToValue(CFPropertyListRef property) { argument
47 if (CFCast<CFNullRef>(property))
50 if (CFBooleanRef boolean = CFCast<CFBooleanRef>(property)) {
55 if (CFNumberRef number = CFCast<CFNumberRef>(property)) {
72 if (CFStringRef string = CFCast<CFStringRef>(property)) {
77 if (CFDictionaryRef dict = CFCast<CFDictionaryRef>(property)) {
83 if (CFArrayRef array = CFCast<CFArrayRef>(property)) {
/external/chromium_org/ppapi/proxy/
H A Durl_response_info_resource.cc41 PP_Var URLResponseInfoResource::GetProperty(PP_URLResponseProperty property) { argument
42 switch (property) {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8EventListener.cpp60 v8::Local<v8::Value> property = listener->Get(v8AtomicString(isolate(), "handleEvent")); local
62 // handleEvent property and that the value is a function.
63 if (!property.IsEmpty() && property->IsFunction())
64 return v8::Local<v8::Function>::Cast(property);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDocumentAnimations.cpp68 void DocumentAnimations::updateAnimationTimingForGetComputedStyle(Node& node, CSSPropertyID property) argument
74 if ((property == CSSPropertyOpacity && style->isRunningOpacityAnimationOnCompositor())
75 || ((property == CSSPropertyTransform || property == CSSPropertyWebkitTransform) && style->isRunningTransformAnimationOnCompositor())
76 || (property == CSSPropertyWebkitFilter && style->isRunningFilterAnimationOnCompositor())) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRemoveCSSPropertyCommand.cpp37 RemoveCSSPropertyCommand::RemoveCSSPropertyCommand(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property) argument
40 , m_property(property)
60 // Setting to null string removes the property. We don't have internal version of removeProperty.
H A DRemoveCSSPropertyCommand.h38 static PassRefPtrWillBeRawPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property) argument
40 return adoptRefWillBeNoop(new RemoveCSSPropertyCommand(document, element, property));
/external/chromium_org/ui/compositor/test/
H A Dlayer_animator_test_controller.cc22 LayerAnimationElement::AnimatableProperty property) {
24 animator_->GetRunningAnimation(property);
21 GetRunningSequence( LayerAnimationElement::AnimatableProperty property) argument
/external/chromium_org/ui/views/test/
H A Dx11_property_change_waiter.cc17 const char* property)
19 property_(property),
32 const char* kAtomsToCache[] = { property, NULL };
59 // Stop waiting once we get a property change.
16 X11PropertyChangeWaiter(XID window, const char* property) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DEmptyProperty.java11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
14 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyEditor;
20 * @coverage core.model.property

Completed in 786 milliseconds

1234567891011>>