Searched refs:properties (Results 51 - 75 of 827) sorted by relevance

1234567891011>>

/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_connect.h50 // Configures a network with a dictionary of Shill properties, then sends a
54 const base::DictionaryValue& properties,
58 // Shill properties and sends a connect request if the configuration succeeds.
60 ASH_EXPORT void CreateConfigurationAndConnect(base::DictionaryValue* properties,
64 // Shill properties. The profile used is determined by |shared|.
65 ASH_EXPORT void CreateConfiguration(base::DictionaryValue* properties,
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dtts_background.js23 * @param {Object} properties Speech properties to use for this utterance.
25 cvox.Utterance = function(textString, properties) {
27 this.properties = properties;
181 * The list of properties allowed to be passed to the chrome.tts.speak API.
221 textString, queueMode, properties) {
222 goog.base(this, 'speak', textString, queueMode, properties);
224 if (!properties) {
225 properties
[all...]
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthConsumer.java48 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/chromium_org/chromeos/dbus/
H A Dmock_shill_manager_client.h41 MOCK_METHOD3(ConfigureService, void(const base::DictionaryValue& properties,
46 const base::DictionaryValue& properties,
49 MOCK_METHOD3(GetService, void(const base::DictionaryValue& properties,
53 void(const VerificationProperties& properties,
57 void(const VerificationProperties& properties,
62 void(const VerificationProperties& properties,
H A Dfake_bluetooth_device_client.cc225 Properties* properties = new Properties(base::Bind( local
229 properties->address.ReplaceValue(kPairedDeviceAddress);
230 properties->bluetooth_class.ReplaceValue(kPairedDeviceClass);
231 properties->name.ReplaceValue("Fake Device (Name)");
232 properties->alias.ReplaceValue(kPairedDeviceName);
233 properties->paired.ReplaceValue(true);
234 properties->trusted.ReplaceValue(true);
235 properties->adapter.ReplaceValue(
241 properties->uuids.ReplaceValue(uuids);
243 properties
287 Properties* properties = GetProperties(object_path); local
330 Properties* properties = GetProperties(object_path); local
444 Properties* properties = GetProperties(object_path); local
648 Properties* properties = iter->second; local
952 Properties* properties = GetProperties(object_path); local
996 AddInputDeviceIfNeeded( const dbus::ObjectPath& object_path, Properties* properties) argument
1017 Properties* properties = iter->second; local
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dextension_custom_bindings.js38 apiFunctions.setHandleRequest('getViews', function(properties) {
41 if (properties) {
42 if (properties.type != null) {
43 type = properties.type;
45 if (properties.windowId != null) {
46 windowId = properties.windowId;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
H A Dabstract_tts.js25 * Default value for TTS properties.
26 * Note that these as well as the subsequent properties might be different
40 * Min value for TTS properties.
53 * Max value for TTS properties.
66 * Step value for TTS properties.
106 * Default TTS properties for this TTS engine.
114 cvox.AbstractTts.prototype.speak = function(textString, queueMode, properties) {
147 * Merges the given properties with the default ones. Always returns a
150 * @param {Object=} properties The properties t
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dgcs_file_system_provider.py74 properties = dict(line.strip().split('=', 1) for line in token_file)
75 use_local_fs = properties.get('use_local_fs', 'False')=='True'
76 debug_access_token = properties.get('access_token', None)
77 debug_bucket_prefix = properties.get('remote_bucket_prefix', None)
/external/chromium_org/chromeos/network/
H A Dshill_property_util.h24 // Sets the |ssid| in |properties|.
26 base::DictionaryValue* properties);
28 // Returns the SSID from |properties| in UTF-8 encoding. If |unknown_encoding|
31 const base::DictionaryValue& properties,
34 // Returns the GUID (if available), SSID, or Name from |properties|. Only used
37 const base::DictionaryValue& properties);
39 // Returns the name for the network represented by the Shill |properties|. For
43 const base::DictionaryValue& properties);
60 // Copy configuration properties required by Shill to identify a network in the
67 // required properties coul
[all...]
H A Dgeolocation_handler_unittest.cc48 base::DictionaryValue properties; local
54 properties.SetStringWithoutPathExpansion(
56 properties.SetStringWithoutPathExpansion(
58 properties.SetStringWithoutPathExpansion(
60 manager_test_->AddGeoNetwork(shill::kTypeWifi, properties);
/external/chromium_org/components/wifi/
H A Dwifi_test.cc59 base::DictionaryValue properties; local
61 wifi_service_->GetProperties(network_guid_list[0], &properties, &error);
62 VLOG(0) << error << ":\n" << properties; local
146 base::DictionaryValue properties; local
148 wifi_service_->GetProperties(network_guid, &properties, &error);
149 VLOG(0) << error << ":\n" << properties; local
154 // Optional properties (frequency, password) to use for connect or create.
155 scoped_ptr<base::DictionaryValue> properties(new base::DictionaryValue());
160 properties->SetInteger("WiFi.Frequency", value);
166 properties
[all...]
/external/chromium_org/content/browser/resources/media/
H A Dplayer_info.js13 * A class that keeps track of properties on a media player.
18 // The current value of the properties for this player.
19 this.properties = {};
20 // All of the past (and present) values of the properties.
49 this.properties[key] = value;
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_characteristic.cc21 Properties properties,
18 Create( const BluetoothUUID& uuid, const std::vector<uint8>& value, Properties properties, Permissions permissions) argument
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record_utils_chromeos.h25 // Converts an NDEF record D-Bus properties structure to an NfcNdefRecord
30 const NfcRecordClient::Properties* properties,
H A Dnfc_ndef_record_utils_chromeos.cc174 const NfcRecordClient::Properties* properties,
181 DBusRecordTypeValueToNfcNdefRecordType(properties->type.value());
189 if (!properties->uri.value().empty())
190 attributes.SetString(NfcNdefRecord::kFieldURI, properties->uri.value());
191 if (!properties->mime_type.value().empty()) {
193 properties->mime_type.value());
195 if (properties->size.value() != 0) {
197 static_cast<double>(properties->size.value()));
200 DBusActionValueToNfcNdefRecordActionValue(properties->action.value());
204 // The "representation", "encoding", and "language" properties wil
173 RecordPropertiesToNfcNdefRecord( const NfcRecordClient::Properties* properties, device::NfcNdefRecord* out) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8BlobCustom.cpp60 V8BlobCustomHelpers::ParsedProperties properties(false);
68 if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
75 blobData->setContentType(properties.contentType());
77 if (!V8BlobCustomHelpers::processBlobParts(blobParts, length, properties.normalizeLineEndingsToNative(), *blobData, info.GetIsolate()))
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.cpp68 // We have to rebuild the properties list from scratch.
72 for (HashSet<CSSPropertyID>::const_iterator it = currKeyframe.properties().begin(); it != currKeyframe.properties().end(); ++it)
76 for (HashSet<CSSPropertyID>::const_iterator it = keyframe.properties().begin(); it != keyframe.properties().end(); ++it)
/external/emma/core/java12/com/vladium/emma/
H A DAppLoggers.java36 public static Logger create (final String appName, final IProperties properties, final Logger base) argument
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);
H A DEMMAProperties.java26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource
102 * @param properties [null results in null result]
104 public static IProperties wrap (final Properties properties) argument
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);
129 if (properties != null)
130 return properties;
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DKvmSerializable.java30 * Provides get and set methods for properties. Can be used to replace
43 * @return the number of serializable properties
62 * @param properties
68 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info); argument
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpas-dbus-new-signals.py37 def interfaceAdded(interface, properties):
38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname'])
43 def propertiesChanged(properties):
44 for i in properties:
45 print "PropertiesChanged: %s=%s" % (i, properties[i])
92 def bssAdded(bss, properties):
105 def networkAdded(network, properties):
114 def propertiesChangedInterface(properties):
115 for i in properties:
116 print "PropertiesChanged(interface): %s=%s" % (i, properties[
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_chromeos_unittest.cc45 base::DictionaryValue properties; local
51 properties.SetStringWithoutPathExpansion(
53 properties.SetStringWithoutPathExpansion(
55 properties.SetStringWithoutPathExpansion(
57 manager_test_->AddGeoNetwork(shill::kTypeWifi, properties);
/external/chromium_org/tools/json_schema_compiler/
H A Dppapi_generator_test.py85 self.namespace.types['MyType'].properties['int_single']))
87 self.namespace.types['MyType'].properties['int_array']))
89 self.namespace.types['MyType'].properties['optional_int']))
91 self.namespace.types['MyType'].properties['optional_int_array']))
93 self.namespace.types['MyType'].properties['double_single']))
95 self.namespace.types['MyType'].properties['double_array']))
97 self.namespace.types['MyType'].properties['optional_double']))
99 self.namespace.types['MyType'].properties['optional_double_array']))
101 self.namespace.types['MyType'].properties['string']))
103 self.namespace.types['MyType'].properties['string_arra
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-handle.js120 for (i in obj.properties) {
121 switch (obj.properties[i].name) {
123 obj.properties[i].ref = handle_o;
127 obj.properties[i].ref = handle_p;
151 for (i in obj.properties) {
152 var ref = obj.properties[i].ref;
154 switch (obj.properties[i].name) {
170 assertEquals(handle_g, obj.properties[i].ref);
180 for (i in obj.properties) {
181 refs.push(obj.properties[
[all...]
/external/chromium_org/chrome/installer/util/
H A Dchrome_browser_operations.cc113 ShellUtil::ShortcutProperties* properties) const {
114 if (!properties->has_target())
115 properties->set_target(target_exe);
117 if (!properties->has_icon()) {
127 properties->set_icon(target_exe, icon_index);
130 if (!properties->has_app_id()) {
133 properties->set_app_id(
137 if (!properties->has_description())
138 properties->set_description(dist->GetAppDescription());

Completed in 1148 milliseconds

1234567891011>>