Searched defs:properties (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java26 public static CoverageOptions create (final Properties properties) argument
29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
43 public static CoverageOptions create (final IProperties properties) argument
46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
/external/guice/core/src/com/google/inject/name/
H A DNames.java44 * {@code properties}.
46 public static void bindProperties(Binder binder, Map<String, String> properties) { argument
48 for (Map.Entry<String, String> entry : properties.entrySet()) {
57 * method binds all properties including those inherited from
60 public static void bindProperties(Binder binder, Properties properties) { argument
63 // use enumeration to include the default properties
64 for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) {
66 String value = properties.getProperty(propertyName);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelper.java10 public static String doSingleSubstitution(String originalValue, Properties properties) { argument
22 if (properties != null) {
23 propertyValue = properties.getProperty(propertyName);
41 public static void doSubstitutions(Properties properties) { argument
42 Enumeration<?> propertyNames = properties.propertyNames();
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
47 properties.setProperty(propertyName, expandedPropertyValue);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
H A DXMPAliasInfo.java10 package com.adobe.xmp.properties;
H A DXMPProperty.java10 package com.adobe.xmp.properties;
H A DXMPPropertyInfo.java10 package com.adobe.xmp.properties;
17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DVmPropertiesLogMessage.java28 * A message containing a selection of {@link System#getProperties() system properties} from the
34 private final ImmutableMap<String, String> properties; field in class:VmPropertiesLogMessage
40 public VmPropertiesLogMessage(ImmutableMap<String, String> properties) { argument
41 this.properties = checkNotNull(properties);
44 public ImmutableMap<String, String> properties() { method in class:VmPropertiesLogMessage
45 return properties;
54 return Objects.hashCode(properties);
63 return this.properties.equals(that.properties);
[all...]
/external/dtc/tests/
H A Dproperty_iterate.c36 fdt32_t properties; local
43 * This property indicates the number of properties in our
46 prop = fdt_getprop(fdt, parent_offset, "test-properties", &len);
48 FAIL("Missing/invalid test-properties property at '%s'",
51 properties = cpu_to_fdt32(*prop);
61 if (count != properties) {
62 FAIL("Node '%s': Expected %d properties, got %d\n",
63 fdt_get_name(fdt, parent_offset, NULL), properties,
/external/easymock/src/org/easymock/internal/
H A DEasyMockProperties.java25 * Contains properties used by EasyMock to change its default behavior. The
26 * loading order is (any step being able to overload the properties of the
29 * <li>easymock.properties in classpath default package</li>
30 * <li>System properties</li>
41 private final Properties properties = new Properties(); field in class:EasyMockProperties
57 // Load the easymock.properties file
59 "easymock.properties");
63 properties.load(in);
66 "Failed to read easymock.properties file");
75 // Then overload it with system properties
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
H A Druntests.bat13 set properties= variable
55 if x%1==x-properties set properties=-propertyfile %2 && shift && shift && goto processcmdlineargs variable
85 %antRunner% -file test.xml %tests% -Dws=%ws% -Dos=%os% -Darch=%arch% %properties% "-D%installmode%=true" -logger org.apache.tools.ant.DefaultLogger
/external/emma/core/java12/com/vladium/emma/
H A DAppLoggers.java36 public static Logger create (final String appName, final IProperties properties, final Logger base) argument
38 if (properties == null)
39 throw new IllegalArgumentException ("null input: properties");
45 final String _level = properties.getProperty (PROPERTY_VERBOSITY_LEVEL,
54 final String _filter = properties.getProperty (PROPERTY_VERBOSITY_FILTER);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DKvmSerializable.java30 * Provides get and set methods for properties. Can be used to replace
43 * @return the number of serializable properties
62 * @param properties
68 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info); argument
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp30 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties) argument
32 if (properties.IsEmpty())
40 CPropVariant *values = new CPropVariant[properties.Size()];
44 for (i = 0; i < properties.Size(); i++)
46 const CProperty &property = properties[i];
/external/nist-sip/java/javax/sip/
H A DSipFactory.java33 public synchronized SipStack createSipStack(Properties properties) argument
37 String name = properties.getProperty(IP_ADDRESS_PROP);
39 name = properties.getProperty(STACK_NAME_PROP);
54 .newInstance(new Object[] {properties});
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthConsumer.java48 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthConsumer
51 return properties.get(name);
55 properties.put(name, value);
/external/pdfium/xfa/fwl/
H A Dcfwl_comboedit.cpp18 std::unique_ptr<CFWL_WidgetProperties> properties,
20 : CFWL_Edit(app, std::move(properties), pOuter) {
16 CFWL_ComboEdit( const CFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties, CFWL_Widget* pOuter) argument
H A Dcfwl_datetimeedit.cpp19 std::unique_ptr<CFWL_WidgetProperties> properties,
21 : CFWL_Edit(app, std::move(properties), pOuter) {}
17 CFWL_DateTimeEdit( const CFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties, CFWL_Widget* pOuter) argument
H A Dcfwl_formproxy.cpp17 std::unique_ptr<CFWL_WidgetProperties> properties,
19 : CFWL_Form(app, std::move(properties), pOuter) {}
15 CFWL_FormProxy( const CFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties, CFWL_Widget* pOuter) argument
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DPropertyConfigurator.java29 public static void configure(Properties properties) { argument
44 public void doConfigure(Properties properties, LoggerRepository hierarchy) { argument
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DCompactData.java26 private Map<String, String> properties = new HashMap<String, String>(); field in class:CompactData
37 return properties;
46 return "CompactData: " + prefix + " " + properties;
/external/snakeyaml/src/test/java/examples/staticstate/
H A DStaticFieldsTest.java81 protected MappingNode representJavaBean(Set<Property> properties, Object javaBean) { argument
82 MappingNode node = super.representJavaBean(properties, javaBean);
/external/testng/src/main/java/org/testng/remote/adapter/
H A DDefaultMastertAdapter.java37 public void init(Properties properties) argument
39 String hostLine = properties.getProperty(HOSTS);
H A DIWorkerAdapter.java21 * @param properties holds the properties loaded from the remote.properties file.
24 void init( Properties properties) throws Exception; argument
/external/vogar/test/vogar/target/
H A DTestRunnerRule.java36 private Properties properties; field in class:TestRunnerRule
43 properties = new Properties();
72 properties.setProperty(key, value);
77 properties.setProperty(key, String.valueOf(value));
81 properties.setProperty(key, String.valueOf(value));
89 * Create the {@link TestRunner} using properties provided by {@link TestRunnerProperties} if
95 if (properties == null) {
100 return new TestRunner(properties, new ArrayList<>(Arrays.asList(args)));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.views_3.5.0.I20100527-0800.jar ... defs= " () } org/eclipse/ui/internal/views/contentoutline/messages.properties org/eclipse/ui/internal/views/properties/ org/eclipse/ui/internal ...

Completed in 644 milliseconds

1234567891011>>