HomeSort by relevance Sort by last modified time
    Searched defs:property (Results 1 - 25 of 1260) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/
detect-builtins.js 30 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/v8/test/mjsunit/es6/
proxies-get.js 10 property: "value"
16 assertEquals("value", proxy.property);
21 assertEquals("value 2", proxy.property);
27 assertEquals("value 3", proxy2.property);
35 assertThrows("proxy.property", Error);
39 var target = {property:"value"}; property
41 assertEquals("value", proxy.property);
47 var target = {property:"value"};
49 assertEquals("value", proxy.property);
57 assertEquals("value", proxy.property);
9 property: "value" property
    [all...]
  /external/clang/test/Modules/Inputs/
DebugObjC.h 9 @property int property; variable
  /external/v8/test/mjsunit/compiler/
property-static.js 34 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;
  /system/core/toolbox/
start_stop.cpp 18 const char* property = start ? "ctl.start" : "ctl.stop"; local
22 property_set(property, argv[1]);
26 property_set(property, services[i]);
30 property_set(property, services[i]);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
MethodProperty.java 24 * A <code>MethodProperty</code> is a <code>Property</code> which is accessed
33 private final PropertyDescriptor property; field in class:MethodProperty
37 public MethodProperty(PropertyDescriptor property) {
38 super(property.getName(), property.getPropertyType(),
39 property.getReadMethod() == null ? null : property.getReadMethod()
41 this.property = property;
42 this.readable = property.getReadMethod() != null
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 26 String property = System.getProperty("com.ibm.oti.configuration"); local
27 if (property == null) {
28 property = "JDK";
30 platformId = property
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
CustomVCardEntry.java 40 public void addProperty(VCardProperty property) {
41 super.addProperty(property);
42 mAllProperties.put(property.getName(), property); local
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
CharacterPropertyEditor.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...]
ITextValuePropertyEditor.java 11 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;
IValueSourcePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
18 * @coverage core.model.property.editor
DoubleObjectPropertyEditor.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...]
DoublePropertyEditor.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();
58 protected String getEditorText(Property property) throws Exception {
59 return getText(property);
    [all...]
FloatPropertyEditor.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...]
IntegerObjectPropertyEditor.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...]
IntegerPropertyEditor.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...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) {
27 return property.getCategory();
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProvider.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
16 * This interface is used to get {@link PropertyCategory} for {@link Property}.
19 * @coverage core.model.property
23 * @return the {@link PropertyCategory} of given Property, not <code>null</code>.
25 PropertyCategory getCategory(Property property);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
18 * {@link Property} modifications using {@link PropertyEditor}'s.
21 * @coverage core.model.property.table
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
AgentTask.java 22 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) {
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 == null || property.length() == 0)
    [all...]
  /external/tpm2/
GetCapability_fp.h 14 UINT32 property; member in struct:__anon23200
  /frameworks/base/core/jni/android/graphics/
RtlProperties.h 41 char property[PROPERTY_VALUE_MAX]; local
42 if (property_get(RTL_PROPERTY_DEBUG, property, NULL) > 0) {
43 return (RtlDebugLevel) atoi(property);
  /external/guava/guava-tests/test/com/google/common/base/
StandardSystemPropertyTest.java 29 for (StandardSystemProperty property : StandardSystemProperty.values()) {
30 String fieldName = property.name();
32 assertEquals(expected, property.key());
37 for (StandardSystemProperty property : StandardSystemProperty.values()) {
38 assertEquals(System.getProperty(property.key()), property.value());
43 for (StandardSystemProperty property : StandardSystemProperty.values()) {
44 assertEquals(property.key() + "=" + property.value(), property.toString())
    [all...]
  /external/testng/src/main/java/org/testng/
ReporterConfig.java 29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
37 m_properties.add(property);
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i); local
60 sb.append(property.getName());
62 sb.append(property.getValue());
86 Property property = new Property() local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
PropertyListIntersector.java 11 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;
22 * Helper for computing intersection of {@link Property} arrays.
38 public void intersect(Property[] properties) {
42 Property property = properties[i]; local
43 m_intersection.add(new PropertyGroup(property));
56 * @return the array of matched composite {@link Property}'s.
    [all...]

Completed in 814 milliseconds

1 2 3 4 5 6 7 8 91011>>