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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/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
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 6 * Verify that the property name is assigned to the property on the left
46 for ( property in object ) {
49 "with loop in a for...in loop. ("+object+")["+property +"] == "+
50 "eval ( " + property +" )",
52 object[property] == eval(property) );
62 for ( property in object ) {
66 "with loop in a for...in loop. ("+object+")["+property +"] == "+
67 "eval ( " + property +" )"
    [all...]
label-002.js 33 yoohoo: { for ( property in object ) { result += object[property]; }; break yoohoo };
37 "yoohoo: for ( property in object ) { result += object[property]; } break yoohoo }",
45 yoohoo: { for ( property in object ) { result += object[property]; break yoohoo } }; ;
49 "yoohoo: for ( property in object ) { result += object[property]; break yoohoo }}",
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 34 @property(readonly, copy) NSString *name;
35 @property(readonly) BOOL specified;
36 @property(copy) NSString *value;
37 @property(readonly, retain) DOMElement *ownerElement;
38 @property(readonly, retain) DOMCSSStyleDeclaration *style AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
45 @property(copy) NSString *data;
46 @property(readonly) unsigned length;
74 @property(readonly, retain) DOMDocument *document;
78 @property(readonly, retain) DOMDocumentType *doctype;
79 @property(readonly, retain) DOMImplementation *implementation
    [all...]
DOMObject.h 47 @property(readonly, retain) DOMStyleSheet *sheet;
  /external/qemu/
device_tree.h 20 const char *property, uint32_t *val_array, int size);
22 const char *property, uint32_t val);
24 const char *property, const char *string);
device_tree.c 76 const char *property, uint32_t *val_array, int size)
84 return fdt_setprop(fdt, offset, property, val_array, size);
88 const char *property, uint32_t val)
96 return fdt_setprop_cell(fdt, offset, property, val);
100 const char *property, const char *string)
108 return fdt_setprop_string(fdt, offset, property, string);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties;
27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>();
44 ViewNode.Property property = new ViewNode.Property(); local
45 property.name = "absolute_x";
46 property.value = String.valueOf(x);
47 privateProperties.add(property);
49 property = new ViewNode.Property()
63 ViewNode.Property property; local
    [all...]
  /external/webkit/WebCore/editing/
