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

1 2 3 4 5 6 7 8 91011>>

  /external/openfst/src/include/fst/
expanded-fst.h 56 if (!(hdr.Properties() & kExpanded)) {
176 if (fst.Properties(kExpanded, false)) {
mutable-fst.h 98 if (!(hdr.Properties() & kMutable)) {
136 if (ifst->Properties(kMutable, false)) {
142 if (!ofst->Properties(kMutable, false))
270 // Can skip mutate check if extrinsic properties don't change,
273 if (GetImpl()->Properties(exprops) != (props & exprops))
add-on.h 159 SetProperties(fst_.Properties(kFstProperties, false));
168 SetProperties(fst_.Properties(kFstProperties, false));
176 SetProperties(fst_.Properties(kCopyProperties, false));
  /external/proguard/src/proguard/ant/
ProGuardTask.java 43 // Get the combined system properties and Ant properties, for
44 // replacing ProGuard-style properties ('<...>').
45 Properties properties = new Properties(); local
46 properties.putAll(getProject().getProperties());
49 properties);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
concat.h 48 uint64 props1 = fst1->Properties(kFstProperties, false);
49 uint64 props2 = fst2.Properties(kFstProperties, false);
determinize.h 32 #include "fst/lib/test-properties.h"
66 if (!(StringWeight<L, S>::Properties() & kLeftSemiring))
120 using FstImpl<A>::Properties;
136 uint64 props = fst.Properties(kFstProperties, false);
227 if (!fst.Properties(kAcceptor, true))
229 if (!(Weight::Properties() & kLeftSemiring))
547 if (fst.Properties(kAcceptor, true)) {
577 virtual uint64 Properties(uint64 mask, bool test) const {
583 return impl_->Properties(mask);
project.h 43 uint64 Properties(uint64 props) {
statesort.h 43 uint64 props = fst->Properties(kStateSortProperties, false);
product-weight.h 88 static uint64 Properties() {
89 uint64 props1 = W1::Properties();
90 uint64 props2 = W2::Properties();
  /frameworks/base/services/core/java/com/android/server/location/
GpsXtraDownloader.java 35 import java.util.Properties;
55 GpsXtraDownloader(Context context, Properties properties) {
58 // read XTRA servers from the Properties object
60 String server1 = properties.getProperty("XTRA_SERVER_1");
61 String server2 = properties.getProperty("XTRA_SERVER_2");
62 String server3 = properties.getProperty("XTRA_SERVER_3");
67 // Set User Agent from properties, if possible.
68 String agent = properties.getProperty("XTRA_USER_AGENT");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 61 #region Properties
ParseTree.cs 54 #region Properties
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 65 #region Properties
ParseTree.cs 57 #region Properties
  /external/chromium_org/v8/src/compiler/x64/
linkage-x64.cc 59 Operator::Properties properties, Zone* zone) {
61 properties);
  /hardware/ti/omap4xxx/camera/inc/V4LCameraAdapter/
V4LCameraAdapter.h 72 virtual status_t initialize(CameraProperties::Properties*, int sensor_index=0);
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 30 import java.util.Properties;
35 * {@code LogManager} is used to maintain configuration properties of the
50 * properties file, which by default is the "lib/logging.properties" in the JRE
53 * However, two optional system properties can be used to customize the initial
60 * These two properties can be set in three ways, by the Preferences API, by the
67 * constructor can read the initial configuration and define properties for
73 * properties file. The {@code LogManager} will read initial
76 * If neither of these properties is defined, or some exception is thrown
77 * during these two properties using, the {@code LogManager} will rea
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
HandlerTest.java 24 import java.util.Properties;
82 * Test the constructor, with properties set
85 Properties p = new Properties();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 32 import java.util.Properties;
49 * Standard filename for properties file with encodings data.
51 private static final String ENCODINGS_FILE = SerializerBase.PKG_PATH+"/Encodings.properties";
323 Properties props = new Properties();
ToTextSAXHandler.java 26 import java.util.Properties;
101 public Properties getOutputFormat()
162 * @see Serializer#setOutputFormat(Properties)
164 public void setOutputFormat(Properties format)
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 22 import java.util.Properties;
90 final Properties result = new Properties ();
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 39 import java.util.Properties;
62 Properties prop = new Properties();
63 InputStream in = Main.class.getResourceAsStream("/okcurl-version.properties");
68 throw new AssertionError("Could not load okcurl-version.properties.");
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java 29 import java.util.Properties;
110 // read properties
111 Properties prop = new Properties();
  /libcore/luni/src/main/java/java/security/
Security.java 30 import java.util.Properties;
43 // Security properties
44 private static final Properties secprops = new Properties();
47 // - load security properties files
53 InputStream configStream = Security.class.getResourceAsStream("security.properties");
59 System.logE("Could not load 'security.properties'", ex);
  /libcore/luni/src/main/java/javax/xml/datatype/
FactoryFinder.java 29 import java.util.Properties;
50 /** <p>Cache properties for performance.</p> */
51 private static Properties cacheProps = new Properties();
178 // try to read from $java.home/lib/jaxp.properties
181 String configFile = javah + File.separator + "lib" + File.separator + "jaxp.properties";
189 if (debug) debugPrintln("Read properties file " + f);
196 if (debug) debugPrintln("found " + factoryClassName + " in $java.home/jaxp.properties");

Completed in 1115 milliseconds

1 2 3 4 5 6 7 8 91011>>