Searched refs:properties (Results 176 - 200 of 886) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/compiler/
H A Doperator.h50 Operator(Opcode opcode, Properties properties, const char* mnemonic) argument
51 : opcode_(opcode), properties_(properties), mnemonic_(mnemonic) {}
75 return (properties() & property) == property;
84 Properties properties() const { return properties_; } function in class:v8::internal::compiler::Operator
110 SimpleOperator(Opcode opcode, Properties properties, int input_count,
217 Operator1(Opcode opcode, Properties properties, int input_count, argument
219 : Operator(opcode, properties, mnemonic),
/external/chromium_org/chrome/browser/chromeos/options/
H A Dwimax_config_view.cc153 base::DictionaryValue properties; local
154 properties.SetStringWithoutPathExpansion(
156 properties.SetStringWithoutPathExpansion(
158 properties.SetBooleanWithoutPathExpansion(
167 properties.SetBooleanWithoutPathExpansion(shill::kAutoConnectProperty,
172 service_path_, properties, share_network);
361 const base::DictionaryValue& properties) {
364 properties.GetStringWithoutPathExpansion(
371 properties.GetBooleanWithoutPathExpansion(
359 InitFromProperties( const std::string& service_path, const base::DictionaryValue& properties) argument
/external/chromium_org/chromeos/network/
H A Dnetwork_cert_migrator.cc75 // Request properties for each network that has a CaCertNssProperty set
96 const base::DictionaryValue& properties) {
103 MigrateClientCertProperties(service_path, properties, &new_properties);
104 MigrateNssProperties(service_path, properties, &new_properties);
112 const base::DictionaryValue& properties,
119 properties, &config_type, &configured_slot_id, &pkcs11_id);
153 const base::DictionaryValue& properties,
160 properties, &nss_key, &pem_key, &pem_property, &nickname, &uma_type);
272 const base::DictionaryValue& properties) {
275 properties, local
95 MigrateNetwork(const std::string& service_path, const base::DictionaryValue& properties) argument
111 MigrateClientCertProperties(const std::string& service_path, const base::DictionaryValue& properties, base::DictionaryValue* new_properties) argument
152 MigrateNssProperties(const std::string& service_path, const base::DictionaryValue& properties, base::DictionaryValue* new_properties) argument
271 SendPropertiesToShill(const std::string& service_path, const base::DictionaryValue& properties) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DST.stg38 @returnScopeInterface.properties() ::= <<
39 <@super.properties()>
40 /* ST returnScope.properties */
57 <returnScopeInterface.properties()>
97 @genericParserHeaderFile.properties() ::= <<
98 <@super.properties()>
99 /* ST genericParser.properties */
181 /* <@STAttrMap.properties()> */
212 @STAttrMap.properties() ::= <<
213 /* -------- ST start STAttrMap.properties
[all...]
/external/chromium_org/chrome/browser/extensions/api/context_menus/
H A Dcontext_menus_api.cc50 base::DictionaryValue* properties = NULL; local
51 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &properties));
53 properties->GetInteger(helpers::kGeneratedIdKey, &id.uid));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnav_description.js102 * @return {Object} The newly created properties object.
105 var properties = {};
108 properties[key] = src[key];
110 return properties;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DTouchEventSynthesizer.java50 PointerProperties properties = new PointerProperties();
51 properties.id = id;
52 mPointerProperties[index] = properties;
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_characteristic_chromeos.cc87 BluetoothGattCharacteristicClient::Properties* properties = local
90 DCHECK(properties);
91 return device::BluetoothUUID(properties->uuid.value());
110 BluetoothGattCharacteristicClient::Properties* properties = local
113 DCHECK(properties);
116 const std::vector<std::string>& flags = properties->flags.value();
153 BluetoothGattCharacteristicClient::Properties* properties = local
157 DCHECK(properties);
159 return properties->notifying.value();
340 BluetoothGattDescriptorClient::Properties* properties local
[all...]
H A Dbluetooth_remote_gatt_descriptor_chromeos.cc50 BluetoothGattDescriptorClient::Properties* properties = local
53 DCHECK(properties);
54 return device::BluetoothUUID(properties->uuid.value());
/external/chromium_org/extensions/browser/api/sockets_udp/
H A Dsockets_udp_api.cc78 sockets_udp::SocketProperties* properties) {
79 if (properties->name.get()) {
80 socket->set_name(*properties->name.get());
82 if (properties->persistent.get()) {
83 socket->set_persistent(*properties->persistent.get());
85 if (properties->buffer_size.get()) {
86 socket->set_buffer_size(*properties->buffer_size.get());
103 sockets_udp::SocketProperties* properties = params_.get()->properties.get(); local
104 if (properties) {
77 SetSocketProperties(ResumableUDPSocket* socket, sockets_udp::SocketProperties* properties) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSKeyframeRule.cpp102 void StyleKeyframe::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
104 ASSERT(properties);
105 m_properties = properties;
H A DCSSFontFaceRule.cpp57 String descs = m_fontFaceRule->properties().asText();
H A DCSSViewportRule.cpp68 String decls = m_viewportRule->properties().asText();
/external/chromium_org/ui/compositor/
H A Dlayer_animation_observer.cc143 LayerAnimationElement::AnimatableProperties properties = local
144 sequence->properties();
148 if (i & properties) {
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsServiceConnectionSE.java76 Map properties = connection.getHeaderFields();
77 Set keys = properties.keySet();
82 List values = (List) properties.get(key);
H A DServiceConnectionSE.java84 Map properties = connection.getHeaderFields();
85 Set keys = properties.keySet();
90 List values = (List) properties.get(key);
/external/lldb/source/Commands/
H A DCommandObjectApropos.cpp128 std::vector<const Property *> properties; local
129 const size_t num_properties = m_interpreter.GetDebugger().Apropos(search_word, properties);
135 properties[i]->DumpDescription (m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dmobile_setup_ui.cc87 // Converts the network properties into a JS object.
88 void GetDeviceInfo(const base::DictionaryValue& properties, argument
91 properties.GetStringWithoutPathExpansion(shill::kNameProperty, &name);
93 properties.GetStringWithoutPathExpansion(
98 if (properties.GetDictionaryWithoutPathExpansion(
114 // Use the cached DeviceState properties.
116 if (!properties.GetStringWithoutPathExpansion(
166 const base::DictionaryValue& properties);
215 const base::DictionaryValue& properties);
218 const base::DictionaryValue& properties);
286 GetPropertiesAndStartDataRequest( const content::URLDataSource::GotDataCallback& callback, const std::string& service_path, const base::DictionaryValue& properties) argument
419 GetPropertiesAndCallStatusChanged( MobileActivator::PlanActivationState state, const std::string& error_description, const std::string& service_path, const base::DictionaryValue& properties) argument
547 GetPropertiesAndCallGetDeviceInfo( const std::string& service_path, const base::DictionaryValue& properties) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_service_client.cc27 const NetworkingPrivateDelegate::VerificationProperties& properties,
30 data_parts.push_back(properties.device_ssid);
31 data_parts.push_back(properties.device_serial);
32 data_parts.push_back(properties.device_bssid);
33 data_parts.push_back(properties.public_key);
34 data_parts.push_back(properties.nonce);
36 if (!base::Base64Decode(properties.signed_data, &credentials->signed_data)) {
37 LOG(ERROR) << "Failed to decode signed data: " << properties.signed_data;
40 credentials->certificate = properties.certificate;
41 credentials->device_bssid = properties
26 GetVerificationCredentials( const NetworkingPrivateDelegate::VerificationProperties& properties, NetworkingPrivateServiceClient::CryptoVerify::Credentials* credentials) argument
247 SetProperties( const std::string& guid, scoped_ptr<base::DictionaryValue> properties, const VoidCallback& success_callback, const FailureCallback& failure_callback) argument
271 CreateNetwork( bool shared, scoped_ptr<base::DictionaryValue> properties, const StringCallback& success_callback, const FailureCallback& failure_callback) argument
529 AfterGetProperties( ServiceCallbacksID callback_id, const std::string& network_guid, scoped_ptr<base::DictionaryValue> properties, const std::string* error) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DObjectPropertiesSection.js80 * @param {?Array.<!WebInspector.RemoteObjectProperty>} properties
84 function callback(properties, internalProperties)
86 if (!properties)
88 this.updateProperties(properties, internalProperties);
94 updateProperties: function(properties, internalProperties, rootTreeElementConstructor, rootPropertyComparer)
104 properties.push(this.extraProperties[i]);
110 properties, internalProperties,
114 this.propertiesForTest = properties;
193 this.nameElement.classList.add("properties-accessor-property-name");
493 * @param {?Array.<!WebInspector.RemoteObjectProperty>} properties
[all...]
/external/chromium_org/chromeos/dbus/
H A Dlorgnette_manager_client.h51 const ScanProperties& properties,
/external/chromium_org/cloud_print/service/win/
H A Dinstaller.cc42 base::win::ShortcutProperties properties; local
48 properties.set_target(exe_path);
49 properties.set_working_dir(exe_path.DirName());
50 CreateOrUpdateShortcutLink(path, properties, operation);
/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h42 * properties that are not methods. Use HasMethod() to handle methods.
72 * This should include all enumerable properties, including methods. Be sure
73 * to set |*property_count| to 0 and |properties| to NULL in all failure
78 * If you have any properties, allocate the property array with
85 struct PP_Var** properties,
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DStringKeyframe.cpp32 PropertySet StringKeyframe::properties() const function in class:blink::StringKeyframe
36 PropertySet properties; local
38 properties.add(m_propertySet->propertyAt(i).id());
39 return properties;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorState.cpp38 InspectorState::InspectorState(InspectorStateUpdateListener* listener, PassRefPtr<JSONObject> properties) argument
40 , m_properties(properties)
50 void InspectorState::setFromCookie(PassRefPtr<JSONObject> properties) argument
52 m_properties = properties;

Completed in 608 milliseconds

1234567891011>>