RemoveCSSPropertyCommand.h 37 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<CSSMutableStyleDeclaration> style, CSSPropertyID property)
39 return adoptRef(new RemoveCSSPropertyCommand(document, style, property));
43 RemoveCSSPropertyCommand(Document*, PassRefPtr<CSSMutableStyleDeclaration>, CSSPropertyID property);
RemoveCSSPropertyCommand.cpp 34 RemoveCSSPropertyCommand::RemoveCSSPropertyCommand(Document* document, PassRefPtr<CSSMutableStyleDeclaration> style, CSSPropertyID property)
37 , m_property(property)
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 45 * - property names: [._$a-zA-Z0-9]
144 /* A property name must be a valid fully-qualified class + package name.
177 // Read the property name.
180 throw new ParseException(st, "property name");
184 throw new ParseException(st, "valid property name");
207 // the same property is defined with a different type.
210 "(property previously declared as a different type)");
313 // This property is a float; make sure the value fits.
322 // This property is a double; no need to truncate.
355 * &lt;type&gt; &lt;property-name&gt; = &lt;value&gt;
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
PriviAction.java 48 * Creates a PrivilegedAction to get the security property with the given
51 * @param property
52 * the name of the property
56 public static PrivilegedAction<String> getSecurityProperty(String property) {
57 return new PriviAction<String>(GET_SECURITY_PROPERTY, property);
90 * Creates a PrivilegedAction to return the value of the system property
93 * @param property
94 * the key of the system property
98 public PriviAction(String property) {
100 arg1 = property;
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSetting.java 5 * distributed under the W3C's Software Intellectual Property License. This
23 * property name.
25 private final String property; field in class:DocumentBuilderSetting
28 * property value.
33 * strategy used to set or get property value.
202 * @param property property name, follows JAXP.
203 * @param value property value
207 String property,
210 if (property == null)
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentBuilderSetting.java 5 * distributed under the W3C's Software Intellectual Property License. This
23 * property name.
25 private final String property; field in class:DocumentBuilderSetting
28 * property value.
33 * strategy used to set or get property value.
202 * @param property property name, follows JAXP.
203 * @param value property value
207 String property,
210 if (property == null)
    [all...]
  /external/webkit/WebCore/bridge/c/
c_runtime.cpp 45 NPVariant property; local
46 VOID_TO_NPVARIANT(property);
51 result = obj->_class->getProperty(obj, _fieldIdentifier, &property);
55 JSValue result = convertNPVariantToValue(exec, &property, instance->rootObject());
56 _NPN_ReleaseVariantValue(&property);
  /external/webkit/WebCore/page/animation/
CompositeAnimation.h 73 bool isAnimatingProperty(int property, bool isRunningNow) const;
75 PassRefPtr<KeyframeAnimation> getAnimationForProperty(int property) const;
77 void overrideImplicitAnimations(int property);
78 void resumeOverriddenImplicitAnimations(int property);
81 bool pauseTransitionAtTime(int property, double t);
  /external/v8/test/mjsunit/
mirror-object.js 74 assertEquals('property', properties[i].type(), 'Unexpected mirror type');
75 assertEquals(names[i], properties[i].name(), 'Unexpected property name');
79 var property_mirror = mirror.property(p);
119 // If property type is normal property type is not serialized.
121 assertEquals(properties[i].propertyType(), fromJSON.properties[i].propertyType, 'Unexpected serialized property type');
123 assertTrue(typeof(fromJSON.properties[i].propertyType) === 'undefined', 'Unexpected serialized property type');
137 assertEquals(properties[i].value().type(), o.type, 'Unexpected serialized property type for ' + name);
141 assertEquals('NaN', o.value, 'Unexpected serialized property value for ' + name);
143 assertEquals(properties[i].value().value(), o.value, 'Unexpected serialized property value for ' + name)
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
enabled.js 5 for (var property in navigator) {
6 if (property == "geolocation")
  /frameworks/base/core/java/android/os/
Build.java 23 /** Value used for when a build property is unknown. */
199 private static String getString(String property) {
200 return SystemProperties.get(property, UNKNOWN);
203 private static long getLong(String property) {
205 return Long.parseLong(SystemProperties.get(property));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 109 // get the name of the property that changed, if any
110 String property = event != null ? event.getProperty() : null; local
112 if (property == null || PREFS_SDK_DIR.equals(property)) {
122 if (property == null || PREFS_BUILD_VERBOSITY.equals(property)) {
129 if (property == null || PREFS_BUILD_RES_AUTO_REFRESH.equals(property)) {
133 if (property == null || PREFS_BUILD_FORCE_ERROR_ON_NATIVELIB_IN_JAR.equals(property)) {
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 23 import com.vladium.util.Property;
28 * that are set via generic 'properties=&lt;file&gt;' attribute and &lt;property&gt;
57 // generic property element:
63 final PropertyElement property = new PropertyElement (); local
64 m_genericPropertyElements.add (property);
66 return property;
78 fileSettings = EMMAProperties.wrap (Property.getPropertiesFromFile (m_settingsFile));
83 + ": property file [" + m_settingsFile.getAbsolutePath () + "] could not be read" , ioe, m_task.getLocation ()).fillInStackTrace ();
103 final PropertyElement property = (PropertyElement) i.next (); local
105 final String name = property.getName ()
    [all...]
  /external/webkit/WebCore/inspector/front-end/
WatchExpressionsSidebarPane.js 103 var property = new WebInspector.ObjectPropertyProxy(expression, result);
104 property.watchIndex = watchIndex;
105 property.isException = exception;
109 if (property.name === WebInspector.WatchExpressionsSection.NewWatchExpression)
110 property.value.description = "";
117 // last property, and then call the superclass's updateProperties()
119 properties.push(property);
125 // which will always be the last property
178 this.watchExpressions[element.property.watchIndex] = value;
187 if (children[i].property.name === WebInspector.WatchExpressionsSection.NewWatchExpression
    [all...]
  /ndk/sources/cpufeatures/
Android.mk 5 # library if we detect ARMv7 through a system property.
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
XMLReaderFactory.java 60 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderFactory
68 * <li>If the system property <code>org.xml.sax.driver</code>
83 * property will often be usable.) </li>
93 * setting a good value for that property ensures that calls to this
110 // 1. try the JVM-instance-wide system property
111 try { className = System.getProperty (property); }
117 String service = "META-INF/services/" + property;
158 + "is system property org.xml.sax.driver set?");
  /external/webkit/WebCore/bindings/v8/custom/
V8CustomEventListener.cpp 56 v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent")); local
57 if (property->IsFunction())
58 return v8::Local<v8::Function>::Cast(property);

Completed in 2892 milliseconds

1 2 3 4 5 6 7 8 91011>>