HomeSort by relevance Sort by last modified time
    Searched defs:property (Results 26 - 50 of 1117) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
LongObjectPropertyEditor.java 11 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 {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
LongPropertyEditor.java 11 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 {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
ShortObjectPropertyEditor.java 11 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 {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
ShortPropertyEditor.java 11 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 {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
LocalePropertyEditor.java 11 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 {
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception {
56 Object value = property.getValue()
    [all...]
PropertyDescriptorEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
PropertyEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
19 * @coverage core.model.property.editor
23 * @return the {@link PropertyEditor} for given property type or <code>null</code>.
StringComboPropertyEditor.java 11 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 {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]
TextControlActionsManager.java 11 package org.eclipse.wb.internal.core.model.property.editor;
22 * @coverage core.model.property.editor
TextDialogPropertyEditor.java 11 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);
    [all...]
TextDisplayPropertyEditor.java 11 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;
20 * Abstract {@link PropertyEditor} for displaying text as {@link Property} value in
24 * @coverage core.model.property.editor
33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception {
34 String text = getText(property);
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
CarHvacManagerTest.java 48 for (CarPropertyConfig property : properties) {
49 if (supportedTypes.contains(property.getPropertyType())) {
50 assertTypeAndZone(property);
52 fail("Type is not supported for " + property);
57 private void assertTypeAndZone(CarPropertyConfig property) {
58 switch (property.getPropertyId()) {
60 assertEquals(Boolean.class, property.getPropertyType());
61 assertTrue(property.isGlobalProperty());
64 assertEquals(Integer.class, property.getPropertyType());
65 assertTrue(property.isGlobalProperty())
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
EmptyProperty.java 11 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;
17 * Empty {@link Property}, that has no title or value.
20 * @coverage core.model.property
22 public class EmptyProperty extends Property {
38 // Property
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProviders.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.PropertyManager;
20 * @coverage core.model.property
29 public PropertyCategory getCategory(Property property) {
30 return property.getCategory();
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 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;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImplMac.java 11 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) {
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
    [all...]
PropertyEditorPresentation.java 11 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
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyTooltipSite.java 11 package org.eclipse.wb.internal.core.model.property.table;
18 * @coverage core.model.property.table
PropertyTooltipTextProvider.java 11 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,
40 // was: header = property.getTitle();
41 header = property.getName();
43 content = getText(property);
66 protected abstract String getText(Property property) throws Exception
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.cpp 46 const CProperty &property = properties[i]; local
48 UString name = property.Name;
49 if (property.Value.IsEmpty())
63 ParseNumberString(property.Value, propVariant);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssSchemaTest.java 62 CssSchema.Property property = CssSchema.DEFAULT.forKey(propName); local
65 property.literals.contains("expression"));
68 property.fnKeys.containsKey("expression("));
71 property.literals.contains("url"));
74 property.fnKeys.containsKey("url("));
89 CssSchema.Property cssFloat = custom.forKey("float");
  /hardware/qcom/display/msm8084/libqdutils/
comptype.h 63 char property[PROPERTY_VALUE_MAX]; local
65 if (property_get("debug.composition.type", property, "gpu") > 0) {
66 if ((strncmp(property, "mdp", 3)) == 0) {
68 } else if ((strncmp(property, "c2d", 3)) == 0) {
70 } else if ((strncmp(property, "dyn", 3)) == 0) {
  /hardware/qcom/display/msm8226/libqdutils/
comptype.h 63 char property[PROPERTY_VALUE_MAX]; local
65 if (property_get("debug.composition.type", property, "gpu") > 0) {
66 if ((strncmp(property, "mdp", 3)) == 0) {
68 } else if ((strncmp(property, "c2d", 3)) == 0) {
70 } else if ((strncmp(property, "dyn", 3)) == 0) {
  /hardware/qcom/display/msm8909/libqdutils/
comptype.h 63 char property[PROPERTY_VALUE_MAX]; local
65 if (property_get("debug.composition.type", property, "gpu") > 0) {
66 if ((strncmp(property, "mdp", 3)) == 0) {
68 } else if ((strncmp(property, "c2d", 3)) == 0) {
70 } else if ((strncmp(property, "dyn", 3)) == 0) {
  /hardware/qcom/display/msm8960/libqdutils/
comptype.h 63 char property[PROPERTY_VALUE_MAX]; local
65 if (property_get("debug.composition.type", property, "gpu") > 0) {
66 if ((strncmp(property, "mdp", 3)) == 0) {
68 } else if ((strncmp(property, "c2d", 3)) == 0) {
70 } else if ((strncmp(property, "dyn", 3)) == 0) {

Completed in 236 milliseconds

12 3 4 5 6 7 8 91011>>