HomeSort by relevance Sort by last modified time
    Searched refs:Properties (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/packages/
MinToolsPackageTest.java 28 import java.util.Properties;
36 Properties props,
83 Properties props = createProps();
102 Properties props = createProps();
116 Properties props2 = new Properties();
123 protected Properties createProps() {
124 Properties props = super.createProps();
126 // MinToolsPackage properties
135 // MinToolsPackage properties
    [all...]
PackageTest.java 33 import java.util.Properties;
45 Properties props,
91 Properties props = createProps();
109 Properties props = createProps();
123 Properties props2 = new Properties();
130 * Sets the properties used by {@link #testCreate()} and
135 protected Properties createProps() {
136 Properties props = new Properties();
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 18 * The blender object's custom properties.
22 public class Properties implements Cloneable, Savable {
23 private static final Logger LOGGER = Logger.getLogger(Properties.class.getName());
127 List<Properties> subProperties = new ArrayList<Properties>(len);
129 Properties properties = new Properties(); local
130 properties.load(d, blenderContext);
131 subProperties.add(properties);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignedObjectTest.java 23 import java.util.Properties;
41 import java.util.Properties;
50 Properties prop;
59 prop = new Properties();
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 25 import java.util.Properties;
71 // Getting the output properties this way won't cause a clone of
72 // the properties.
73 Properties prevProperties = transformer.getOutputFormat().getProperties();
75 // We have to make sure we get an output properties with the proper
81 Properties htmlProperties = htmlOutputProperties.getProperties();
120 * Get the value of a property, without using the default properties. This
131 private static String getOutputPropertyNoDefault(String qnameString, Properties props)
150 String ns, String localName, Properties props, Serializer oldSerializer)
164 // Getting the output properties this way won't cause a clone of
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 25 import java.util.Properties;
76 * Test the constructor with no relevant log manager properties are set.
96 * Test the constructor with valid relevant log manager properties are set.
99 Properties p = new Properties();
121 * Test the constructor with invalid relevant log manager properties are
125 Properties p = new Properties();
151 Properties p = new Properties();
    [all...]
SocketHandlerTest.java 28 import java.util.Properties;
63 private Properties props;
93 props = new Properties();
111 * Test the constructor with no relevant log manager properties are set.
185 * Test the constructor with no relevant log manager properties are set
197 Properties p = new Properties();
225 * Test the constructor with valid relevant log manager properties are set.
228 Properties p = new Properties();
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 25 import java.util.Properties;
28 * A pool of OAuthConsumers that are constructed from Properties. Each consumer
29 * has a name, which is a property of the OAuthConsumer. Other properties come
30 * from Properties whose names are prefixed with the consumer's name. For
31 * example, a consumer's credentials come from properties named
48 public static Properties getProperties(URL source) throws IOException {
51 Properties p = new Properties();
64 public ConsumerProperties(Properties consumerProperties) {
68 private final Properties consumerProperties
    [all...]
  /external/openfst/src/include/fst/
randequivalent.h 86 if (!(Weight::Properties() & kIdempotent) &&
87 pfst1.Properties(kCyclic, true))
96 if (!(Weight::Properties() & kIdempotent) &&
97 pfst2.Properties(kCyclic, true))
109 if (fst1.Properties(kError, false) || fst2.Properties(kError, false)) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
difference.h 57 if (!fst1.Properties(kAcceptor, true))
59 uint64 props1 = fst1.Properties(kFstProperties, false);
60 uint64 props2 = fst2.Properties(kFstProperties, false);
71 if (!fst1.Properties(kAcceptor, true))
73 uint64 props1 = fst1.Properties(kFstProperties, false);
74 uint64 props2 = fst2.Properties(kFstProperties, false);
rational.h 26 #include "fst/lib/test-properties.h"
48 using FstImpl<A>::Properties;
64 uint64 props1 = fst1.Properties(kFstProperties, false);
65 uint64 props2 = fst2.Properties(kFstProperties, false);
86 uint64 props1 = fst1.Properties(kFstProperties, false);
87 uint64 props2 = fst2.Properties(kFstProperties, false);
109 uint64 props = fst.Properties(kFstProperties, false);
137 uint64 props1 = Properties();
138 uint64 props2 = fst.Properties(kFstProperties, false);
153 uint64 props1 = Properties();
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 29 import java.util.Properties;
38 * This class is a factory to generate a set of default properties
41 * The properties generated by this factory
50 * that can be used to set non-standard property values on a java.util.Properties object
56 * properties value is a the number of whitespaces to indent by per
190 /** property file for default XML properties */
191 private static final String PROP_FILE_XML = "output_xml.properties";
192 /** property file for default TEXT properties */
193 private static final String PROP_FILE_TEXT = "output_text.properties";
194 /** property file for default HTML properties */
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestUtils.java 24 import java.util.Properties;
71 Properties properties = System.getProperties(); local
73 properties.remove(key);
75 properties.setProperty(key, value);
77 System.setProperties(properties);
  /external/nist-sip/java/gov/nist/core/
LogWriter.java 30 import java.util.Properties;
94 public void setStackProperties(Properties stackProperties) {
158 // private Properties configurationProperties;
358 // public void setStackProperties(Properties configurationProperties) {
435 // * properties then we try to create the appender.
ServerLogger.java 19 import java.util.Properties;
44 public void setStackProperties(Properties stackProperties);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 25 import java.util.Properties;
72 Properties properties = System.getProperties(); local
74 properties.remove(key);
76 properties.setProperty(key, value);
78 System.setProperties(properties);
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 25 import java.util.Properties;
76 public Connection connect(String url, Properties info) throws SQLException {
95 } // end method connect(String, Properties)
105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)
  /external/emma/core/java12/com/vladium/util/
XProperties.java 15 import java.util.Properties;
24 class XProperties extends Properties
33 public XProperties (final Properties base)
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 27 * resource per line (see Properties).
30 * @see Properties
35 Properties resources;
39 * properties file from the specified {@code InputStream}.
51 resources = new Properties();
56 * Constructs a new resource bundle with properties read from {@code reader}.
63 resources = new Properties();
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 23 import java.util.Properties;
51 Properties props = new Properties();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 24 import java.util.Properties;
39 * a wrapper for {@link java.util.Properties}, but can not extend that class
66 public OutputProperties(Properties defaults)
68 m_properties = new Properties(defaults);
74 * the form output_[method].properties (for instance, output_html.properties).
75 * The output_xml.properties file is always used as the base.
77 * use the output_xml.properties file.</p>
83 m_properties = new Properties(
88 * Clone this OutputProperties, including a clone of the wrapped Properties
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraProperties.h 31 #include "cutils/properties.h"
43 // Class that handles the Camera Properties
146 // container class passed around for accessing properties
147 class Properties
150 Properties()
161 ~Properties()
183 int getProperties(int cameraIndex, Properties** properties);
191 Properties mCameraProps[MAX_CAMERAS_SUPPORTED];
  /external/openfst/src/test/
weight-tester.h 31 // This class tests a variety of identities and properties that must
90 if (Weight::Properties() & kCommutative)
107 if (Weight::Properties() & kLeftSemiring)
110 if (Weight::Properties() & kRightSemiring)
114 if (Weight::Properties() & kIdempotent)
117 if (Weight::Properties() & kPath)
121 CHECK(Weight::Properties() & (kLeftSemiring | kRightSemiring));
124 if (Weight::Properties() & kCommutative)
125 CHECK(Weight::Properties() & kSemiring);
132 if (Weight::Properties() & kLeftSemiring)
    [all...]
  /hardware/ti/omap4xxx/camera/
CameraParameters.cpp 121 // Returns the properties class for a specific Camera
123 int CameraProperties::getProperties(int cameraIndex, CameraProperties::Properties** properties)
133 *properties = mCameraProps+cameraIndex;
139 ssize_t CameraProperties::Properties::set(const char *prop, const char *value)
149 ssize_t CameraProperties::Properties::set(const char *prop, int value)
158 const char* CameraProperties::Properties::get(const char * prop)
164 void CameraProperties::Properties::dump()
174 const char* CameraProperties::Properties::keyAt(unsigned int index)
183 const char* CameraProperties::Properties::valueAt(unsigned int index
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
ShellSizeAndPos.java 31 import java.util.Properties;
46 Properties props = loadProperties();
101 Properties props = loadProperties();
115 * Load properties saved in {@link #SETTINGS_FILENAME}.
117 * empty set of properties.
119 private static Properties loadProperties() {
120 Properties props = new Properties();
145 private static void saveProperties(Properties props) {

Completed in 446 milliseconds

12 3 4 5 6 7 8 91011>>