Searched refs:Properties (Results 101 - 125 of 405) sorted by relevance

1234567891011>>

/external/openfst/src/include/fst/
H A Dcomplement.h65 uint64 props = fst.Properties(kILabelSorted, false);
74 SetProperties(impl.Properties(), kCopyProperties);
82 if (Properties(kError))
116 uint64 Properties() const { return Properties(kFstProperties); } function in class:fst::ComplementFstImpl
119 uint64 Properties(uint64 mask) const { function in class:fst::ComplementFstImpl
120 if ((mask & kError) && fst_->Properties(kError, false))
122 return FstImpl<Arc>::Properties(mask);
155 if (fst.Properties(props, true) != props) {
H A Dstate-map.h76 // uint64 Properties(uint64 props) const;
103 uint64 props = fst->Properties(kFstProperties, false);
115 fst->SetProperties(mapper->Properties(props), kFstProperties);
146 uint64 iprops = ifst.Properties(kCopyProperties, false);
154 if (ifst.Properties(kExpanded, false))
169 uint64 oprops = ofst->Properties(kFstProperties, false);
170 ofst->SetProperties(mapper->Properties(iprops) | oprops, kFstProperties);
279 uint64 Properties() const { return Properties(kFstProperties); } function in class:fst::StateMapFstImpl
282 uint64 Properties(uint6 function in class:fst::StateMapFstImpl
433 uint64 Properties(uint64 props) const { return props; } function in class:fst::IdentityStateMapper
489 uint64 Properties(uint64 props) const { function in class:fst::ArcSumMapper
565 uint64 Properties(uint64 props) const { function in class:fst::ArcUniqueMapper
[all...]
H A Dreweight.h52 if (type == REWEIGHT_TO_FINAL && !(Weight::Properties() & kRightSemiring)) {
60 if (type == REWEIGHT_TO_INITIAL && !(Weight::Properties() & kLeftSemiring)) {
109 if (fst->Properties(kInitialAcyclic, true) & kInitialAcyclic) {
140 fst->Properties(kFstProperties, false)),
H A Dunion.h60 bool initial_acyclic1 = fst1->Properties(kInitialAcyclic, true);
61 uint64 props1 = fst1->Properties(kFstProperties, false);
62 uint64 props2 = fst2.Properties(kFstProperties, false);
70 if (fst2.Properties(kExpanded, false)) {
H A Dconcat.h62 uint64 props1 = fst1->Properties(kFstProperties, false);
63 uint64 props2 = fst2.Properties(kFstProperties, false);
72 if (fst2.Properties(kExpanded, false))
127 uint64 props1 = fst1.Properties(kFstProperties, false);
128 uint64 props2 = fst2->Properties(kFstProperties, false);
137 if (fst1.Properties(kExpanded, false))
H A Dequivalent.h146 if (fst1.Properties(props, true) != props) {
152 if (fst2.Properties(props, true) != props) {
159 if ((fst1.Properties(kUnweighted , true) != kUnweighted)
160 || (fst2.Properties(kUnweighted , true) != kUnweighted)) {
265 if (fst1.Properties(kError, false) || fst2.Properties(kError, false)) {
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDriverManagerTest.java33 import java.util.Properties;
177 * @tests java.sql.DriverManager#getConnection(String, Properties)
182 new Properties());
189 DriverManager.getConnection(null, new Properties());
197 * Class under test for Connection getConnection(String, Properties)
208 Properties nullProps = null;
209 Properties validProps = new Properties();
212 Properties invalidProps1 = new Properties();
[all...]
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_gatt_characteristic_client.cc40 FakeBluetoothGattCharacteristicClient::Properties::Properties( function in class:chromeos::FakeBluetoothGattCharacteristicClient::Properties
42 : BluetoothGattCharacteristicClient::Properties(
48 FakeBluetoothGattCharacteristicClient::Properties::~Properties() {
51 void FakeBluetoothGattCharacteristicClient::Properties::Get(
58 void FakeBluetoothGattCharacteristicClient::Properties::GetAll() {
62 void FakeBluetoothGattCharacteristicClient::Properties::Set(
101 FakeBluetoothGattCharacteristicClient::Properties*
244 heart_rate_measurement_properties_.reset(new Properties(bas
[all...]
H A Dbluetooth_device_client.h26 struct Properties : public dbus::PropertySet { struct in class:chromeos::BluetoothDeviceClient
97 Properties(dbus::ObjectProxy* object_proxy,
100 virtual ~Properties();
137 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0;
H A Dbluetooth_gatt_characteristic_client.cc23 BluetoothGattCharacteristicClient::Properties::Properties( function in class:chromeos::BluetoothGattCharacteristicClient::Properties
37 BluetoothGattCharacteristicClient::Properties::~Properties() {
77 virtual Properties* GetProperties(
80 return static_cast<Properties*>(
199 Properties* properties = new Properties(
H A Dbluetooth_device_client.cc24 BluetoothDeviceClient::Properties::Properties( function in class:chromeos::BluetoothDeviceClient::Properties
50 BluetoothDeviceClient::Properties::~Properties() {
86 Properties* properties = new Properties(
103 Properties* properties = GetProperties(*iter);
111 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
113 return static_cast<Properties*>(
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DBuildProperties.java14 import java.util.Properties;
53 private Properties buildProperties;
61 buildProperties = new Properties();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestUtil.java9 import java.util.Properties;
87 Properties localProperties = new Properties();
/external/apache-http/src/org/apache/http/util/
H A DVersionInfo.java37 import java.util.Properties;
249 Properties vip = null; // version info properties, if available
257 Properties props = new Properties();
281 * for example {@link java.util.Properties}
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_gatt_characteristic.cc20 Properties properties,
/external/chromium_org/tools/stats_viewer/Properties/
H A DResources.Designer.cs11 namespace StatsViewer.Properties
47 global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("StatsViewer.Properties.Resources", typeof(Resources).Assembly);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dreweight.h48 if (type == REWEIGHT_TO_FINAL && !(Weight::Properties() & kRightSemiring))
53 if (type == REWEIGHT_TO_INITIAL && !(Weight::Properties() & kLeftSemiring))
89 if (fst->Properties(kInitialAcyclic, true) & kInitialAcyclic) {
122 fst->Properties(kFstProperties, false)),
H A Dweight.h57 // Properties: specifies additional properties that hold:
127 if ((W::Properties() & props) != props)
H A Dexpanded-fst.h48 if (!(hdr.Properties() & kExpanded)) {
83 if (fst.Properties(kExpanded, false)) {
H A Dreverse.h75 uint64 iprops = ifst.Properties(kCopyProperties, false);
76 uint64 oprops = ofst->Properties(kFstProperties, false);
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_notify_session_chromeos.cc64 BluetoothGattCharacteristicClient::Properties* properties =
118 BluetoothGattCharacteristicClient::Properties* properties =
H A Dbluetooth_remote_gatt_service_chromeos.cc69 BluetoothGattServiceClient::Properties* properties =
81 BluetoothGattServiceClient::Properties* properties =
202 BluetoothGattServiceClient::Properties* properties =
230 BluetoothGattCharacteristicClient::Properties* properties =
277 VLOG(3) << "Properties of unknown characteristic changed";
283 // "Characteristic Extended Properties" descriptor. In this case, kick off
286 BluetoothGattCharacteristicClient::Properties* properties =
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java18 import java.util.Properties;
50 Properties toProperties ();
76 * Converts a java.util.Properties instance to an IProperties instance,
85 public static IProperties wrap (final Properties properties, final IMapper mapper)
89 // always use propertyNames() for traversing java.util.Properties:
213 public Properties toProperties ()
215 final Properties result = new Properties ();
/external/junit/src/junit/runner/
H A DBaseTestRunner.java16 import java.util.Properties;
30 private static Properties fPreferences;
42 protected static void setPreferences(Properties preferences) {
46 protected static Properties getPreferences() {
48 fPreferences= new Properties();
241 setPreferences(new Properties(getPreferences()));
/external/chromium_org/v8/src/compiler/
H A Dlinkage.h60 size_t js_param_count, Operator::Properties properties,
122 Operator::Properties properties() const { return properties_; }
138 Operator::Properties properties_;
175 Operator::Properties properties);
178 Operator::Properties properties, Zone* zone);

Completed in 543 milliseconds

1234567891011>>