| /external/caliper/caliper/src/main/java/com/google/caliper/model/ |
| D | Host.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 20 import static com.google.common.base.Preconditions.checkNotNull; 22 import com.google.common.annotations.VisibleForTesting; 23 import com.google.common.base.MoreObjects; 24 import com.google.common.collect.ImmutableSortedMap; 25 import com.google.common.collect.Maps; 26 import com.google.common.hash.Funnel; 27 import com.google.common.hash.HashFunction; 28 import com.google.common.hash.PrimitiveSink; [all …]
|
| D | VmSpec.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 21 import com.google.common.base.MoreObjects; 22 import com.google.common.collect.ImmutableSortedMap; 23 import com.google.common.collect.Maps; 24 import com.google.common.hash.Funnel; 25 import com.google.common.hash.PrimitiveSink; 39 private SortedMap<String, String> properties; field in VmSpec 44 this.properties = Maps.newTreeMap(); in VmSpec() 49 this.properties = Maps.newTreeMap(builder.properties); in VmSpec() [all …]
|
| /external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
| D | VmPropertiesLogMessage.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 19 import static com.google.common.base.Preconditions.checkNotNull; 21 import com.google.common.base.Objects; 22 import com.google.common.collect.ImmutableMap; 23 import com.google.common.collect.Maps; 28 * A message containing a selection of {@link System#getProperties() system properties} from the 34 private final ImmutableMap<String, String> properties; field in VmPropertiesLogMessage 40 public VmPropertiesLogMessage(ImmutableMap<String, String> properties) { in VmPropertiesLogMessage() argument 41 this.properties = checkNotNull(properties); in VmPropertiesLogMessage() [all …]
|
| /external/caliper/caliper/src/main/java/com/google/caliper/config/ |
| D | CaliperConfig.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 20 import static com.google.common.base.Preconditions.checkArgument; 21 import static com.google.common.base.Preconditions.checkNotNull; 22 import static com.google.common.base.Preconditions.checkState; 28 import com.google.common.annotations.VisibleForTesting; 29 import com.google.common.base.MoreObjects; 30 import com.google.common.base.Strings; 31 import com.google.common.collect.BiMap; 32 import com.google.common.collect.HashBiMap; [all …]
|
| /external/angle/src/gpu_info_util/ |
| D | SystemInfo_vulkan.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 21 #include "common/angleutils.h" 22 #include "common/debug.h" 23 #include "common/platform_helpers.h" 24 #include "common/system_utils.h" 25 #include "common/vulkan/libvulkan_loader.h" 95 // If Vulkan doesn't exist, bail-out early: in getVulkanInstance() 205 // If Vulkan doesn't exist, bail-out early: in GetSystemInfoVulkanWithICD() 230 info->gpus.resize(physicalDeviceCount); in GetSystemInfoVulkanWithICD() 241 VkPhysicalDeviceProperties &properties = properties2.properties; in GetSystemInfoVulkanWithICD() local [all …]
|
| /external/dagger2/javatests/dagger/functional/spi/ |
| D | SpiTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 19 import static com.google.common.io.Resources.getResource; 20 import static com.google.common.truth.Truth.assertThat; 27 import java.util.Properties; 50 Properties properties = new Properties(); in testPluginRuns() local 51 try (InputStream stream = getResource(SpiTest.class, "SpiTest_C.properties").openStream()) { in testPluginRuns() 52 properties.load(stream); in testPluginRuns() 54 assertThat(properties).containsEntry("component[0]", C.class.getCanonicalName()); in testPluginRuns()
|
| /external/auto/value/src/main/java/com/google/auto/value/processor/ |
| D | ExtensionContext.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 22 import com.google.common.collect.ImmutableList; 23 import com.google.common.collect.ImmutableMap; 24 import com.google.common.collect.ImmutableSet; 25 import com.google.common.collect.Maps; 40 private final ImmutableMap<String, ExecutableElement> properties; field in ExtensionContext 48 ImmutableMap<String, ExecutableElement> properties, in ExtensionContext() argument 53 this.properties = properties; in ExtensionContext() 55 ImmutableMap.copyOf(Maps.transformValues(properties, propertyMethodsAndTypes::get)); in ExtensionContext() [all …]
|
| D | BuilderRequiredProperties.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 18 import static com.google.auto.common.MoreStreams.toImmutableList; 19 import static com.google.auto.common.MoreStreams.toImmutableMap; 24 import com.google.common.annotations.VisibleForTesting; 25 import com.google.common.collect.ImmutableList; 26 import com.google.common.collect.ImmutableMap; 27 import com.google.common.collect.ImmutableSet; 32 * Code generation to track which properties have been set in a builder. 36 * Optional} properties. That means we must keep track of which ones have in fact been set. We do [all …]
|
| /external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/components/ |
| D | IGpuKernelComponent.h | 4 * SPDX-License-Identifier: MIT 7 * of this software and associated documentation files (the "Software"), to 8 * deal in the Software without restriction, including without limitation the 10 * sell copies of the Software, and to permit persons to whom the Software is 14 * copies or substantial portions of the Software. 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 38 /** Properties common to all kernel component types */ 69 using Properties = KernelProperties; [all …]
|
| /external/apache-xml/test/java/xdocs/sources/tests/ |
| D | run.xml | 3 <!-- 4 * Licensed to the Apache Software Foundation (ASF) under one 12 * http://www.apache.org/licenses/LICENSE-2.0 14 * Unless required by applicable law or agreed to in writing, software 19 --> 22 <li><link anchor="how-to-run">How-to: Run Xalan-J tests</link></li> 23 <li><link anchor="how-to-view-results">How-to: View Test Results</link></li> 24 <li><link anchor="test-options">Common Test Options</link></li> 25 <li><link anchor="how-to-run-c">How-to: Run Xalan-C tests</link></li> 28 <anchor name="how-to-run"/> [all …]
|
| /external/guava/guava/src/com/google/common/graph/ |
| D | GraphBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull; 21 import static com.google.common.graph.Graphs.checkNonNegative; 23 import com.google.common.annotations.Beta; 24 import com.google.common.base.Optional; 30 * user-defined properties. 32 * <p>A {@code Graph} built by this class has the following default properties: [all …]
|
| D | ValueGraphBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull; 21 import static com.google.common.graph.Graphs.checkNonNegative; 23 import com.google.common.annotations.Beta; 24 import com.google.common.base.Optional; 29 * with user-defined properties. 31 * <p>A {@code ValueGraph} built by this class has the following default properties: [all …]
|
| D | NetworkBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkNotNull; 20 import static com.google.common.graph.Graphs.checkNonNegative; 22 import com.google.common.annotations.Beta; 23 import com.google.common.base.Optional; 28 * user-defined properties. 30 * <p>A {@code Network} built by this class has the following default properties: 34 * <li>does not allow self-loops [all …]
|
| /external/guava/android/guava/src/com/google/common/graph/ |
| D | GraphBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull; 21 import static com.google.common.graph.Graphs.checkNonNegative; 23 import com.google.common.annotations.Beta; 24 import com.google.common.base.Optional; 30 * user-defined properties. 32 * <p>A {@code Graph} built by this class has the following default properties: [all …]
|
| D | ValueGraphBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull; 21 import static com.google.common.graph.Graphs.checkNonNegative; 23 import com.google.common.annotations.Beta; 24 import com.google.common.base.Optional; 29 * with user-defined properties. 31 * <p>A {@code ValueGraph} built by this class has the following default properties: [all …]
|
| D | NetworkBuilder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.base.Preconditions.checkNotNull; 20 import static com.google.common.graph.Graphs.checkNonNegative; 22 import com.google.common.annotations.Beta; 23 import com.google.common.base.Optional; 28 * user-defined properties. 30 * <p>A {@code Network} built by this class has the following default properties: 34 * <li>does not allow self-loops [all …]
|
| /external/caliper/caliper/src/main/java/com/google/caliper/platform/ |
| D | Platform.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 19 import static com.google.common.base.Preconditions.checkNotNull; 21 import com.google.common.base.Predicate; 22 import com.google.common.collect.ImmutableList; 23 import com.google.common.collect.ImmutableSet; 50 * Additional virtual machine arguments common to all instruments that are passed to a worker. 75 * <p>By default this is just the {@code -cp $workerClassPath}.</p> 78 return ImmutableList.of("-cp", workerClassPath()); in workerClassPathArgs() 113 * Selects the names of properties that will be used to populate the [all …]
|
| /external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/foreground/ |
| D | ForegroundDownloadKey.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 24 import com.google.common.base.Optional; 25 import com.google.common.hash.Hasher; 26 import com.google.common.hash.Hashing; 56 * <p><b>NOTE:</b> Properties set here <em>must</em> match the properties set in {@link 82 * <p><b>NOTE:</b> Properties set here <em>must</em> match the properties set in {@link 85 * @param destinationUri The on-device location where the file will be downloaded (required)
|
| /external/google-cloud-java/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/ |
| D | GetMetadataRequestOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 34 * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). 35 * Example: properties/1234/metadata 36 * Set the Property ID to 0 for dimensions and metrics common to all 37 * properties. In this special mode, this method will not return custom 56 * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). 57 * Example: properties/1234/metadata 58 * Set the Property ID to 0 for dimensions and metrics common to all 59 * properties. In this special mode, this method will not return custom
|
| /external/guava/android/guava-tests/test/com/google/common/graph/ |
| D | TestUtil.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.truth.Truth.assertThat; 21 import com.google.common.collect.ImmutableSet; 22 import com.google.common.collect.Iterators; 26 /** Utility methods used in various common.graph tests. */ 52 // Properties not covered by equals() in assertStronglyEquivalent() 60 // Properties not covered by equals() in assertStronglyEquivalent() 68 // Properties not covered by equals() in assertStronglyEquivalent()
|
| /external/guava/guava-tests/test/com/google/common/graph/ |
| D | TestUtil.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 10 * Unless required by applicable law or agreed to in writing, software 17 package com.google.common.graph; 19 import static com.google.common.truth.Truth.assertThat; 21 import com.google.common.collect.ImmutableSet; 22 import com.google.common.collect.Iterators; 26 /** Utility methods used in various common.graph tests. */ 52 // Properties not covered by equals() in assertStronglyEquivalent() 60 // Properties not covered by equals() in assertStronglyEquivalent() 68 // Properties not covered by equals() in assertStronglyEquivalent()
|
| /external/apache-xml/test/java/src/org/apache/qetest/ |
| D | FileBasedTest.java | 2 * Licensed to the Apache Software Foundation (ASF) under one 10 * http://www.apache.org/licenses/LICENSE-2.0 12 * Unless required by applicable law or agreed to in writing, software 34 import java.util.Properties; 36 //------------------------------------------------------------------------- 39 * Base class for file-based tests. 43 * <p>FileBasedTest defines a number of common fields that many 45 * <ul>These are each pre-initialized for you from the command line or property file. 52 * <li>(stored in testProps) logFile (string filename for any file-based Reporter)</li> 67 * to call super.usage() to get the common options string.</p> [all …]
|
| /external/aws-crt-java/ |
| D | pom.xml | 2 …p://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http… 4 <groupId>software.amazon.awssdk.crt</groupId> 5 <artifactId>aws-crt</artifactId> 7 <version>1.0.0-SNAPSHOT</version> 9 <description>Java bindings for the AWS SDK Common Runtime</description> 10 <url>https://github.com/awslabs/aws-crt-java</url> 14 <name>The Apache Software License, Version 2.0</name> 15 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 21 <name>AWS SDK Common Runtime Team</name> 22 <email>aws-sdk-common-runtime@amazon.com</email> [all …]
|
| /external/sdv/vsomeip/third_party/boost/atomic/build/ |
| D | atomic-arch-config.jam | 3 # Distributed under the Boost Software License, Version 1.0. 7 # This jamfile contains utility rules to select architecture-specific compiler flags 9 import common ; 13 rule deduce-architecture ( properties * ) 15 local architecture = [ feature.get-values "architecture" : $(properties) ] ; 22 if [ configure.builds /boost/architecture//x86 : $(properties) : "x86" ] 26 else if [ configure.builds /boost/architecture//arm : $(properties) : "arm" ] 30 else if [ configure.builds /boost/architecture//mips1 : $(properties) : "mips1" ] 34 else if [ configure.builds /boost/architecture//power : $(properties) : "power" ] 38 else if [ configure.builds /boost/architecture//sparc : $(properties) : "sparc" ] [all …]
|
| /external/mesa3d/src/vulkan/runtime/ |
| D | vk_physical_device.h | 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 13 * Software. 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21 * IN THE SOFTWARE. 78 /** Table of all physical device properties which is initialized similarly 81 struct vk_properties properties; member [all …]
|