HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 76 - 100 of 550) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/tools/emulator/system/camera/
EmulatedFakeCamera.cpp 25 #include <cutils/properties.h>
  /development/tools/emulator/system/qemu-props/
qemu-props.c 17 /* this program is used to read a set of system properties and their values
19 * system. It does so by connecting to the 'boot-properties' qemud service.
36 #include <cutils/properties.h>
42 #define QEMUD_SERVICE "boot-properties"
55 qemud_fd = qemud_channel_open( "boot-properties" );
88 /* lone NUL-byte signals end of properties */
114 DD("exiting (%d properties set).", count);
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase.h 19 // properties associated with files.
42 explicit FileMetadataPropertyIterator(PropertyMap& properties);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
shell.js 187 var properties = new Array();
189 properties[ properties.length ] = new Array( p, o[p] );
191 return properties;
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new.py 36 def propertiesChanged(properties):
37 if properties.has_key("State"):
38 print "PropertiesChanged: State: %s" % (properties["State"])
89 def bssAdded(bss, properties):
  /frameworks/base/cmds/bootanimation/
bootanimation_main.cpp 19 #include <cutils/properties.h>
  /frameworks/base/libs/hwui/
Properties.h 20 #include <cutils/properties.h>
24 * This file contains the list of system properties used to configure
55 // These properties are defined in mega-bytes
64 // These properties are defined in pixels
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 35 import java.util.Properties;
53 GpsXtraDownloader(Context context, Properties properties) {
56 // read XTRA servers from the Properties object
58 String server1 = properties.getProperty("XTRA_SERVER_1");
59 String server2 = properties.getProperty("XTRA_SERVER_2");
60 String server3 = properties.getProperty("XTRA_SERVER_3");
  /libcore/dalvik/src/main/java/dalvik/system/
VMRuntime.java 53 public native String[] properties(); method in class:VMRuntime
  /sdk/emulator/tools/
qemu-props.c 17 /* this program is used to read a set of system properties and their values
19 * system. It does so by connecting to the 'boot-properties' qemud service.
36 #include <cutils/properties.h>
42 #define QEMUD_SERVICE "boot-properties"
55 qemud_fd = qemud_channel_open( "boot-properties" );
88 /* lone NUL-byte signals end of properties */
114 DD("exiting (%d properties set).", count);
  /system/core/libcutils/
partition_utils.c 23 #include <cutils/properties.h>
process_name.c 19 #include <cutils/properties.h>
  /system/core/nexus/
OpenVpnController.cpp 23 #include <cutils/properties.h>
  /system/core/toolbox/
getprop.c 4 #include <cutils/properties.h>
21 /* Record properties in the string list */
  /external/gtest/test/
gtest_stress_test.cc 69 void ExpectKeyAndValueWereRecordedForId(const List<TestProperty>& properties,
73 const ListNode<TestProperty>* node = properties.FindIf(matches_key);
  /external/protobuf/gtest/test/
gtest_stress_test.cc 67 void ExpectKeyAndValueWereRecordedForId(const Vector<TestProperty>& properties,
71 const TestProperty* property = properties.FindIf(matches_key);
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
window-property.js 1 description("Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present.");
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
window-property.js 1 description('Tests that the window.DeviceOrientationEvent and window.ondeviceorientation properties are present.');
  /libcore/luni/src/main/java/java/util/jar/
Pack200.java 185 * Returns a sorted map of the properties of this packer.
187 * @return the properties of the packer.
189 SortedMap<String, String> properties(); method in interface:Pack200.Packer
266 * Returns a sorted map of the properties of this unpacker.
268 * @return the properties of unpacker.
270 SortedMap<String, String> properties(); method in interface:Pack200.Unpacker
  /development/build/
sdk.atree 40 development/sdk/plat_tools_source.properties platform-tools/source.properties
64 development/sdk/platform_source.properties platforms/${PLATFORM_NAME}/source.properties
86 # Platform SDK properties
87 development/sdk/sdk.properties platforms/${PLATFORM_NAME}/sdk.properties
135 development/sdk/doc_source.properties docs/source.properties
151 development/samples/source.properties samples/${PLATFORM_NAME}/source.propertie
    [all...]
  /external/v8/test/mjsunit/
mirror-array.js 57 // Check the mirror properties.
85 // Check that the serialization contains all indexed properties and the length property.
87 for (var i = 0; i < fromJSON.properties.length; i++) {
88 if (fromJSON.properties[i].name == 'length') {
90 assertEquals('number', refs.lookup(fromJSON.properties[i].ref).type, "Unexpected type of the length property");
91 assertEquals(a.length, refs.lookup(fromJSON.properties[i].ref).value, "Length mismatch in parsed JSON");
93 var index = parseInt(fromJSON.properties[i].name);
97 // This test assumes that the order of the indexeed properties is in the
101 assertEquals(indexedProperties[index].value().type(), refs.lookup(fromJSON.properties[i].ref).type, 'Unexpected serialized type');
107 // Check that the serialization contains all names properties
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.h 81 // Search local callback properties next to find IDL defined
82 // properties.
104 // Get an array containing the names of indexed properties of HTMLSelectElement and HTMLFormElement.
110 v8::Handle<v8::Array> properties = v8::Array::New(length); local
114 properties->Set(integer, integer);
116 return properties;
119 // Get an array containing the names of indexed properties in a collection.
125 v8::Handle<v8::Array> properties = v8::Array::New(length); local
129 properties->Set(integer, integer);
131 return properties;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 126 function remoteObjectBinder(error, properties)
132 for (var i = 0; properties && i < properties.length; ++i)
133 properties[i].value = WebInspector.RemoteObject.fromPayload(properties[i].value);
134 callback(properties);
176 // for traversing prototypes, extracting class names via constuctor, handling properties
  /external/chromium/chrome/browser/extensions/
extension_menu_manager.cc 393 DictionaryValue* properties = new DictionaryValue(); local
394 properties->SetInteger("menuItemId", item->id().uid);
396 properties->SetInteger("parentMenuItemId", item->parent_id()->uid);
400 properties->SetString("mediaType", "image");
403 properties->SetString("mediaType", "video");
406 properties->SetString("mediaType", "audio");
411 AddURLProperty(properties, "linkUrl", params.unfiltered_link_url);
412 AddURLProperty(properties, "srcUrl", params.src_url);
413 AddURLProperty(properties, "pageUrl", params.page_url);
414 AddURLProperty(properties, "frameUrl", params.frame_url)
    [all...]
  /external/v8/src/extensions/experimental/
i18n.js 31 var properties = NativeJSLocale(optLocale);
32 this.locale = properties.locale;
33 this.language = properties.language;
34 this.script = properties.script;
35 this.region = properties.region;

Completed in 4365 milliseconds

1 2 34 5 6 7 8 91011>>