/external/bluetooth/bluez/test/ |
test-adapter | 28 properties = adapter.GetProperties() variable 29 print properties["Address"] 34 properties = adapter.GetProperties() variable 35 print properties["Name"] 42 properties = adapter.GetProperties() variable 43 print properties["Powered"] 56 properties = adapter.GetProperties() variable 57 print properties["Pairable"] 70 properties = adapter.GetProperties() variable 71 print properties["PairableTimeout" 79 properties = adapter.GetProperties() variable 93 properties = adapter.GetProperties() variable 101 properties = adapter.GetProperties() variable [all...] |
list-devices | 37 properties = adapter.GetProperties() variable 38 for key in properties.keys(): 39 value = properties[key] 47 device_list = properties["Devices"] 56 properties = device.GetProperties() variable 57 for key in properties.keys(): 58 value = properties[key] 71 node_list = properties["Nodes"] 80 properties = node.GetProperties() variable 81 for key in properties.keys() [all...] |
test-discovery | 8 def device_found(address, properties): 11 for key in properties.keys(): 12 value = properties[key]
|
test-device | 78 properties = device.GetProperties() variable 79 print "0x%06x" % (properties["Class"]) 89 properties = device.GetProperties() variable 90 print properties["Name"] 101 properties = device.GetProperties() variable 102 print properties["Alias"] 115 properties = device.GetProperties() variable 116 print properties["Trusted"]
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/ |
MidiFileFormat.java | 37 private HashMap<String, Object> properties; field in class:MidiFileFormat 46 this.properties = new HashMap<String, Object>(); 50 long microseconds, Map<String, Object> properties) { 57 this.properties = new HashMap<String, Object>(); 58 this.properties.putAll(properties); 74 return properties.get(key); 85 public Map<String, Object> properties() { method in class:MidiFileFormat 86 return Collections.unmodifiableMap(properties);
|
/external/emma/core/java12/com/vladium/emma/data/ |
CoverageOptionsFactory.java | 11 import java.util.Properties; 26 public static CoverageOptions create (final Properties properties) 29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, 33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, 37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, 43 public static CoverageOptions create (final IProperties properties) 46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, 50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, 54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION [all...] |
/external/webkit/WebCore/css/ |
CSSMutableStyleDeclaration.cpp | 61 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties, unsigned variableDependentValueCount) 63 , m_properties(properties) 72 // FIXME: This allows duplicate properties. 75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties) 86 ASSERT(properties[i]); 87 m_properties.append(*properties[i]); 88 if (properties[i]->value()->isVariableDependentValue()) 91 // FIXME: This allows duplicate properties. 109 // Shorthand and 4-values properties 113 const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY } local 117 const int properties[2] = { CSSPropertyBackgroundRepeatX, CSSPropertyBackgroundRepeatY }; local 121 const int properties[9] = { CSSPropertyBackgroundColor, local 133 const int properties[3][4] = {{ CSSPropertyBorderTopWidth, local 158 const int properties[3] = { CSSPropertyBorderTopWidth, CSSPropertyBorderTopStyle, local 163 const int properties[3] = { CSSPropertyBorderRightWidth, CSSPropertyBorderRightStyle, local 168 const int properties[3] = { CSSPropertyBorderBottomWidth, CSSPropertyBorderBottomStyle, local 173 const int properties[3] = { CSSPropertyBorderLeftWidth, CSSPropertyBorderLeftStyle, local 178 const int properties[3] = { CSSPropertyOutlineWidth, CSSPropertyOutlineStyle, local 183 const int properties[4] = { CSSPropertyBorderTopColor, CSSPropertyBorderRightColor, local 188 const int properties[4] = { CSSPropertyBorderTopWidth, CSSPropertyBorderRightWidth, local 193 const int properties[4] = { CSSPropertyBorderTopStyle, CSSPropertyBorderRightStyle, local 198 const int properties[4] = { CSSPropertyMarginTop, CSSPropertyMarginRight, local 203 const int properties[2] = { CSSPropertyOverflowX, CSSPropertyOverflowY }; local 207 const int properties[4] = { CSSPropertyPaddingTop, CSSPropertyPaddingRight, local 212 const int properties[3] = { CSSPropertyListStyleType, CSSPropertyListStylePosition, local 218 const int properties[2] = { CSSPropertyWebkitMaskPositionX, CSSPropertyWebkitMaskPositionY }; local 222 const int properties[2] = { CSSPropertyWebkitMaskRepeatX, CSSPropertyWebkitMaskRepeatY }; local 226 const int properties[] = { CSSPropertyWebkitMaskImage, CSSPropertyWebkitMaskRepeat, local 232 const int properties[3] = { CSSPropertyWebkitTransformOriginX, local 238 const int properties[4] = { CSSPropertyWebkitTransitionProperty, CSSPropertyWebkitTransitionDuration, local 243 const int properties[6] = { CSSPropertyWebkitAnimationName, CSSPropertyWebkitAnimationDuration, local 672 const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY }; local [all...] |
CSSPropertyLonghand.h | 40 const int* properties() const { return m_properties; } function in class:WebCore::CSSPropertyLonghand
|
/dalvik/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);
|
/system/core/toolbox/ |
setprop.c | 3 #include <cutils/properties.h>
|
start.c | 6 #include <cutils/properties.h>
|
stop.c | 4 #include <cutils/properties.h>
|
/dalvik/libcore/sql/src/test/java/tests/support/ |
Support_SQL.java | 25 import java.util.Properties; 52 .getResourceAsStream("/connection.properties")); 93 Properties properties = new Properties(); local 94 properties.load(fileName); 95 sqlDriver = properties.getProperty("sqlDriver"); 96 sqlLogin = properties.getProperty("sqlLogin"); 97 sqlCatalog = properties.getProperty("sqlCatalog"); 98 sqlHost = properties.getProperty("sqlHost") [all...] |
/external/easymock/src/org/easymock/internal/ |
EasyMockProperties.java | 22 import java.util.Properties;
25 * Contains properties used by EasyMock to change its default behavior. The
26 * loading order is (any step being able to overload the properties of the
29 * <li>easymock.properties in classpath default package</li>
30 * <li>System properties</li>
41 private final Properties properties = new Properties();
field in class:EasyMockProperties 57 // Load the easymock.properties file
59 "easymock.properties");
[all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
ApkSettings.java | 35 public ApkSettings(ProjectProperties properties) { 36 boolean splitByDensity = Boolean.parseBoolean(properties.getProperty( 71 * @param properties the {@link ProjectProperties} in which to store the settings. 73 public void write(ProjectProperties properties) {
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 26 private List<ViewNode.Property> properties; field in class:PropertiesTableModel 30 properties = node.properties; 58 (properties == null ? 0 : properties.size()); 68 property = properties.get(row - privateProperties.size());
|
/external/webkit/WebKit/chromium/tests/ |
UniscribeHelperTest.cpp | 69 // Default font properties structure for tests to use. 70 SCRIPT_FONTPROPERTIES properties; member in class:__anon6561::UniscribeTest 75 memset(&properties, 0, sizeof(SCRIPT_FONTPROPERTIES)); 76 properties.cBytes = sizeof(SCRIPT_FONTPROPERTIES); 77 properties.wgBlank = ' '; 78 properties.wgDefault = '?'; // Used when the char is not in the font. 79 properties.wgInvalid = '#'; // Used for invalid characters. 118 false, hfont, scriptCache, &properties); 151 false, hfont, scriptCache, &properties);
|
/ndk/build/tools/ |
cleanup-apps.sh | 11 rm -f $projectPath/local.properties
|
/external/emma/core/java12/com/vladium/emma/ |
AppLoggers.java | 36 public static Logger create (final String appName, final IProperties properties, final Logger base) 38 if (properties == null) 39 throw new IllegalArgumentException ("null input: properties"); 45 final String _level = properties.getProperty (PROPERTY_VERBOSITY_LEVEL, 54 final String _filter = properties.getProperty (PROPERTY_VERBOSITY_FILTER);
|
EMMAProperties.java | 15 import java.util.Properties; 26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource 99 * Wraps a Properties into a IProperties with the app's standard property 102 * @param properties [null results in null result] 104 public static IProperties wrap (final Properties properties) 106 if (properties == null) return null; 108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER); 112 * Retrieves application properties as classloader resource with a given name. 116 * @return properties [can be null 127 IProperties properties = (IProperties) s_properties.get (loader); local [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
forin-001.js | 102 var properties = new Array(); 105 for ( properties[properties.length] in object ) { 106 values[values.length] = object[properties[properties.length-1]]; 119 "properties.length", 121 properties.length ); 125 "object["+properties[0]+"]", 127 object[properties[0]] ); 267 var properties = new Array() [all...] |
/hardware/libhardware_legacy/gps/ |
gps.cpp | 2 #include <cutils/properties.h>
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
AndroidVersion.java | 19 import java.util.Properties; 50 * @see AndroidVersion#AndroidVersion(Properties) 70 * Creates an {@link AndroidVersion} from {@link Properties}, with default values if the 71 * {@link Properties} object doesn't contain the expected values. 72 * <p/>The {@link Properties} is expected to have been filled with 73 * {@link #saveProperties(Properties)}. 75 public AndroidVersion(Properties properties, int defaultApiLevel, String defaultCodeName) { 76 if (properties == null) { 80 mApiLevel = Integer.parseInt(properties.getProperty(PROP_API_LEVEL [all...] |
/external/v8/test/mjsunit/ |
mirror-object.js | 56 // Check the mirror properties. 69 var properties = mirror.properties() 70 assertEquals(names.length, properties.length); 71 for (var i = 0; i < properties.length; i++) { 72 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierachy'); 73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierachy'); 74 assertEquals('property', properties[i].type(), 'Unexpected mirror type'); 75 assertEquals(names[i], properties[i].name(), 'Unexpected property name'); 82 // If the object has some special properties don't test for these [all...] |
/external/webkit/JavaScriptCore/runtime/ |
MarkStack.h | 52 ALWAYS_INLINE void appendValues(Register* values, size_t count, MarkSetProperties properties = NoNullValues) 54 appendValues(reinterpret_cast<JSValue*>(values), count, properties); local 57 ALWAYS_INLINE void appendValues(JSValue* values, size_t count, MarkSetProperties properties = NoNullValues) 60 m_markSets.append(MarkSet(values, values + count, properties)); 76 MarkSet(JSValue* values, JSValue* end, MarkSetProperties properties) 79 , m_properties(properties)
|