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

1234567891011>>

/external/v8/tools/
H A Ddetect-builtins.js30 var property = { "name": name };
34 property.type = "getter";
35 result[name] = property;
39 property.type = type;
41 property.length = value.length; class
42 property.prototype = GetProperties("prototype", value.prototype);
45 property.value = value;
47 property.properties = GetProperties(name, value);
49 result[name] = property;
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
H A DAgentTask.java22 private String property; field in class:AgentTask
25 * Sets the name of the property to hold the agent JVM options
27 * @param property
28 * Name of the property to be populated
30 public void setProperty(final String property) { argument
31 this.property = property;
36 * <code>property</code> with the JVM arguments required to use it. The
37 * value set into the property is only valid for the lifetime of the current
42 if (property
[all...]
/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...]
/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/jline/src/src/main/java/jline/
H A DConsoleRunner.java24 public static final String property = "jline.history"; field in class:ConsoleRunner
37 historyFileName = System.getProperty(ConsoleRunner.property, null);
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMapFieldAccessor.cs44 internal MapFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor) argument
H A DRepeatedFieldAccessor.cs44 internal RepeatedFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor) argument
/external/toybox/toys/android/
H A Dstart.c34 char *property = start ? "ctl.start" : "ctl.stop"; local
49 if (__system_property_set(property, *ss))
50 error_exit("failed to set property '%s' to '%s'", property, *ss);
/external/tpm2/
H A DGetCapability_fp.h14 UINT32 property; member in struct:__anon21080

Completed in 550 milliseconds

1234567891011>>