Searched refs:Properties (Results 1 - 25 of 405) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertyUtils.java23 import java.util.Properties;
32 * @see java.util.Properties
49 public static boolean getBooleanProperty(String key, Properties props)
72 public static int getIntProperty(String key, Properties props)
H A DSerializer.java25 import java.util.Properties;
40 * java.util.Properties props =
67 * java.util.Properties props =
98 * The encoding specified in the output {@link Properties} is used, or
121 * The encoding specified for the output {@link Properties} must be
169 public void setOutputFormat(Properties format);
176 public Properties getOutputFormat();
/external/chromium_org/chromeos/dbus/
H A Dfake_nfc_record_client.h27 // Properties structure that provides fake behavior for D-Bus calls.
28 struct Properties : public NfcRecordClient::Properties { struct in class:chromeos::FakeNfcRecordClient
29 explicit Properties(const PropertyChangedCallback& callback);
30 virtual ~Properties();
51 virtual Properties* GetProperties(
67 // Property changed callback passed when we create Properties* structures.
71 // Called by Properties* structures when GetAll is called.
82 scoped_ptr<Properties> device_smart_poster_record_properties_;
83 scoped_ptr<Properties> device_text_record_properties
[all...]
H A Dbluetooth_input_client.h25 struct Properties : public dbus::PropertySet { struct in class:chromeos::BluetoothInputClient
29 Properties(dbus::ObjectProxy* object_proxy,
32 virtual ~Properties();
67 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0;
H A Dnfc_manager_client.h23 struct Properties : public NfcPropertySet { struct in class:chromeos::NfcManagerClient
27 Properties(dbus::ObjectProxy* object_proxy,
29 virtual ~Properties();
61 virtual Properties* GetProperties() = 0;
H A Dfake_bluetooth_input_client.cc21 FakeBluetoothInputClient::Properties::Properties( function in class:chromeos::FakeBluetoothInputClient::Properties
23 : BluetoothInputClient::Properties(
29 FakeBluetoothInputClient::Properties::~Properties() {
32 void FakeBluetoothInputClient::Properties::Get(
39 void FakeBluetoothInputClient::Properties::GetAll() {
43 void FakeBluetoothInputClient::Properties::Set(
55 // Clean up Properties structures
70 FakeBluetoothInputClient::Properties*
[all...]
H A Dfake_bluetooth_gatt_service_client.h27 struct Properties : public BluetoothGattServiceClient::Properties { struct in class:chromeos::FakeBluetoothGattServiceClient
28 explicit Properties(const PropertyChangedCallback& callback);
29 virtual ~Properties();
49 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
74 // Property callback passed when we create Properties structures.
90 scoped_ptr<Properties> heart_rate_service_properties_;
H A Dfake_bluetooth_input_client.h23 struct Properties : public BluetoothInputClient::Properties { struct in class:chromeos::FakeBluetoothInputClient
24 explicit Properties(const PropertyChangedCallback & callback);
25 virtual ~Properties();
42 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
50 // Property callback passed when we create Properties* structures.
55 typedef std::map<const dbus::ObjectPath, Properties *> PropertiesMap;
H A Dfake_nfc_manager_client.h22 struct Properties : public NfcManagerClient::Properties { struct in class:chromeos::FakeNfcManagerClient
23 explicit Properties(const PropertyChangedCallback& callback);
24 virtual ~Properties();
41 virtual Properties* GetProperties() OVERRIDE;
51 // Property callback passed when we create Properties* structures.
62 scoped_ptr<Properties> properties_;
H A Dfake_nfc_manager_client.cc16 FakeNfcManagerClient::Properties::Properties( function in class:chromeos::FakeNfcManagerClient::Properties
18 : NfcManagerClient::Properties(NULL, callback) {
21 FakeNfcManagerClient::Properties::~Properties() {
24 void FakeNfcManagerClient::Properties::Get(
31 void FakeNfcManagerClient::Properties::GetAll() {
35 void FakeNfcManagerClient::Properties::Set(
43 properties_.reset(new Properties(base::Bind(
62 FakeNfcManagerClient::Properties* FakeNfcManagerClien
[all...]
H A Dfake_bluetooth_adapter_client.h26 struct Properties : public BluetoothAdapterClient::Properties { struct in class:chromeos::FakeBluetoothAdapterClient
27 explicit Properties(const PropertyChangedCallback & callback);
28 virtual ~Properties();
46 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
76 // Property callback passed when we create Properties* structures.
87 scoped_ptr<Properties> properties_;
88 scoped_ptr<Properties> second_properties_;
H A Dfake_nfc_adapter_client.h26 // Properties structure that provides fake behavior for D-Bus calls.
27 struct Properties : public NfcAdapterClient::Properties { struct in class:chromeos::FakeNfcAdapterClient
28 explicit Properties(const PropertyChangedCallback& callback);
29 virtual ~Properties();
47 virtual Properties* GetProperties(
89 // Property changed callback passed when we create Properties* structures.
97 scoped_ptr<Properties> properties_;
98 scoped_ptr<Properties> second_properties_;
H A Dfake_bluetooth_gatt_descriptor_client.h25 struct Properties : public BluetoothGattDescriptorClient::Properties { struct in class:chromeos::FakeBluetoothGattDescriptorClient
26 explicit Properties(const PropertyChangedCallback& callback);
27 virtual ~Properties();
47 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
72 // Property callback passed when we create Properties structures.
80 // Mapping from object paths to Properties structures.
85 scoped_ptr<Properties> properties;
H A Dfake_nfc_device_client.h26 // Properties structure that provides fake behavior for D-Bus calls.
27 struct Properties : public NfcDeviceClient::Properties { struct in class:chromeos::FakeNfcDeviceClient
28 explicit Properties(const PropertyChangedCallback& callback);
29 virtual ~Properties();
48 virtual Properties* GetProperties(
96 // Property changed callback passed when we create Properties* structures.
114 scoped_ptr<Properties> properties_;
H A Dfake_nfc_tag_client.h25 struct Properties : public NfcTagClient::Properties { struct in class:chromeos::FakeNfcTagClient
26 explicit Properties(const PropertyChangedCallback& callback);
27 virtual ~Properties();
46 virtual Properties* GetProperties(
90 // Property changed callback passed when we create Properties* structures.
104 scoped_ptr<Properties> properties_;
H A Dbluetooth_gatt_service_client.cc16 BluetoothGattServiceClient::Properties::Properties( function in class:chromeos::BluetoothGattServiceClient::Properties
29 BluetoothGattServiceClient::Properties::~Properties() {
68 virtual Properties* GetProperties(
71 return static_cast<Properties*>(
82 Properties* properties = new Properties(
H A Dbluetooth_input_client.cc20 BluetoothInputClient::Properties::Properties( function in class:chromeos::BluetoothInputClient::Properties
28 BluetoothInputClient::Properties::~Properties() {
63 Properties* properties = new Properties(
73 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
75 return static_cast<Properties*>(
H A Dfake_bluetooth_gatt_characteristic_client.h28 struct Properties : public BluetoothGattCharacteristicClient::Properties { struct in class:chromeos::FakeBluetoothGattCharacteristicClient
29 explicit Properties(const PropertyChangedCallback& callback);
30 virtual ~Properties();
50 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
92 // Property callback passed when we create Properties structures.
119 scoped_ptr<Properties> heart_rate_measurement_properties_;
120 scoped_ptr<Properties> body_sensor_location_properties_;
121 scoped_ptr<Properties> heart_rate_control_point_properties_;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelperTest.java5 import java.util.Properties;
20 Properties properties = new Properties();
/external/lldb/source/Core/
H A DUserSettingsController.cpp28 Properties::GetPropertyValue (const ExecutionContext *exe_ctx,
40 Properties::SetPropertyValue (const ExecutionContext *exe_ctx,
54 Properties::DumpAllPropertyValues (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
62 Properties::DumpAllDescriptions (CommandInterpreter &interpreter,
75 Properties::DumpPropertyValue (const ExecutionContext *exe_ctx, Stream &strm, const char *property_path, uint32_t dump_mask)
91 Properties::Apropos (const char *keyword, std::vector<const Property *> &matching_properties) const
103 Properties::GetSubProperty (const ExecutionContext *exe_ctx,
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSignedObjectTest.java23 import java.util.Properties;
36 Properties prop;
46 prop = new Properties();
/external/emma/core/java12/com/vladium/util/
H A DProperty.java20 import java.util.Properties;
56 public static Properties combine (final Properties overrides, final Properties base)
74 final Properties result = new XProperties (base);
100 public static Properties getAppProperties (final String namespace, final ClassLoader loader)
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader);
106 final Properties systemFileOverrides;
115 final Properties systemOverrides = Property.getSystemProperties (namespace);
116 final Properties resOverride
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/util/
H A DEnvironmentHelper.java23 import java.util.Properties;
36 public static InputStream PropertiesToInputStream(Properties p) {
/external/nist-sip/java/gov/nist/core/
H A DStackLogger.java3 import java.util.Properties;
120 public void setStackProperties(Properties stackProperties);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dintersect.h51 if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true))
53 uint64 props1 = fst1.Properties(kFstProperties, false);
54 uint64 props2 = fst2.Properties(kFstProperties, false);
63 if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true))
65 uint64 props1 = fst1.Properties(kFstProperties, false);
66 uint64 props2 = fst2.Properties(kFstProperties, false);

Completed in 375 milliseconds

1234567891011>>