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

1234567891011>>

/external/tpm2/
H A DPropertyCap.c15 // This function accepts a property selection and, if so, sets value to the value of the property.
21 // TRUE referenced property exists and value set
22 // FALSE referenced property does not exist
26 TPM_PT property, // IN: property
27 UINT32 *value // OUT: property value
30 switch(property)
415 // property is not defined
425 // This function is used to get the TPM_PT values. The search of properties will start at property an
25 TPMPropertyIsDefined( TPM_PT property, UINT32 *value ) argument
435 TPMCapGetProperties( TPM_PT property, UINT32 count, TPML_TAGGED_TPM_PROPERTY *propertyList ) argument
[all...]
/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...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
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...]
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
H A DPropertyDescriptorEditorProvider.java11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
H A DPropertyEditorProvider.java11 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>.
H A DTextControlActionsManager.java11 package org.eclipse.wb.internal.core.model.property.editor;
22 * @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/ImageMagick/coders/
H A Dthumbnail.c56 #include "MagickCore/property.h"
161 *property;
190 property=GetImageProperty(image,"exif:JPEGInterchangeFormat",exception);
191 if (property == (const char *) NULL)
193 offset=(ssize_t) StringToLong(property);
194 property=GetImageProperty(image,"exif:JPEGInterchangeFormatLength",exception);
195 if (property == (const char *) NULL)
197 length=(size_t) StringToLong(property);
156 *property; local
/external/clang/test/Modules/Inputs/
H A DDebugObjC.h10 @property int property; variable
/external/dtc/tests/
H A Dproperty_iterate.c38 int offset, property; local
43 * This property indicates the number of properties in our
48 FAIL("Missing/invalid test-properties property at '%s'",
58 fdt_for_each_property_offset(property, fdt, offset)
/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 241 milliseconds

1234567891011>>