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

1 2 3 4

  /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/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);
  /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);
  /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/bluetooth/bluez/plugins/
hal.c 102 const char *property = "system.formfactor"; local
120 dbus_message_append_args(message, DBUS_TYPE_STRING, &property,
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
regexp-enumerate-001.js 42 * 99.01.25: now they also have a multiLine instance property.
53 for ( p in r ) { e[e.length] = { property:p, value:r[p] }; t.addProperty( p, r[p]) };
57 "for ( p in r ) { e[e.length] = { property:p, value:r[p] }; e.length",
76 "Property: " + name +" already enumerated?",
81 testcases[testcases.length-1].reason = "property already enumerated";
  /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/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/css/
CSSStyleDeclaration.cpp 121 bool CSSStyleDeclaration::cssPropertyMatches(const CSSProperty* property) const
123 RefPtr<CSSValue> value = getPropertyCSSValue(property->id());
124 return value && value->cssText() == property->value()->cssText();
136 const CSSProperty& property = *it; local
137 if (cssPropertyMatches(&property))
138 propertiesToRemove.append(property.id());
  /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...]
  /dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java 121 ExportedProperty property; local
130 property = meth.getAnnotation(ExportedProperty.class);
131 mapping = property.mapping();
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 15 import com.vladium.util.Property;
184 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_FILE, local
186 return new File (property);
199 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_MERGE, local
201 return Property.toBoolean (property);
  /external/qemu/android/
boot-properties.c 36 char* property; member in struct:BootProperty
49 prop->property = p = (char*)(prop + 1);
81 * property name
97 D("Adding boot property: '%.*s' = '%.*s'",
135 qemud_client_send(client, (uint8_t*)prop->property, prop->length);
187 dwarning("boot property missing (=) separator: %s", param);
201 dwarning("boot property name too long: '%.*s'",
205 dwarning("boot property value too long: '%.*s'",
209 dwarning("boot property name contains invalid chars: %.*s",
  /dalvik/libcore/security/src/main/java/java/security/
Security.java 148 * the name of the property.
149 * @return value of the property.
434 * Returns the value of the security property named by the argument.
442 * the name of the requested security property.
443 * @return the value of the security property.
456 String property = secprops.getProperty(key); local
457 if (property != null) {
458 property = property.trim();
460 return property;
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Lookup.h 43 const char* key; // property name
73 GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; }
74 PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; }
97 } property; member in union:JSC::HashEntry::__anon6382
170 * getValueProperty in case of a non-function property, forwarding to parent if
171 * unknown property).
286 * It looks up a hash entry for the property to be set. If an entry
297 if (entry->attributes() & Function) { // function: put as override property
  /external/webkit/WebCore/platform/animation/
Animation.h 90 int property() const { return m_property; } function in class:WebCore::Animation
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
AndroidFontManager.java 79 * property file.
81 * RuntimeException is thrown if font property contains incorrect format of
84 * @return true is success, false if font property doesn't exist or doesn't
111 // Component Font Mappings property name
112 String property = FONT_MAPPING_KEYS[0].replaceAll("LogicalFontName", lName).replaceAll("StyleName", styleName).replaceAll("ComponentIndex", String.valueOf(numComp)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ local
113 value = props.getProperty(property);
117 property = FONT_MAPPING_KEYS[1].replaceAll("LogicalFontName", lName).replaceAll("ComponentIndex", String.valueOf(numComp)); //$NON-NLS-1$ //$NON-NLS-2$
118 value = props.getProperty(property);
134 // Component Font Character Encodings property value
137 // Exclusion Ranges property valu
    [all...]
  /frameworks/base/libs/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 115 char property[PROPERTY_VALUE_MAX]; local
116 if (property_get("debug.sf.hw", property, NULL) > 0) {
117 if (atoi(property) == 0) {
217 /* Read density from build-specific ro.sf.lcd_density property
220 if (property_get("qemu.sf.lcd_density", property, NULL) <= 0) {
221 if (property_get("ro.sf.lcd_density", property, NULL) <= 0) {
223 strcpy(property, "160");
227 mDpiX = mDpiY = atoi(property);
229 mDensity = atoi(property) * (1.0f/160.0f);
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 225 char property[PROPERTY_VALUE_MAX]; local
226 if (property_get("debug.sf.hw", property, NULL) > 0 && atoi(property) == 0)
  /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...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 160 ViewNode.Property property = new ViewNode.Property(); local
161 property.name = data.substring(start, index);
166 property.value = data.substring(index2 + 1, index2 + 1 + length);
168 node.properties.add(property);
169 node.namedProperties.put(property.name, property);
177 Collections.sort(node.properties, new Comparator<ViewNode.Property>() {
178 public int compare(ViewNode.Property source, ViewNode.Property destination)
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 59 /** Java property that defines the location of the sdk/tools directory. */
61 /** Java property that defines the working directory. On Windows the current working directory
138 // We get passed a property for the tools dir
162 errorAndExit("The tools directory property is not set, please make sure you are executing %1$s",
166 // We might get passed a property for the working directory
1051 HardwareProperty property = hwProperties[i]; local
    [all...]
  /dalvik/libcore/logging/src/main/java/java/util/logging/
FileHandler.java 50 * initialization; if a property is not defined or has an invalid value, a
78 * specified by "user.home" system property</li>
353 // get boolean LogManager property, if invalid value got, using default
356 String property = manager.getProperty(key); local
357 if (null == property) {
361 if ("true".equalsIgnoreCase(property)) { //$NON-NLS-1$
363 } else if ("false".equalsIgnoreCase(property)) { //$NON-NLS-1$
369 // get String LogManager property, if invalid value got, using default value
371 String property = manager.getProperty(key); local
372 return property == null ? defaultValue : property
377 String property = manager.getProperty(key); local
    [all...]
  /external/bluetooth/bluez/network/
connection.c 155 const char *property = ""; local
161 DBUS_TYPE_STRING, &property);
164 DBUS_TYPE_STRING, &property);
477 const char *property; local
506 property = nc ? nc->dev : "";
507 dict_append_entry(&dict, "Device", DBUS_TYPE_STRING, &property);
510 property = nc ? bnep_uuid(nc->id) : "";
511 dict_append_entry(&dict, "UUID", DBUS_TYPE_STRING, &property);

Completed in 945 milliseconds

1 2 3 4