HomeSort by relevance Sort by last modified time
    Searched refs:Properties (Results 126 - 150 of 542) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
BuildProperties.java 14 import java.util.Properties;
18 * properties as String objects
52 // the Object that holds the key value pairs in monitor.properties
53 private Properties buildProperties;
56 this("monitor.properties");
61 buildProperties = new Properties();
62 // retrieve information from monitor.properties file.
72 "Value for buildSubjectPrefix not found in monitor.properties");
82 "Value for httpUrl not found in monitor.properties");
89 "Value for ftpUrl not found in monitor.properties");
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestUtil.java 9 import java.util.Properties;
87 Properties localProperties = new Properties();
88 localProperties.load(new FileInputStream(new File("local.properties")));
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXCameraAdapter.h 356 virtual status_t initialize(CameraProperties::Properties*);
372 static status_t getCaps(CameraProperties::Properties* props, OMX_HANDLETYPE handle);
572 static status_t insertCapabilities(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
583 static status_t insertImageSizes(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
584 static status_t insertPreviewSizes(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
585 static status_t insertThumbSizes(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
586 static status_t insertZoomStages(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
587 static status_t insertImageFormats(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
588 static status_t insertPreviewFormats(CameraProperties::Properties*, OMX_TI_CAPTYPE&);
589 static status_t insertFramerates(CameraProperties::Properties*, OMX_TI_CAPTYPE&)
    [all...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 21 import java.util.Properties;
    [all...]
  /libcore/luni/src/test/java/tests/support/
Support_SQL.java 25 import java.util.Properties;
52 .getResourceAsStream("/connection.properties");
100 Properties properties = new Properties(); local
101 properties.load(fileName);
102 sqlDriver = properties.getProperty("sqlDriver");
103 sqlLogin = properties.getProperty("sqlLogin");
104 sqlCatalog = properties.getProperty("sqlCatalog");
105 sqlHost = properties.getProperty("sqlHost")
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
ExtensionsFactory.java 12 import java.util.Properties;
19 private static String EXTENSIONS_PROPERTIES = "deskclock_extensions.properties";
21 private static Properties sProperties = new Properties();
71 Log.d(TAG, DESKCLOCKEXTENSIONS_KEY + " not found in properties file.");
  /external/openfst/src/include/fst/
state-map.h 74 // // This specifies the known properties of an Fst mapped by this
75 // // mapper. It takes as argument the input Fst's known properties.
76 // 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);
    [all...]
reweight.h 52 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)),
union.h 60 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)) {
concat.h 62 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))
equivalent.h 144 // Check properties first:
146 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-http/src/org/apache/http/util/
VersionInfo.java 37 import java.util.Properties;
68 public final static String VERSION_PROPERTY_FILE = "version.properties";
249 Properties vip = null; // version info properties, if available
252 // org/apache/http/version.properties
257 Properties props = new Properties();
277 * Instantiates version information from properties.
281 * for example {@link java.util.Properties}
  /external/chromium_org/chromeos/dbus/
bluetooth_device_client.h 25 // Structure of properties associated with bluetooth devices.
26 struct Properties : public dbus::PropertySet {
97 Properties(dbus::ObjectProxy* object_proxy,
100 virtual ~Properties();
135 // Obtain the properties for the device with object path |object_path|,
137 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0;
188 // |object_path|. Connection monitor is a mode the connection properties,
bluetooth_gatt_characteristic_client.cc 23 BluetoothGattCharacteristicClient::Properties::Properties(
37 BluetoothGattCharacteristicClient::Properties::~Properties() {
77 virtual Properties* GetProperties(
80 return static_cast<Properties*>(
199 Properties* properties = new Properties( variable
205 return static_cast<dbus::PropertySet*>(properties);
    [all...]
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_gatt_characteristic.cc 20 Properties properties,
28 ON_CALL(*this, GetProperties()).WillByDefault(Return(properties));
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
reweight.h 48 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)),
weight.h 20 // two designated elements Zero and One with the following properties:
57 // Properties: specifies additional properties that hold:
127 if ((W::Properties() & props) != props)
expanded-fst.h 48 if (!(hdr.Properties() & kExpanded)) {
83 if (fst.Properties(kExpanded, false)) {
reverse.h 75 uint64 iprops = ifst.Properties(kCopyProperties, false);
76 uint64 oprops = ofst->Properties(kFstProperties, false);
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCapabilities.cpp 458 status_t OMXCameraAdapter::insertImageSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
484 status_t OMXCameraAdapter::insertPreviewSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
510 status_t OMXCameraAdapter::insertVideoSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
536 status_t OMXCameraAdapter::insertThumbSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
563 status_t OMXCameraAdapter::insertZoomStages(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps)
595 status_t OMXCameraAdapter::insertImageFormats(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
626 status_t OMXCameraAdapter::insertPreviewFormats(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
658 status_t OMXCameraAdapter::insertFramerates(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
684 status_t OMXCameraAdapter::insertVFramerates(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
716 status_t OMXCameraAdapter::insertEVs(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
LongTest.java 19 import java.util.Properties;
24 Properties originalProperties = System.getProperties();
26 Properties testProperties = new Properties();
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_notify_session_chromeos.cc 64 BluetoothGattCharacteristicClient::Properties* properties =
68 if (!properties || !properties->notifying.value())
118 BluetoothGattCharacteristicClient::Properties* properties =
122 if (!properties) {
127 if (property_name == properties->notifying.name() &&
128 !properties->notifying.value())
  /external/emma/core/java12/com/vladium/util/
IProperties.java 18 import java.util.Properties;
49 Iterator /* String */ properties (); method in interface:IProperties
50 Properties toProperties ();
76 * Converts a java.util.Properties instance to an IProperties instance,
77 * with an optional property mapper. Note that 'properties' content is
81 * @param properties [may not be null]
83 * @return a property set based on 'properties' [never null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper)
89 // always use propertyNames() for traversing java.util.Properties
208 public Iterator \/* String *\/ properties () method in class:IProperties.Factory.PropertiesImpl
    [all...]
  /external/junit/src/junit/runner/
BaseTestRunner.java 16 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();
234 return new File(home, "junit.properties");
241 setPreferences(new Properties(getPreferences()));
  /external/openfst/src/include/fst/script/
fst-class.h 57 virtual uint64 Properties(uint64 mask, bool test) const = 0;
125 virtual uint64 Properties(uint64 mask, bool test) const {
126 return impl_->Properties(mask, test);
160 if (hdr.Properties() & kMutable) {
214 virtual uint64 Properties(uint64 mask, bool test) const {
215 return impl_->Properties(mask, test);
275 // Specific types of FstClass with special properties

Completed in 1124 milliseconds

1 2 3 4 56 7 8 91011>>