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

<<11121314151617181920>>

  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 31 import java.util.Properties;
52 * <p>Cache properties for performance.</p>
54 private static Properties cacheProps = new Properties();
189 "lib" + File.separator + "jaxp.properties";
193 // try to read from $java.home/lib/jaxp.properties
201 if (debug) debugPrintln("Read properties file " + f);
208 if (debug) debugPrintln("found " + factoryClassName + " in $java.home/jaxp.properties");
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 31 import java.util.Properties;
59 * <p>Cache properties for performance.</p>
61 private static Properties cacheProps = new Properties();
169 "lib" + File.separator + "jaxp.properties";
173 // try to read from $java.home/lib/jaxp.properties
181 if (debug) debugPrintln("Read properties file " + f);
188 if (debug) debugPrintln("found " + factoryClassName + " in $java.home/jaxp.properties");
  /libcore/luni/src/main/java/libcore/net/
MimeUtils.java 25 import java.util.Properties;
412 File f = new File(System.getProperty("java.home"), "lib" + File.separator + "content-types.properties");
426 * come from "$JAVA_HOME/lib/content-types.properties".
437 // Read the properties file...
438 Properties overrides = new Properties();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogManagerTest.java 24 import java.util.Properties;
39 Properties props;
49 props = new Properties();
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 30 import java.util.Properties;
196 Properties secprops = (Properties) field_secprops.get(null);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntrace.h 676 EXTERN_C ULONG WMIAPI StartTraceW(PTRACEHANDLE TraceHandle,LPCWSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
677 EXTERN_C ULONG WMIAPI StartTraceA(PTRACEHANDLE TraceHandle,LPCSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
678 EXTERN_C ULONG WMIAPI StopTraceW(TRACEHANDLE TraceHandle,LPCWSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
679 EXTERN_C ULONG WMIAPI StopTraceA(TRACEHANDLE TraceHandle,LPCSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
680 EXTERN_C ULONG WMIAPI QueryTraceW(TRACEHANDLE TraceHandle,LPCWSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
681 EXTERN_C ULONG WMIAPI QueryTraceA(TRACEHANDLE TraceHandle,LPCSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
682 EXTERN_C ULONG WMIAPI UpdateTraceW(TRACEHANDLE TraceHandle,LPCWSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
683 EXTERN_C ULONG WMIAPI UpdateTraceA(TRACEHANDLE TraceHandle,LPCSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
684 EXTERN_C ULONG WMIAPI FlushTraceW(TRACEHANDLE TraceHandle,LPCWSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
685 EXTERN_C ULONG WMIAPI FlushTraceA(TRACEHANDLE TraceHandle,LPCSTR InstanceName,PEVENT_TRACE_PROPERTIES Properties);
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 25 #include "fst/lib/properties.h"
82 uint64 Properties() const { return properties_; }
91 void SetProperties(uint64 properties) { properties_ = properties; }
138 // If test=false, return stored properties bits for mask (some poss. unknown)
140 virtual uint64 Properties(uint64 mask, bool test)
420 uint64 Properties() const { return properties_; }
422 uint64 Properties(uint64 mask) const { return properties_ & mask; }
480 properties_ = hdr->Properties();
rmepsilon.h 211 if (fst->Properties(kTopSorted, false) & kTopSorted) {
214 } else if (fst->Properties(kAcyclic, false) & kAcyclic) {
258 fst->Properties(kFstProperties, false)),
316 using FstImpl<A>::Properties;
339 uint64 props = fst.Properties(kFstProperties, false);
461 virtual uint64 Properties(uint64 mask, bool test) const {
467 return impl_->Properties(mask);
replace.h 27 #include "fst/lib/test-properties.h"
62 using FstImpl<A>::Properties;
126 SetProperties(impl.Properties(), kCopyProperties);
149 inprops[i] = fst_array_[i]->Properties(kCopyProperties, false);
200 return depfst.Properties(kCyclic, true);
580 virtual uint64 Properties(uint64 mask, bool test) const {
586 return impl_->Properties(mask);
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_chromeos.cc 129 BluetoothAdapterClient::Properties* properties =
132 DCHECK(properties);
134 return BluetoothDevice::CanonicalizeAddress(properties->address.value());
141 BluetoothAdapterClient::Properties* properties =
144 DCHECK(properties);
146 return properties->alias.value();
176 BluetoothAdapterClient::Properties* properties
322 BluetoothDeviceClient::Properties* properties = local
651 BluetoothAdapterClient::Properties* properties = local
692 BluetoothAdapterClient::Properties* properties = local
    [all...]
  /external/openfst/src/include/fst/
factor-weight.h 35 #include <fst/test-properties.h>
191 uint64 props = fst.Properties(kFstProperties, false);
210 SetProperties(impl.Properties(), kCopyProperties);
264 uint64 Properties() const { return Properties(kFstProperties); }
266 // Set error if found; return FST impl properties.
267 uint64 Properties(uint64 mask) const {
268 if ((mask & kError) && fst_->Properties(kError, false))
270 return FstImpl<Arc>::Properties(mask);
  /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
85 /** All system properties used by <code>SimpleLog</code> start with this */
89 /** Properties loaded from simplelog.properties */
90 static protected final Properties simpleLogProps = new Properties();
155 // Load properties file, if found
    [all...]
  /external/apache-xml/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;
201 Properties props = (Properties) System.getProperties().clone();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 51 #region Properties
DebugTreeNodeStream.cs 61 #region Properties
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 82 #region Properties
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 85 #region Properties
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 54 #region Properties
DebugTreeNodeStream.cs 64 #region Properties
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport12.java 34 import java.util.Properties;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport12.java 34 import java.util.Properties;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java 34 import java.util.Properties;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SecuritySupport12.java 34 import java.util.Properties;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
SecuritySupport12.java 34 import java.util.Properties;

Completed in 831 milliseconds

<<11121314151617181920>>