Home
last modified time | relevance | path

Searched refs:Property (Results 1 – 25 of 195) sorted by relevance

12345678

/external/owasp/sanitizer/src/main/org/owasp/html/
DCssSchema.java46 static final class Property { class in CssSchema
56 private Property( in Property() method in CssSchema.Property
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) { in CssSchema()
93 ImmutableMap.Builder<String, Property> propertiesBuilder = in withProperties()
96 Property prop = DEFINITIONS.get(propertyName); in withProperties()
111 Map<String, Property> properties = Maps.newLinkedHashMap(); in union()
128 Property forKey(String propertyName) { in forKey()
130 Property property = properties.get(propertyName); in forKey()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
DPropertyListIntersector.java15 import org.eclipse.wb.internal.core.model.property.Property;
38 public void intersect(Property[] properties) { in intersect()
42 Property property = properties[i]; in intersect()
58 public Property[] getProperties() { in getProperties()
59 List<Property> properties = Lists.newArrayList(); in getProperties()
61 Property compositeProperty = propertyGroup.getCompositeProperty(); in getProperties()
67 return properties.toArray(new Property[properties.size()]); in getProperties()
79 private final List<Property> m_properties = Lists.newArrayList();
86 public PropertyGroup(Property property) { in PropertyGroup()
98 public boolean add(Property[] properties) { in add()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
DComplexProperty.java31 public class ComplexProperty extends Property {
36 private Property[] m_properties;
44 this(title, text, new Property[0]); in ComplexProperty()
47 public ComplexProperty(String title, String text, Property[] properties) { in ComplexProperty()
91 public Property[] getProperties() { in getProperties()
98 public void setProperties(Property[] properties) { in setProperties()
105 public void setProperties(List<Property> properties) { in setProperties()
106 Property[] propertiesArray = properties.toArray(new Property[properties.size()]); in setProperties()
151 protected String getText(Property property) throws Exception { in getAdapter()
174 public Property[] getProperties(Property property) throws Exception {
[all …]
DProperty.java27 public abstract class Property { class
50 public Property(PropertyEditor editor) { in Property() method in Property
131 public Property getComposite(Property[] properties) { in getComposite()
212 public static final Comparator<Property> ALPHABETICAL = new Comparator<Property>() {
214 public int compare(Property p1, Property p2) {
220 public static final Comparator<Property> PRIORITY = new Comparator<Property>() {
222 public int compare(Property p1, Property p2) {
/external/lldb/source/Interpreter/
DOptionValueProperties.cpp73 Property property(defs[i]); in Initialize()
88 Property property(name, desc, is_global, value_sp); in AppendProperty()
231 const Property *property = GetPropertyAtIndex(NULL, false, idx); in GetPropertyNameAtIndex()
241 const Property *property = GetPropertyAtIndex(NULL, false, idx); in GetPropertyDescriptionAtIndex()
253 const Property *
259 const Property *
270 const Property *setting = GetPropertyAtIndex (exe_ctx, will_modify, idx); in GetPropertyValueAtIndex()
297 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueArch()
306 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsArgs()
329 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexFromArgs()
[all …]
/external/emma/core/java12/com/vladium/emma/data/
DCoverageOptionsFactory.java15 import com.vladium.util.Property;
29Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create()
33Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create()
37Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
46Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create()
50Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create()
54Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
/external/clang/test/Analysis/
Dmalloc.cpp79 struct Property { struct
81 Property(char* n) in Property() argument
85 void append(Property x);
88 append(Property(getterName)); in appendWrapper()
96 Property prop;
97 NestedProperty(Property p) in NestedProperty()
103 appendNested(NestedProperty(Property(getterName))); in appendWrapperNested()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DAbstractListPropertyEditor.java14 import org.eclipse.wb.internal.core.model.property.Property;
35 public String getText(Property property) throws Exception { in getText()
38 if (value != Property.UNKNOWN_VALUE) { in getText()
60 if (value != Property.UNKNOWN_VALUE) { in getValueSource()
87 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems()
94 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem()
99 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx()
127 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) in toPropertyEx_simpleProperty()
DEnumerationValuesPropertyEditor.java16 import org.eclipse.wb.internal.core.model.property.Property;
59 public String getText(Property property) throws Exception { in getText()
62 if (value != Property.UNKNOWN_VALUE) { in getText()
80 if (value != Property.UNKNOWN_VALUE) { in getValueSource()
107 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems()
114 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem()
119 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx()
DAbstractComboBoxPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
50 final Property property, in activate()
91 private void handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) { in handleKeyPressed()
102 public final void deactivate(PropertyTable propertyTable, Property property, boolean save) { in deactivate()
112 private void toProperty(PropertyTable propertyTable, Property property) { in toProperty()
126 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event) in keyDown()
144 protected abstract void addItems(Property property, CComboBox combo) throws Exception; in addItems()
149 protected void selectItem(Property property, CComboBox combo) throws Exception { in selectItem()
155 protected abstract void toPropertyEx(Property property, CComboBox combo) throws Exception; in toPropertyEx()
DPropertyEditor.java20 import org.eclipse.wb.internal.core.model.property.Property;
46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height) in paint()
69 public boolean activate(PropertyTable propertyTable, Property property, Point location) in activate()
90 public void deactivate(PropertyTable propertyTable, Property property, boolean save) { in deactivate()
99 public void doubleClick(Property property, Point location) throws Exception { in doubleClick()
105 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event) in keyDown()
DAbstractComboPropertyEditor.java14 import org.eclipse.wb.internal.core.model.property.Property;
45 …public boolean activate(final PropertyTable propertyTable, final Property property, Point location) in activate()
78 property.setValue(Property.UNKNOWN_VALUE); in activate()
114 public final void deactivate(PropertyTable propertyTable, Property property, boolean save) { in deactivate()
129 protected abstract void addItems(Property property, CCombo3 combo) throws Exception; in addItems()
134 protected abstract void selectItem(Property property, CCombo3 combo) throws Exception; in selectItem()
139 protected abstract void toPropertyEx(Property property, CCombo3 combo, int index) in toPropertyEx()
145 private void toProperty(PropertyTable propertyTable, Property property, int index) { in toProperty()
DStringComboPropertyEditor.java14 import org.eclipse.wb.internal.core.model.property.Property;
40 protected String getText(Property property) throws Exception { in getText()
50 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems()
57 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem()
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx()
DCharacterPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
57 protected String getEditorText(Property property) throws Exception { in getEditorText()
62 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
65 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DLongPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
57 protected String getEditorText(Property property) throws Exception { in getEditorText()
62 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
66 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DIntegerPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
57 protected String getEditorText(Property property) throws Exception { in getEditorText()
62 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
66 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DFloatPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
57 protected String getEditorText(Property property) throws Exception { in getEditorText()
62 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
66 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DShortPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
57 protected String getEditorText(Property property) throws Exception { in getEditorText()
62 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
66 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DDoublePropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
58 protected String getEditorText(Property property) throws Exception { in getEditorText()
63 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
67 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
DDoubleObjectPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception { in getText()
60 protected String getEditorText(Property property) throws Exception { in getEditorText()
65 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
69 property.setValue(Property.UNKNOWN_VALUE); in setEditorText()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
DButtonPropertyEditorPresentationImpl.java21 import org.eclipse.wb.internal.core.model.property.Property;
53 public final void hide(PropertyTable propertyTable, Property property) { in hide()
62 Property property, in show()
82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) { in setSelection()
97 private Control createControl(final PropertyTable propertyTable, final Property property) { in createControl()
140 protected Control createControlImpl(final PropertyTable propertyTable, final Property property) { in createControlImpl()
210 private final Map<Pair<PropertyTable, Property>, Control> m_map = Maps.newHashMap();
212 void put(PropertyTable propertyTable, Property property, Control control) { in put()
216 Control remove(PropertyTable propertyTable, Property property) { in remove()
220 Control get(PropertyTable propertyTable, Property property) { in get()
DButtonPropertyEditorPresentation.java15 import org.eclipse.wb.internal.core.model.property.Property;
58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { in setSelection()
69 final Property property, in show()
78 public final void hide(PropertyTable propertyTable, Property property) { in hide()
113 protected abstract void onClick(PropertyTable propertyTable, Property property) throws Exception; in onClick()
117 public void click(PropertyTable propertyTable, Property property) throws Exception { in click()
/external/clang/test/SemaObjC/
Dproperty-and-class-extension.m16 int Property; // expected-note {{previously declared 'Property' here}}
24 @property int Property; property
34 @synthesize Property; // expected-error {{property 'Property' attempting to use instance variable '
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
DStringPropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
62 public String getText(Property property) throws Exception { in getText()
76 protected String getEditorText(Property property) throws Exception { in getEditorText()
81 protected boolean setEditorText(Property property, String text) throws Exception { in setEditorText()
94 private void openDialog(PropertyTable propertyTable, Property property) throws Exception { in openDialog()
/external/emma/core/java12/com/vladium/emma/
DEMMAProperties.java20 import com.vladium.util.Property;
138 …final IProperties systemRedirects = wrap (Property.getSystemPropertyRedirects (EMMAProperties.SYST… in getAppProperties()
139 …final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loa… in getAppProperties()
142 final String fileName = Property.getSystemProperty (appName + ".properties"); in getAppProperties()
147 systemFile = wrap (Property.getLazyPropertiesFromFile (file)); in getAppProperties()
149 final IProperties system = wrap (Property.getSystemProperties (appName)); in getAppProperties()
150 … final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader)); in getAppProperties()

12345678