HomeSort by relevance Sort by last modified time
    Searched defs:properties (Results 1 - 25 of 2487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 44 context::properties() const { function in class:context
  /system/core/property_service/libpropertyinfoserializer/
property_info_serializer.cpp 27 namespace properties { namespace in namespace:android
46 } // namespace properties
trie_serializer.h 29 namespace properties { namespace in namespace:android
52 } // namespace properties
space_tokenizer.h 21 namespace properties { namespace in namespace:android
47 } // namespace properties
trie_builder_test.cpp 22 namespace properties { namespace in namespace:android
128 } // namespace properties
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 38 List<ICalendar.Property> properties = local
40 assertTrue(properties == null);
47 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
48 assertTrue(properties.size() == 1);
  /external/oauth/core/src/main/java/net/oauth/
OAuthConsumer.java 25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to
48 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthConsumer
51 return properties.get(name);
55 properties.put(name, value);
OAuthAccessor.java 28 * Properties of one User of an OAuthConsumer. Properties may be added freely,
50 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthAccessor
53 return properties.get(name);
57 properties.put(name, value);
  /external/vogar/test/vogar/target/
TestRunnerRule.java 20 import java.util.Properties;
36 private Properties properties; field in class:TestRunnerRule
43 properties = new Properties();
66 properties.setProperty(key, value);
71 properties.setProperty(key, String.valueOf(value));
75 properties.setProperty(key, String.valueOf(value));
83 * Create the {@link TestRunner} using properties provided by {@link TestRunnerProperties} if
89 if (properties == null)
    [all...]
  /frameworks/layoutlib/bridge/src/android/os/
SystemProperties_Delegate.java 43 Map<String, String> properties = Bridge.getPlatformProperties(); local
44 String value = properties.get(key);
53 Map<String, String> properties = Bridge.getPlatformProperties(); local
54 String value = properties.get(key);
64 Map<String, String> properties = Bridge.getPlatformProperties(); local
65 String value = properties.get(key);
79 Map<String, String> properties = Bridge.getPlatformProperties(); local
80 String value = properties.get(key);
97 Map<String, String> properties = Bridge.getPlatformProperties(); local
98 properties.put(key, def)
    [all...]
  /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);
  /cts/hostsidetests/incident/src/com/android/server/cts/
SystemPropertiesTest.java 22 * Tests system properties has correct incident filters.
27 static void verifySystemPropertiesProto(SystemPropertiesProto properties, final int filterLevel) {
30 assertTrue(properties.getExtraPropertiesCount() > 0);
32 assertEquals(0, properties.getExtraPropertiesCount());
35 assertEquals(filterLevel == PRIVACY_AUTO, properties.getPersist().getSysTimezone().isEmpty());
37 assertFalse(properties.getRo().getBuild().getDisplayId().isEmpty());
  /external/dtc/tests/
property_iterate.c 36 uint32_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 = fdt32_to_cpu(*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/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
PropertiesHelperTest.java 5 import java.util.Properties;
20 Properties properties = new Properties(); local
21 properties.setProperty("result", "{${first.value} + ${system.value.xbf5547}}");
23 properties.setProperty("first.value", "first");
24 PropertiesHelper.doSubstitutions(properties);
25 assertEquals("{first + system}", properties.getProperty("result"));
  /external/tensorflow/tensorflow/core/grappler/clusters/
utils.cc 74 cudaDeviceProp properties; local
75 cudaError_t error = cudaGetDeviceProperties(&properties, gpu_id);
78 device.set_model(properties.name);
79 device.set_frequency(properties.clockRate * 1e-3);
80 device.set_num_cores(properties.multiProcessorCount);
81 device.set_num_registers(properties.regsPerMultiprocessor);
87 device.set_l1_cache_size((properties.major < 5) ? 16 * 1024 : 24 * 1024);
88 device.set_l2_cache_size(properties.l2CacheSize);
91 properties.sharedMemPerMultiprocessor);
92 device.set_memory_size(properties.totalGlobalMem)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPAliasInfo.java 10 package com.adobe.xmp.properties;
XMPProperty.java 10 package com.adobe.xmp.properties;
XMPPropertyInfo.java 10 package com.adobe.xmp.properties;
17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestClientTarget.h 60 std::array<Hwc2TestContainer*, 3> properties = {{ member in class:Hwc2TestClientTargetSupport
  /libcore/ojluni/src/main/java/java/util/
PropertyResourceBundle.java 56 * <code>PropertyResourceBundle</code>. Instead, you supply properties
58 * will automatically look for the appropriate properties file and create a
69 * therefore is the content of the file "MyResources_de.properties"
119 * @see Properties
137 Properties properties = new Properties(); local
138 properties.load(stream);
139 lookup = new HashMap(properties);
158 Properties properties = new Properties() local
    [all...]
  /system/core/property_service/libpropertyinfoserializer/include/property_info_serializer/
property_info_serializer.h 24 namespace properties { namespace in namespace:android
48 } // namespace properties
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockFilter.java 41 private Map<String, Object> properties = new HashMap<String, Object>(); field in class:MockFilter
57 return properties.get(name);
73 properties.remove(name);
75 properties.put(name, value);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatDataDrivenTest.java 441 static void propertiesFromTuple(DataDrivenNumberFormatTestData tuple, DecimalFormatProperties properties) {
443 properties.setMinimumIntegerDigits(tuple.minIntegerDigits);
446 properties.setMaximumIntegerDigits(tuple.maxIntegerDigits);
449 properties.setMinimumFractionDigits(tuple.minFractionDigits);
452 properties.setMaximumFractionDigits(tuple.maxFractionDigits);
455 properties.setCurrency(tuple.currency);
458 properties.setMinimumGroupingDigits(tuple.minGroupingDigits);
464 properties.setMinimumSignificantDigits(tuple.minSigDigits);
467 properties.setMaximumSignificantDigits(tuple.maxSigDigits);
470 properties.setGroupingSize(-1)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatDataDrivenTest.java 438 static void propertiesFromTuple(DataDrivenNumberFormatTestData tuple, DecimalFormatProperties properties) {
440 properties.setMinimumIntegerDigits(tuple.minIntegerDigits);
443 properties.setMaximumIntegerDigits(tuple.maxIntegerDigits);
446 properties.setMinimumFractionDigits(tuple.minFractionDigits);
449 properties.setMaximumFractionDigits(tuple.maxFractionDigits);
452 properties.setCurrency(tuple.currency);
455 properties.setMinimumGroupingDigits(tuple.minGroupingDigits);
461 properties.setMinimumSignificantDigits(tuple.minSigDigits);
464 properties.setMaximumSignificantDigits(tuple.maxSigDigits);
467 properties.setGroupingSize(-1)
    [all...]
  /external/vogar/src/vogar/tasks/
BuildActionTask.java 25 import java.util.Properties;
125 Properties properties = new Properties(); local
126 fillInProperties(properties, action);
127 properties.store(propertiesOut, "generated by " + Mode.class.getName());
132 * Fill in properties for running in this mode
134 private void fillInProperties(Properties properties, Action action) {
135 properties.setProperty(TestProperties.TEST_CLASS_OR_PACKAGE, action.getTargetClass())
    [all...]

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>