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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/intl/break-iterator/
property-override.js 41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
56 assertEquals(expectedProperties.length, properties.length);
58 properties.forEach(function(prop) {
62 taintProperties(properties);
  /external/v8/test/intl/collator/
property-override.js 41 // properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
57 assertEquals(expectedProperties.length, properties.length);
59 properties.forEach(function(prop) {
63 taintProperties(properties);
  /external/v8/test/intl/date-format/
property-override.js 41 // properties.
43 // First get supported properties.
44 // Some of the properties are optional, so we request them.
45 var properties = []; variable
52 properties.push(prop);
62 assertEquals(expectedProperties.length, properties.length);
64 properties.forEach(function(prop) {
68 taintProperties(properties);
  /external/v8/test/intl/number-format/
property-override.js 41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
45 // Some properties are optional and won't show up in resolvedOptions if
54 properties.push(prop);
66 assertEquals(expectedProperties.length, properties.length);
68 properties.forEach(function(prop) {
72 taintProperties(properties);
  /system/connectivity/shill/test-scripts/
list-services 8 properties = service.GetProperties(utf8_strings = True) variable
12 for key in properties.keys():
14 (key, flimflam.convert_dbus_value(properties[key], 4))
get-profile-entry 37 properties = profile.GetEntry(entry_name) variable
38 for key in properties.keys():
40 (key, flimflam.convert_dbus_value(properties[key], 4))
check-rssi 38 properties = service.GetProperties(utf8_strings = True) variable
39 if "Name" not in properties:
42 name = properties["Name"]
45 (name, int(strength.get(name, -1)), int(properties.get("Strength", -1)))
get-service 31 properties = service.GetProperties(utf8_strings = True) variable
35 for key in properties.keys():
37 (key, flimflam.convert_dbus_value(properties[key], 4))
list-ipconfigs 20 properties = device.GetProperties(utf8_strings = True) variable
21 for path in properties["IPConfigs"]:
show-introspection 13 properties = manager.GetProperties(utf8_strings = True) variable
15 for path in properties["Devices"]:
  /system/connectivity/shill/
key_value_store.h 33 // expose its instance members as properties accessible via
137 const brillo::VariantDictionary& properties() const { function in class:shill::KeyValueStore
dhcp_properties.h 46 // Loads DHCP properties from |storage| in group |id|.
49 // Saves DHCP properties to |storage| in group |id|.
72 const KeyValueStore& properties() const { return properties_; }; function in class:shill::DhcpProperties
geolocation_info.h 30 // This class stores properties (key-value pairs) for a single entity
40 const std::map<std::string, std::string> properties() const { function in class:shill::GeolocationInfo
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 38 List<ICalendar.Property> properties = local
40 assertTrue(properties == null);
47 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
48 assertTrue(properties.size() == 1);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestUtils.java 24 import java.util.Properties;
71 Properties properties = System.getProperties(); local
73 properties.remove(key);
75 properties.setProperty(key, value);
77 System.setProperties(properties);
  /external/oauth/core/src/main/java/net/oauth/
OAuthConsumer.java 25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to
48 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthConsumer
51 return properties.get(name);
55 properties.put(name, value);
  /external/vogar/test/vogar/target/
TestRunnerRule.java 20 import java.util.Properties;
36 private Properties properties; field in class:TestRunnerRule
43 properties = new Properties();
69 properties.setProperty(key, value);
74 properties.setProperty(key, String.valueOf(value));
78 properties.setProperty(key, String.valueOf(value));
86 * Create the {@link TestRunner} using properties provided by {@link TestRunnerProperties} if
92 if (properties == null)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemProperties_Delegate.java 43 Map<String, String> properties = Bridge.getPlatformProperties(); local
44 String value = properties.get(key);
53 Map<String, String> properties = Bridge.getPlatformProperties(); local
54 String value = properties.get(key);
64 Map<String, String> properties = Bridge.getPlatformProperties(); local
65 String value = properties.get(key);
79 Map<String, String> properties = Bridge.getPlatformProperties(); local
80 String value = properties.get(key);
97 Map<String, String> properties = Bridge.getPlatformProperties(); local
98 properties.put(key, def)
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 25 import java.util.Properties;
72 Properties properties = System.getProperties(); local
74 properties.remove(key);
76 properties.setProperty(key, value);
78 System.setProperties(properties);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
PropertiesHelperTest.java 5 import java.util.Properties;
20 Properties properties = new Properties(); local
21 properties.setProperty("result", "{${first.value} + ${system.value.xbf5547}}");
23 properties.setProperty("first.value", "first");
24 PropertiesHelper.doSubstitutions(properties);
25 assertEquals("{first + system}", properties.getProperty("result"));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPAliasInfo.java 10 package com.adobe.xmp.properties;
XMPProperty.java 10 package com.adobe.xmp.properties;
XMPPropertyInfo.java 10 package com.adobe.xmp.properties;
17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
  /libcore/ojluni/src/main/java/java/util/
PropertyResourceBundle.java 56 * <code>PropertyResourceBundle</code>. Instead, you supply properties
58 * will automatically look for the appropriate properties file and create a
69 * therefore is the content of the file "MyResources_de.properties"
114 * @see Properties
129 Properties properties = new Properties(); local
130 properties.load(stream);
131 lookup = new HashMap(properties);
147 Properties properties = new Properties() local
    [all...]
  /system/connectivity/shill/cellular/
modem_classic.cc 71 InterfaceToProperties properties; local
72 properties[MM_MODEM_INTERFACE] = modem_properties;
73 CreateDeviceFromModemProperties(properties);

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>