Searched defs:property (Results 1 - 25 of 344) sorted by relevance

1234567891011>>

/external/chromium_org/v8/tools/
H A Ddetect-builtins.js28 var property = { "name": name };
32 property.type = "getter";
33 result[name] = property;
37 property.type = type;
39 property.length = value.length; class
40 property.prototype = GetProperties("prototype", value.prototype);
42 property.properties = GetProperties(name, value);
43 result[name] = property;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-static.js34 Object.prototype.load = function() { return this.property; };
35 Object.prototype.load.call({ A:0, property:10 });
36 Object.prototype.load.call({ A:0, B:0, property:11 });
37 Object.prototype.load.call({ A:0, B:0, C:0, property:12 });
38 Object.prototype.load.call({ A:0, B:0, C:0, D:0, property:13 });
39 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, property:14 });
40 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, F:0, property:15 });
45 var object = { property:x }; property
58 this.property = x;
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGPropertyHelper.h23 RefPtr<Derived> property = Derived::create(); local
24 property->setValueAsString(value, IGNORE_EXCEPTION);
25 return property.release();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DPropertyManager.java11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) { argument
27 return property.getCategory();
33 public static PropertyCategory getCategoryForced(Property property) { argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProvider.java11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property
25 PropertyCategory getCategory(Property property); argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DCharacterPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception { argument
58 return getText(property);
62 protected boolean setEditorText(Property property, String text) throws Exception { argument
65 property.setValue(Property.UNKNOWN_VALUE);
72 property
[all...]
H A DDoubleObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception { argument
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
69 property.setValue(Property.UNKNOWN_VALUE);
74 property
[all...]
H A DDoublePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
58 protected String getEditorText(Property property) throws Exception { argument
59 return getText(property);
63 protected boolean setEditorText(Property property, String text) throws Exception { argument
67 property.setValue(Property.UNKNOWN_VALUE);
76 property
[all...]
H A DFloatPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception { argument
58 return getText(property);
62 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 property.setValue(Property.UNKNOWN_VALUE);
75 property
[all...]
H A DITextValuePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property.editor
25 void setText(Property property, String text) throws Exception; argument
H A DIntegerObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception { argument
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
69 property.setValue(Property.UNKNOWN_VALUE);
74 property
[all...]
H A DIntegerPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception { argument
58 return getText(property);
62 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 property.setValue(Property.UNKNOWN_VALUE);
76 property
[all...]
H A DLocalePropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
21 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception { argument
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception { argument
56 Object value = property.getValue();
65 // property.setValue(localeDialog.getSelectedLocale().getLocale());
H A DLongObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception { argument
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
69 property.setValue(Property.UNKNOWN_VALUE);
74 property
[all...]
H A DLongPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception { argument
58 return getText(property);
62 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 property.setValue(Property.UNKNOWN_VALUE);
75 property
[all...]
H A DShortObjectPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception { argument
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
69 property.setValue(Property.UNKNOWN_VALUE);
74 property
[all...]
H A DShortPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception { argument
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception { argument
58 return getText(property);
62 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 property.setValue(Property.UNKNOWN_VALUE);
75 property
[all...]
H A DStringArrayPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
18 import org.eclipse.wb.internal.core.model.property.Property;
25 * @coverage core.model.property.editor
44 protected String getText(Property property) throws Exception { argument
45 String[] items = getItems(property);
52 private static String[] getItems(Property property) throws Exception { argument
53 Object value = property.getValue();
67 protected void openDialog(Property property) throws Exception { argument
71 property.getTitle(),
74 itemsDialog.setItems(getItems(property));
[all...]
H A DTextDialogPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
24 * @coverage core.model.property.editor
34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
35 openDialog(property);
50 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
54 openDialog(property);
63 openDialog(Property property) argument
[all...]
H A DStringComboPropertyEditor.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
40 protected String getText(Property property) throws Exception { argument
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception { argument
57 protected void selectItem(Property property, CCombo3 combo) throws Exception { argument
58 combo.setText(getText(property));
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { argument
63 property
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
H A DIComplexPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception; argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImplMac.java11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) { argument
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
/external/chromium_org/ppapi/thunk/
H A Dppb_url_response_info_thunk.cc26 PP_URLResponseProperty property) {
31 return enter.object()->GetProperty(property);
25 GetProperty(PP_Resource response, PP_URLResponseProperty property) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DDOMWindowCSS.cpp59 bool DOMWindowCSS::supports(const String& property, const String& value) const argument
61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java11 package org.eclipse.wb.internal.core.editor.structure.property;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.PropertyManager;
42 Property property = properties[i];
43 m_intersection.add(new PropertyGroup(property));
86 public PropertyGroup(Property property) { argument
87 m_properties.add(property);
99 for (Property property : properties) {
100 if (add(property)) {
124 private boolean add(Property property) { argument
[all...]

Completed in 4439 milliseconds

1234567891011>>