Searched defs:properties (Results 1 - 25 of 412) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_supported_css.py39 properties = []
50 properties.append(entry)
51 return properties
53 properties = properties_from_file(sys.argv[1]) variable
55 f.write("WebInspector.CSSMetadata.initializeWithSupportedProperties(%s);" % json.dumps(properties))
/external/chromium_org/v8/test/intl/break-iterator/
H A Dproperty-override.js41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
56 assertEquals(expectedProperties.length, properties.length);
58 properties.forEach(function(prop) {
62 taintProperties(properties);
/external/chromium_org/v8/test/intl/collator/
H A Dproperty-override.js41 // properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
57 assertEquals(expectedProperties.length, properties.length);
59 properties.forEach(function(prop) {
63 taintProperties(properties);
/external/chromium_org/v8/test/intl/date-format/
H A Dproperty-override.js41 // properties.
43 // First get supported properties.
44 // Some of the properties are optional, so we request them.
45 var properties = []; variable
52 properties.push(prop);
62 assertEquals(expectedProperties.length, properties.length);
64 properties.forEach(function(prop) {
68 taintProperties(properties);
/external/chromium_org/v8/test/intl/number-format/
H A Dproperty-override.js41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
45 // Some properties are optional and won't show up in resolvedOptions if
54 properties.push(prop);
66 assertEquals(expectedProperties.length, properties.length);
68 properties.forEach(function(prop) {
72 taintProperties(properties);
/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/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java26 public static CoverageOptions create (final Properties properties) argument
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) argument
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,
/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/bluetooth/test/
H A Dmock_bluetooth_gatt_characteristic.cc20 Properties properties,
28 ON_CALL(*this, GetProperties()).WillByDefault(Return(properties));
15 MockBluetoothGattCharacteristic( MockBluetoothGattService* service, const std::string& identifier, const BluetoothUUID& uuid, bool is_local, Properties properties, Permissions permissions) argument
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dutils.cc15 const std::vector<CharacteristicProperty> properties) {
18 properties.begin();
19 iter != properties.end();
28 // Copy the properties. Use Characteristic::ToValue to generate the result
29 // dictionary without the properties, to prevent json_schema_compiler from
31 std::vector<CharacteristicProperty> properties = from->properties; local
32 from->properties.clear();
35 "properties", CharacteristicPropertiesToValue(properties)
14 CharacteristicPropertiesToValue( const std::vector<CharacteristicProperty> properties) argument
41 std::vector<CharacteristicProperty> properties = local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelper.java10 public static String doSingleSubstitution(String originalValue, Properties properties) { argument
22 if (properties != null) {
23 propertyValue = properties.getProperty(propertyName);
41 public static void doSubstitutions(Properties properties) { argument
42 Enumeration<?> propertyNames = properties.propertyNames();
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
47 properties.setProperty(propertyName, expandedPropertyValue);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
H A DXMPAliasInfo.java10 package com.adobe.xmp.properties;
H A DXMPProperty.java10 package com.adobe.xmp.properties;
H A DXMPPropertyInfo.java10 package com.adobe.xmp.properties;
17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
/external/bluetooth/bluedroid/test/suite/support/
H A Dadapter.c26 static bt_property_t *properties = NULL; variable
39 if (properties[i].type == type) {
40 return &properties[i];
61 property_free_array(properties, property_count);
62 properties = property_copy_array(new_properties, num_properties);
/external/chromium_org/chrome/browser/extensions/api/web_view/
H A Dchrome_web_view_internal_api.cc33 base::DictionaryValue* properties = NULL; local
34 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(1, &properties));
36 properties->GetInteger(helpers::kGeneratedIdKey, &id.uid));
/external/chromium_org/chrome/browser/metrics/
H A Dchromeos_metrics_provider_unittest.cc179 FakeBluetoothAdapterClient::Properties* properties = local
182 properties->powered.ReplaceValue(true);
208 FakeBluetoothDeviceClient::Properties* properties = local
211 properties->paired.ReplaceValue(true);
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_gatt_descriptor_client.h85 scoped_ptr<Properties> properties; member in struct:chromeos::FakeBluetoothGattDescriptorClient::DescriptorData
H A Dfake_lorgnette_manager_client.cc34 const ScanProperties& properties,
31 ScanImage( std::string device_name, base::PlatformFile file, const ScanProperties& properties, const ScanImageCallback& callback) argument
/external/chromium_org/chromeos/network/
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/metrics/net/
H A Dwifi_access_point_info_provider_chromeos.cc61 const base::DictionaryValue& properties) {
64 chromeos::shill_property_util::GetSSIDFromProperties(properties, NULL);
69 if (!properties.GetStringWithoutPathExpansion(shill::kWifiBSsid, &bssid) ||
83 properties.GetStringWithoutPathExpansion(
99 properties.GetStringWithoutPathExpansion(
102 if (!properties.GetDictionaryWithoutPathExpansion(
59 ParseInfo( const std::string &service_path, const base::DictionaryValue& properties) argument
/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/third_party/WebKit/Source/core/css/
H A DCSSKeyframeRule.h58 const StylePropertySet& properties() const { return *m_properties; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchResult.cpp48 visitor->trace(properties);
51 void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType) argument
55 newProperties.properties = const_cast<StylePropertySet*>(properties);
/external/chromium_org/third_party/sinonjs/src/
H A Dsinon-qunit.js46 properties: ["spy", "stub", "mock", "clock", "sandbox"],

Completed in 5441 milliseconds

1234567891011>>