HomeSort by relevance Sort by last modified time
    Searched refs:Properties (Results 51 - 75 of 200) sorted by null

1 23 4 5 6 7 8

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
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);
map.h 58 // // This specifies the known properties of an Fst mapped by this
59 // // mapper. It takes as argument the input Fst's known properties.
60 // uint64 Properties(uint64 props) const;
65 // e.g. whether to add a superfinal state. They will use the Properties()
66 // method to set the result Fst properties.
88 uint64 props = fst->Properties(kFstProperties, false);
143 fst->SetProperties(mapper->Properties(props), kFstProperties);
222 uint64 iprops = ifst.Properties(kCopyProperties, false);
223 uint64 oprops = ofst->Properties(kFstProperties, false);
224 ofst->SetProperties(mapper->Properties(iprops) | oprops, kFstProperties)
    [all...]
complement.h 25 #include "fst/lib/test-properties.h"
46 using FstImpl<A>::Properties;
59 uint64 props = fst.Properties(kILabelSorted, false);
121 if (fst.Properties(props, true) != props)
136 virtual uint64 Properties(uint64 mask, bool test) const {
142 return impl_->Properties(mask);
union.h 47 bool initial_acyclic1 = fst1->Properties(kInitialAcyclic, true);
48 uint64 props1 = fst1->Properties(kFstProperties, false);
49 uint64 props2 = fst2.Properties(kFstProperties, false);
  /libcore/luni/src/test/java/tests/SQLite/
JDBCDriverTest.java 107 * @tests JDBCDriver#connect(String, java.util.Properties)
114 args = {java.lang.String.class, java.util.Properties.class}
123 args = {java.lang.String.class, java.util.Properties.class}
198 * @tests JDBCDriver#getPropertyInfo(String, java.util.Properties)
205 args = {java.lang.String.class, java.util.Properties.class}
214 args = {java.lang.String.class, java.util.Properties.class}
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SettingsController.java 30 import java.util.Properties;
43 private final Properties mProperties = new Properties();
134 * This loads the current properties into the setting page UI.
239 * This updates Java system properties for the HTTP proxy.
266 Properties props = System.getProperties();
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SamplePackage.java 38 import java.util.Properties;
89 SamplePackage(IAndroidTarget target, Properties props) {
91 props, //properties
109 * saved properties.
117 * from properties.
119 SamplePackage(String archiveOsPath, Properties props) throws AndroidVersionException {
121 props, //properties
138 * Save the properties of the current packages in the given {@link Properties} object.
139 * These properties will later be given to a constructor that takes a {@link Properties} object.
    [all...]
  /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();
232 return new File(home, "junit.properties");
239 setPreferences(new Properties(getPreferences()));
  /libcore/luni/src/main/java/java/lang/
System.java 49 import java.util.Properties;
79 * The System Properties table.
81 private static Properties systemProperties;
313 * Returns the system properties. Note that this is not a copy, so that
314 * changes made to the returned Properties object will be reflected in
317 * @return the system properties.
322 public static Properties getProperties() {
332 * Returns the system properties without any security checks. This is used
335 * @return the system properties
337 static Properties internalGetProperties()
    [all...]
  /frameworks/base/core/jni/
android_bluetooth_common.cpp 30 #include <cutils/properties.h>
40 static Properties remote_device_properties[] = {
58 static Properties adapter_properties[] = {
476 int get_property(DBusMessageIter iter, Properties *properties,
492 if (!strncmp(property, properties[i].name, strlen(property)))
500 type = properties[*prop_index].type;
551 void create_prop_array(JNIEnv *env, jobjectArray strArray, Properties *property,
589 jobjectArray parse_properties(JNIEnv *env, DBusMessageIter *iter, Properties *properties,
    [all...]
android_bluetooth_common.h 99 typedef struct _Properties Properties;
157 jobjectArray parse_properties(JNIEnv *env, DBusMessageIter *iter, Properties *properties,
160 Properties *properties, int max_num_properties);
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverManagerTest.java 37 import java.util.Properties;
205 * @tests java.sql.DriverManager#getConnection(String, Properties)
211 args = {java.lang.String.class, java.util.Properties.class}
216 new Properties());
224 new Properties());
232 * Class under test for Connection getConnection(String, Properties)
238 args = {java.lang.String.class, java.util.Properties.class}
249 Properties nullProps = null;
250 Properties validProps = new Properties();
    [all...]
DriverPropertyInfoTest.java 32 import java.util.Properties;
124 Properties props = new Properties();
TestHelper_Connection1.java 36 import java.util.Properties;
226 public Properties getClientInfo() throws SQLException {
239 public void setClientInfo(Properties properties)
  /dalvik/dx/src/junit/runner/
BaseTestRunner.java 16 private static Properties fPreferences;
28 protected static void setPreferences(Properties preferences) {
32 protected static Properties getPreferences() {
34 fPreferences= new Properties();
217 return new File(home, "junit.properties");
224 setPreferences(new Properties(getPreferences()));
  /external/emma/core/java12/com/vladium/emma/
Command.java 14 import java.util.Properties;
146 final Properties cmdOverrides = new XProperties ();
167 final Properties fileOverrides;
291 protected Properties m_propertyOverrides;
316 Properties propertyOverrides = m_propertyOverrides;
  /frameworks/base/test-runner/src/junit/runner/
BaseTestRunner.java 16 private static Properties fPreferences;
28 protected static void setPreferences(Properties preferences) {
32 protected static Properties getPreferences() {
34 fPreferences= new Properties();
217 return new File(home, "junit.properties");
224 setPreferences(new Properties(getPreferences()));
  /libcore/junit/src/test/java/junit/runner/
BaseTestRunner.java 16 private static Properties fPreferences;
28 protected static void setPreferences(Properties preferences) {
32 protected static Properties getPreferences() {
34 fPreferences= new Properties();
217 return new File(home, "junit.properties");
224 setPreferences(new Properties(getPreferences()));
  /libcore/luni/src/main/java/java/util/prefs/
FilePreferencesImpl.java 25 import java.util.Properties;
78 private Properties prefs;
163 Properties currentPrefs = XMLParser.loadFilePrefs(prefsFile);
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
DefaultPolicy.java 37 import java.util.Properties;
102 * system properties. Also, the special <i>slash </i> key (i.e. ${/}) is
105 * policy file. However, this feature is controlled by security properties and
136 * Properties, String, String)
147 * Prefix for numbered Policy locations specified in security.properties.
270 * @see PolicyUtils#getPolicyURLs(Properties, String, String)
274 Properties system = new Properties(AccessController
  /libcore/luni/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockAbstractPreferences.java 21 import java.util.Properties;
37 Properties attr = new Properties();
  /libcore/sqlite-jdbc/src/main/java/SQLite/
JDBCDriver.java 4 import java.util.Properties;
90 public Connection connect(String url, Properties info)
127 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)

Completed in 2305 milliseconds

1 23 4 5 6 7 8