HomeSort by relevance Sort by last modified time
    Searched defs:properties (Results 1 - 25 of 716) 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
queue.cpp 86 command_queue::properties() const { function in class:command_queue
  /external/tensorflow/tensorflow/core/grappler/clusters/
utils_test.cc 33 DeviceProperties properties; local
36 properties = GetLocalGPUInfo(PlatformGpuId(100));
37 EXPECT_EQ("UNKNOWN", properties.type());
40 properties = GetLocalGPUInfo(PlatformGpuId(0));
41 EXPECT_EQ("GPU", properties.type());
42 EXPECT_EQ("NVIDIA", properties.vendor());
45 DeviceProperties properties; local
47 properties = GetLocalGPUInfo(PlatformGpuId(0));
48 EXPECT_EQ("GPU", properties.type());
50 properties = GetLocalGPUInfo(PlatformGpuId(100))
58 DeviceProperties properties; local
    [all...]
utils.cc 82 cudaDeviceProp properties; local
84 cudaGetDeviceProperties(&properties, platform_gpu_id.value());
87 LOG(ERROR) << "Failed to get device properties, error code: " << error;
92 device.set_model(properties.name);
93 device.set_frequency(properties.clockRate * 1e-3);
94 device.set_num_cores(properties.multiProcessorCount);
95 device.set_num_registers(properties.regsPerMultiprocessor);
101 device.set_l1_cache_size((properties.major < 5) ? 16 * 1024 : 24 * 1024);
102 device.set_l2_cache_size(properties.l2CacheSize);
105 properties.sharedMemPerMultiprocessor)
118 hipDeviceProp_t properties; local
    [all...]
  /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...]
  /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/grpc-grpc/src/csharp/Grpc.Core/
AuthContext.cs 30 /// Using any other call/context properties for authentication purposes is wrong and inherently unsafe.
36 Dictionary<string, List<AuthProperty>> properties; field in class:Grpc.Core.AuthContext
42 /// <param name="properties">Multimap of auth properties by name.</param>
43 internal AuthContext(string peerIdentityPropertyName, Dictionary<string, List<AuthProperty>> properties)
46 this.properties = GrpcPreconditions.CheckNotNull(properties);
73 /// Gets properties that represent the peer identity (there can be more than one). Returns an empty collection
84 return properties[peerIdentityPropertyName];
89 /// Gets the auth properties of this context
    [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>.
  /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...]
  /art/test/922-properties/
properties.cc 35 char** properties; local
36 jvmtiError result = jvmti_env->GetSystemProperties(&count, &properties);
42 char* data = properties[i];
52 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(properties));
  /cts/tests/tests/systemui/src/android/systemui/cts/
TouchHelper.java 69 MotionEvent.PointerProperties properties = new MotionEvent.PointerProperties(); local
70 properties.id = 0;
71 properties.toolType = MotionEvent.TOOL_TYPE_FINGER;
80 new MotionEvent.PointerProperties[] { properties },
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
Coder.java 24 byte[] properties = null; field in class:Coder
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
VmPropertiesLogMessage.java 28 * 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) {
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/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreUtil.cpp 104 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice); local
105 const VkDeviceSize alignment = properties.limits.minUniformBufferOffsetAlignment;
  /external/icu/icu4c/source/test/intltest/
numbertest_patternstring.cpp 75 DecimalFormatProperties properties = PatternParser::parseToProperties( local
78 UnicodeString actual = PatternStringUtils::propertiesToPatternString(properties, status);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
ManifestFactoryTest.java 5 import java.util.Properties;
21 final Properties properties = new Properties(); local
22 properties.setProperty("android_sdk_home", "");
23 properties.setProperty("android_merged_manifest", "/path/to/MergedManifest.xml");
24 properties.setProperty("android_merged_resources", "/path/to/merged-resources");
25 properties.setProperty("android_merged_assets", "/path/to/merged-assets");
30 protected Properties getBuildSystemApiProperties() {
31 return properties;
65 final Properties properties = new Properties(); local
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
DefaultManifestFactoryTest.java 5 import java.util.Properties;
20 Properties properties = new Properties(); local
21 properties.put("android_merged_manifest", "/gradle/AndroidManifest.xml");
22 properties.put("android_merged_resources", "/gradle/res");
23 properties.put("android_merged_assets", "/gradle/assets");
24 DefaultManifestFactory factory = new DefaultManifestFactory(properties);
44 Properties properties = new Properties() local
70 Properties properties = new Properties(); local
93 Properties properties = new Properties(); local
118 Properties properties = new Properties(); local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactData.java 26 private Map<String, String> properties = new HashMap<String, String>(); field in class:CompactData
37 return properties;
46 return "CompactData: " + prefix + " " + properties;
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Host.java 35 * The performance-informing properties of the host on which a benchmark is run.
44 private SortedMap<String, String> properties; field in class:Host
48 this.properties = Maps.newTreeMap();
52 this.properties = Maps.newTreeMap(builder.properties);
57 public ImmutableSortedMap<String, String> properties() { method in class:Host
58 return ImmutableSortedMap.copyOf(properties);
66 return this.properties.equals(that.properties);
89 .add("properties", properties
102 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in class:Host.Builder
    [all...]

Completed in 1598 milliseconds

1 2 3 4 5 6 7 8 91011>>