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

1 2 3 4 56 7 8

  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
DefaultPolicyParser.java 45 import java.util.Properties;
107 * @param system system properties, used for property expansion
111 public Collection<PolicyEntry>parse(URL location, Properties system)
165 * {@link #resolvePermission(DefaultPolicyScanner.PermissionEntry, DefaultPolicyScanner.GrantEntry, KeyStore, Properties, boolean) resolvePermission()})
176 * @param system system properties, used for property expansion
186 KeyStore ks, Properties system, boolean resolve) throws Exception {
236 * properties expansion for non-null <code>name</code>, <code>action</code>
245 * @param system system properties, used for property expansion
248 * @throws Exception if failed to expand properties,
254 DefaultPolicyScanner.GrantEntry ge, KeyStore ks, Properties system
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmepsilon.h 213 if (fst->Properties(kTopSorted, false) & kTopSorted) {
216 } else if (fst->Properties(kAcyclic, false) & kAcyclic) {
260 fst->Properties(kFstProperties, false)),
318 using FstImpl<A>::Properties;
341 uint64 props = fst.Properties(kFstProperties, false);
463 virtual uint64 Properties(uint64 mask, bool test) const {
469 return impl_->Properties(mask);
replace.h 28 #include "fst/lib/test-properties.h"
63 using FstImpl<A>::Properties;
127 SetProperties(impl.Properties(), kCopyProperties);
150 inprops[i] = fst_array_[i]->Properties(kCopyProperties, false);
201 return depfst.Properties(kCyclic, true);
581 virtual uint64 Properties(uint64 mask, bool test) const {
587 return impl_->Properties(mask);
closure.h 44 uint64 props = fst->Properties(kFstProperties, false);
const-fst.h 24 #include "fst/lib/test-properties.h"
37 using FstImpl<A>::Properties;
99 // Properties always true of this Fst class
120 uint64 copy_properties = fst.Properties(kCopyProperties, true);
257 virtual uint64 Properties(uint64 mask, bool test) const {
263 return impl_->Properties(mask);
factor-weight.h 31 #include "fst/lib/test-properties.h"
139 using FstImpl<A>::Properties;
166 uint64 props = fst.Properties(kFstProperties, false);
374 virtual uint64 Properties(uint64 mask, bool test) const {
380 return impl_->Properties(mask);
synchronize.h 29 #include "fst/lib/test-properties.h"
43 using FstImpl<A>::Properties;
75 uint64 props = fst.Properties(kFstProperties, false);
357 virtual uint64 Properties(uint64 mask, bool test) const {
363 return impl_->Properties(mask);
verify.h 23 #include "fst/lib/test-properties.h"
103 uint64 fst_props = fst.Properties(kFstProperties, false);
108 LOG(ERROR) << "Verify: stored Fst properties incorrect "
float-weight.h 146 static uint64 Properties() {
212 static uint64 Properties() {
prune.h 61 if ((Weight::Properties() & (kPath | kCommutative))
147 if ((Weight::Properties() & (kPath | kCommutative))
test-properties.h 1 // test-properties.h
43 // Tests compatibility between two sets of properties
62 // Computes FST property values defined in properties.h. The value of
65 // the properties specifically requested in the mask, certain other
66 // properties may be determined (those with little additional expense)
68 // known properties (whether true or false) determined by this
70 // If 'use_stored' is true, pre-computed FST properties may be used
72 // is used to implement fst.Properties(mask, true).
80 uint64 fst_props = fst.Properties(kFstProperties, false); // Fst-stored
82 // Check stored FST properties first if allowed
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 51 * A {@code Properties} object is a {@code Hashtable} where the keys and values
53 * {@code Properties} list which specifies the default
54 * values to be used when a given key is not found in this {@code Properties}
60 public class Properties extends Hashtable<Object, Object> {
66 private static final String PROP_DTD_NAME = "http://java.sun.com/dtd/properties.dtd";
69 + " <!ELEMENT properties (comment?, entry*) >"
70 + " <!ATTLIST properties version CDATA #FIXED \"1.0\" >"
76 * The default values for keys not found in this {@code Properties}
79 protected Properties defaults;
85 * Constructs a new {@code Properties} object
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
SystemTest.java 34 import java.util.Properties;
290 // Test for method java.util.Properties java.lang.System.getProperties()
311 /* Available properties.
327 Properties p = System.getProperties();
330 // Ensure spec'ed properties are non-null. See System.getProperties()
334 assertNotNull("There is no property among returned properties: "
569 * @tests java.lang.System#setProperties(java.util.Properties)
575 args = {java.util.Properties.class}
579 // java.lang.System.setProperties(java.util.Properties)
581 Properties orgProps = System.getProperties()
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.java 29 import java.util.Properties;
36 * for all defined loggers, to System.err. The following system properties
64 * <p>In addition to looking for system properties with the names specified
66 * <code>"simplelog.properties"</code>, and includes any matching definitions
80 /** All system properties used by <code>SimpleLog</code> start with this */
84 /** Properties loaded from simplelog.properties */
85 static protected final Properties simpleLogProps = new Properties();
150 // Load properties file, if found
    [all...]
  /libcore/luni/src/main/java/java/security/
Security.java 30 import java.util.Properties;
46 // Security properties
47 private static Properties secprops = new Properties();
50 // - load security properties files
60 * Android only uses a local "security.properties" resource
65 getClass().getResourceAsStream("security.properties");
72 "Could not load Security properties.", ex);
78 // String securityFile = System.getProperty("java.security.properties");
81 // secprops = new Properties();
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToXMLSAXHandler.java 26 import java.util.Properties;
63 public Properties getOutputFormat()
117 * @see Serializer#setOutputFormat(Properties)
119 public void setOutputFormat(Properties format)
  /libcore/luni/src/test/java/libcore/java/net/
OldServerSocketTest.java 35 import java.util.Properties;
206 Properties props = (Properties) System.getProperties().clone();
  /libcore/luni/src/main/java/org/apache/xalan/xslt/
SecuritySupport12.java 34 import java.util.Properties;
  /libcore/luni/src/main/java/org/apache/xml/dtm/
SecuritySupport12.java 34 import java.util.Properties;
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java 34 import java.util.Properties;
  /libcore/luni/src/main/java/org/apache/xml/utils/
SecuritySupport12.java 34 import java.util.Properties;
  /libcore/luni/src/main/java/org/apache/xpath/functions/
SecuritySupport12.java 34 import java.util.Properties;
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 28 import java.util.Properties;
41 final static Properties props = new Properties();
88 public static InputStream propertiesToInputStream(Properties p) throws IOException {
  /dalvik/dx/src/junit/runner/
TestCaseClassLoader.java 17 * a properties file "excluded.properties" that is located in
34 /** name of excluded properties file */
35 static final String EXCLUDED_FILE= "excluded.properties";
202 Properties p= new Properties();
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 17 * a properties file "excluded.properties" that is located in
33 /** name of excluded properties file */
34 static final String EXCLUDED_FILE= "excluded.properties";
201 Properties p= new Properties();

Completed in 473 milliseconds

1 2 3 4 56 7 8