/external/bluetooth/bluedroid/utils/src/ |
bt_utils.c | 28 #include <cutils/properties.h>
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar | |
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar | |
org.eclipse.osgi.util_3.2.100.v20100503.jar | |
/external/srec/seti/sltsEngine/include/ |
lts_seq_internal.h | 91 int properties[ NumQuestionTypes]; member in struct:LDP
|
/external/webkit/Source/JavaScriptCore/heap/ |
MarkStack.h | 66 void appendValues(WriteBarrierBase<Unknown>* barriers, size_t count, MarkSetProperties properties = NoNullValues) 70 m_markSets.append(MarkSet(values, values + count, properties)); 93 MarkSet(JSValue* values, JSValue* end, MarkSetProperties properties) 96 , m_properties(properties)
|
/external/webkit/Source/WebCore/inspector/front-end/ |
EventListenersSidebarPane.js | 129 // Changed from a Properties List 180 this.propertiesElement.className = "event-properties properties-tree source-code"; /* Changed from "properties" */ 188 var properties = []; 190 properties.push(new WebInspector.RemoteObjectProperty("node", nodeObject)); 194 properties.push(new WebInspector.RemoteObjectProperty(propertyName, value)); 196 this.updateProperties(properties);
|
WatchExpressionsSidebarPane.js | 99 // In the outer function, we calculate the number of properties 104 // method to get all the properties refreshed at once. 105 properties.push(property); 107 if (properties.length == propertyCount) { 108 this.updateProperties(properties, WebInspector.WatchExpressionTreeElement, WebInspector.WatchExpressionsSection.CompareProperties); 124 var properties = []; 126 // Count the properties, so we known when to call this.updateProperties()
|
/external/webkit/Source/WebKit/android/wds/ |
DebugServer.cpp | 35 #include <cutils/properties.h>
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
peers.h | 47 virtual void properties();
|
/frameworks/base/services/java/com/android/server/location/ |
LocationProviderProxy.java | 99 ProviderProperties properties = null; 113 // load properties from provider 114 properties = service.getProperties(); 115 if (properties == null) { 117 " has invalid locatino provider properties"); 135 mProperties = properties;
|
/frameworks/native/opengl/libs/GLES2/ |
gl2.cpp | 27 #include <cutils/properties.h>
|
/ndk/build/tools/ |
dev-cleanup.sh | 74 clean_file $1/local.properties
|
/system/core/libsysutils/src/ |
ServiceManager.cpp | 8 #include <cutils/properties.h>
|
/system/vold/ |
Ext4.cpp | 39 #include <cutils/properties.h>
|
/tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/command/ |
BackupHandler.java | 28 import java.util.Properties;
167 Properties typeProperties = new Properties();
238 private void putKsType(Properties properties, String entryName, String filePaths)
250 properties.put(entryName, type);
258 private void putLastBackupDate(Properties properties)
262 properties.put("lastBackupDate", timeString);
|
/tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/logic/ |
StartEmulatorProcessLogic.java | 25 import java.util.Properties; 123 Properties propArgs = instance.getCommandLineArgumentsAsProperties(); 181 Properties properties = instance.getProperties(); local 182 if (properties != null) 185 properties.getProperty(IDevicePropertiesConstants.useProxy, 232 if (properties != null) 235 properties.getProperty(IDevicePropertiesConstants.startFromSnapshot, 244 if (properties != null) 247 properties.getProperty(IDevicePropertiesConstants.saveSnapshot [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_core.c | 36 #include <cutils/properties.h> 841 bt_property_t properties[6]; local 853 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDADDR, 855 btif_storage_get_adapter_property(&properties[num_props]); 859 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDNAME, 861 btif_storage_get_adapter_property(&properties[num_props]); 865 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_SCAN_MODE, 867 btif_storage_get_adapter_property(&properties[num_props]); 871 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_DISCOVERY_TIMEOUT, 873 btif_storage_get_adapter_property(&properties[num_props]) [all...] |
/external/v8/test/mjsunit/ |
object-create.js | 29 // We do not support nonconfigurable properties on objects so that is not 69 // Simple object with prototype, no properties added. 73 // Simple object with object with prototype, no properties added. 89 // Ensure by default properties are not writable. 151 // Instead of a plain props object, let's use getters to return its properties. 163 // We shouldn't throw the exception for an ambiguous properties object 223 // Ensure that only enumerable own properties on the descriptor are used.
|
mirror-error.js | 57 // Check the mirror properties. 69 for (var i in fromJSON.properties) { 70 var p = fromJSON.properties[i];
|
object-get-own-property-names.js | 54 // Check that non-enumerable properties are being returned. 64 // Check that no proto properties are returned. 72 // Check that getter properties are returned.
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
PropertiesTest.java | 38 import java.util.Properties; 46 Properties tProps; 51 * @tests java.util.Properties#Properties() 54 // Test for method java.util.Properties() 55 Properties p = new Properties(); 58 assertTrue("Created incorrect Properties", true); 62 Properties p = new Properties(); 86 Properties properties = new Properties(systemProperties); local 570 Properties properties = new Properties(); local 627 Properties properties = new Properties(defaults); local [all...] |
/tools/motodev/src/plugins/android/src/com/motorola/studio/android/monkey/options/ |
MonkeyOptionsMgt.java | 24 import java.util.Properties;
569 * Load values from a Properties object
571 * @param properties properties object containing the values that must be loaded into de model
573 private static void loadValues(Properties properties)
586 soValue = properties.getProperty(monkeyOption.getName());
604 * Create a properties object with the information contained in a command line
607 * @return properties object with the information contained in a command line
609 public static Properties parseCommandLine(String commandLine) 611 Properties properties = new Properties(); local [all...] |
/tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/instance/options/ |
StartupOptionsMgt.java | 24 import java.util.Properties; 555 * Load values from a Properties object 557 * @param properties properties object containing the values that must be loaded into de model 559 private static void loadValues(Properties properties) 572 soValue = properties.getProperty(startupOption.getName()); 590 * Create a properties object with the information contained in a command line 593 * @return properties object with the information contained in a command line 595 public static Properties parseCommandLine(String commandLine 597 Properties properties = new Properties(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
Sdk.java | 359 * and a quick checksum of the source.properties files. It's possible to have 362 * directory without altering the source.properties.) 380 * Initializes a new project with a target. This creates the <code>project.properties</code> 397 ProjectPropertiesWorkingCopy properties = null; local 400 properties = state.getProperties().makeWorkingCopy(); 403 if (properties == null) { 410 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT); 414 properties.setProperty(ProjectProperties.PROPERTY_TARGET, target.hashString()); 415 properties.save(); 441 // load the project.properties from the project folder 450 ProjectProperties properties = ProjectProperties.load(projectLocation, local [all...] |