Home
last modified time | relevance | path

Searched +full:discard +full:- +full:paths (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/external/deqp/external/vulkancts/data/vulkan/amber/graphicsfuzz/
Dindex.txt1 { "access-new-vector-inside-if-condition.amber", "access-new-vector-inside-if-condition"…
2 { "always-discarding-function.amber", "always-discarding-function", "A f…
3 { "always-false-if-in-do-while.amber", "always-false-if-in-do-while", "A …
4 { "always-false-if-with-discard-return.amber", "always-false-if-with-discard-return", …
5 { "arr-value-set-to-arr-value-squared.amber", "arr-value-set-to-arr-value-squared", …
6 { "array-idx-multiplied-by-for-loop-idx.amber", "array-idx-multiplied-by-for-loop-idx", …
7 { "assign-array-value-to-another-array.amber", "assign-array-value-to-another-array", …
8 { "assign-array-value-to-another-array-2.amber", "assign-array-value-to-another-array-2"…
9 { "barrier-in-loop-with-break.amber", "barrier-in-loop-with-break", "A c…
10 { "break-in-do-while-with-nested-if.amber", "break-in-do-while-with-nested-if", …
[all …]
Dcov-large-number-of-false-conditions-return-discard-continue.amber9 # http://www.apache.org/licenses/LICENSE-2.0
19 # A test for a coverage-gap found by the GraphicsFuzz project.
21 # Short description: A fragment shader that covers specific LLVM code paths
25 # Optimized using spirv-opt with the following arguments:
26 # '-O'
27 # spirv-opt commit hash: a0370efd589be33d5d9a85cfde2f85841b3755af
87 …gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard;…
88 …gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard;…
91 # if(gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard;
95 …gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard; if(gl_FragCoord.x < 0.0) discard;…
[all …]
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskUtil.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
70 // Ignore empty paths. in toString()
92 * Parses from a string to a FieldMask and validates all field paths.
102 * Constructs a FieldMask for a list of field paths in a certain type.
107 public static FieldMask fromStringList(Class<? extends Message> type, Iterable<String> paths) { in fromStringList() argument
108 return fromStringList(Internal.getDefaultInstance(type).getDescriptorForType(), paths); in fromStringList()
112 * Constructs a FieldMask for a list of field paths in a certain type.
116 public static FieldMask fromStringList(Descriptor descriptor, Iterable<String> paths) { in fromStringList() argument
117 return fromStringList(Optional.of(descriptor), paths); in fromStringList()
[all …]
/external/cronet/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskUtil.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
70 // Ignore empty paths. in toString()
92 * Parses from a string to a FieldMask and validates all field paths.
102 * Constructs a FieldMask for a list of field paths in a certain type.
107 public static FieldMask fromStringList(Class<? extends Message> type, Iterable<String> paths) { in fromStringList() argument
108 return fromStringList(Internal.getDefaultInstance(type).getDescriptorForType(), paths); in fromStringList()
112 * Constructs a FieldMask for a list of field paths in a certain type.
116 public static FieldMask fromStringList(Descriptor descriptor, Iterable<String> paths) { in fromStringList() argument
117 return fromStringList(Optional.of(descriptor), paths); in fromStringList()
[all …]
/external/cronet/third_party/apache-portable-runtime/src/docs/
Dcanonical_filenames.html10 program depending upon APR needs to know that two paths may be
12 two paths do not return the same resource</p>.
15 have only one root path, "/". Win32 and OS2 share root paths of
19 of the form "//server/share/" where share is a share-point of the
20 specified network server. Finally, NetWare root paths are of the
22 machine. All these non-Unix file systems accept volume:path,
38 It's also critical to simply truncate leading "/../" paths to "/",
43 paths, leading ".." elements are significant, until they are merged
63 many or many to one translations. An example would be u-umlaut, which
64 might be accepted as a single character u-umlaut, a two character
[all …]
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DFieldMaskPartial.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
43 // Manually-written partial class for the FieldMask well-known type.
50 /// Converts a field mask specified by paths to a string.
57 /// <param name="paths">Paths in the field mask</param>
58 /// <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
60 internal static string ToJson(IList<string> paths, bool diagnosticOnly) in ToJson() argument
62 var firstInvalid = paths.FirstOrDefault(p => !IsPathValid(p)); in ToJson()
67 var query = paths.Select(JsonFormatter.ToJsonName); in ToJson()
70 … JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToJsonName))); in ToJson()
[all …]
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DFieldMaskPartial.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
43 // Manually-written partial class for the FieldMask well-known type.
50 /// Converts a field mask specified by paths to a string.
57 /// <param name="paths">Paths in the field mask</param>
58 /// <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
60 internal static string ToJson(IList<string> paths, bool diagnosticOnly) in ToJson() argument
62 var firstInvalid = paths.FirstOrDefault(p => !IsPathValid(p)); in ToJson()
67 var query = paths.Select(JsonFormatter.ToJsonName); in ToJson()
70 … JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToJsonName))); in ToJson()
[all …]
/external/rust/crates/clang-sys/build/
Dcommon.rs1 // SPDX-License-Identifier: Apache-2.0
43 /// `llvm-config` couldn't be executed but an instance of `libclang` was found
47 discard: bool, field
51 pub fn discard(mut self) { in discard() method
52 self.discard = true; in discard()
58 if self.discard { in drop()
64 if let Some(errors) = errors.get("llvm-config") { in drop()
66 "cargo:warning=could not execute `llvm-config` one or more \ in drop()
68 a full path to valid `llvm-config` executable it will be used \ in drop()
78 if let Some(errors) = errors.get("xcode-select") { in drop()
[all …]
/external/rust/crates/clang-sys/out/
Dcommon.rs1 // SPDX-License-Identifier: Apache-2.0
43 /// `llvm-config` couldn't be executed but an instance of `libclang` was found
47 discard: bool, field
51 pub fn discard(mut self) { in discard() method
52 self.discard = true; in discard()
58 if self.discard { in drop()
64 if let Some(errors) = errors.get("llvm-config") { in drop()
66 "cargo:warning=could not execute `llvm-config` one or more \ in drop()
68 a full path to valid `llvm-config` executable it will be used \ in drop()
78 if let Some(errors) = errors.get("xcode-select") { in drop()
[all …]
/external/perfetto/docs/case-studies/
Dmemory.md6 * [ADB](https://developer.android.com/studio/command-line/adb) installed and
13 /docs/data-sources/native-heap-profiler.md#heapprofd-targets) for more
19 `dumpsys meminfo` which gives a high-level overview of how much of the various
31 ------ ------ ------ ------ ------ ------ ------ ------
54 the [mmap() system call](https://man7.org/linux/man-pages/man2/mmap.2.html).
59 VMAs can be of two types: file-backed and anonymous.
61 **File-backed VMAs** are a view of a file in memory. They are obtained passing a
65 File-backed VMAs are used, for instance, by the dynamic linker (`ld`) when
69 **Anonymous VMAs** are memory-only areas not backed by any file. This is the way
87 From a memory-consumption viewpoint, individual pages within a VMA can have the
[all …]
/external/dokka/core/src/main/kotlin/Utilities/
DUri.kt7 // Normalize paths to remove . and .. segments in <lambda>()
12 // Split paths into segments in <lambda>()
16 // Discard trailing segment of base path in <lambda>()
22 …val commonPartsSize = bParts.zip(cParts).takeWhile { (basePart, childPart) -> basePart == childPar… in <lambda>()
/external/aws-crt-java/codebuild/
Dlinux-gcc-4x-x86.yml8 - export CC=gcc
11 - JAVA_HOME=/opt/jdk1.8.0_201/ setarch i386 mvn -B compile -Punix-x86
14 discard-paths: yes
16 - 'target/surefire-reports/**'
17 - 'hs_err_pid*'
18 - 'core*'
Dlinux-gcc-4x-x64.yml2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - sudo apt-get update -y
7 - sudo apt-get install gcc cmake3 ninja-build -y
10 - export CC=gcc
13 - echo Build started on `date`
14 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh
17 - echo Build completed on `date`
20 discard-paths: yes
22 - 'target/surefire-reports/**'
23 - 'hs_err_pid*'
[all …]
Dlinux-clang3-x64.yml2 #this buildspec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - sudo apt-get update -y
7 - sudo apt-get install clang-3.9 cmake3 ninja-build -y
10 - export CC=clang-3.9
13 - echo Build started on `date`
14 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
17 - echo Build completed on `date`
20 discard-paths: yes
22 - 'target/surefire-reports/**'
23 - 'hs_err_pid*'
[all …]
Dlinux-gcc-6x-x64.yml2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - sudo add-apt-repository ppa:ubuntu-toolchain-r/test
7 - sudo apt-get update -y
8 - sudo apt-get install gcc-6 cmake3 ninja-build -y
11 - export CC=gcc-6
14 - echo Build started on `date`
15 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh
18 - echo Build completed on `date`
21 discard-paths: yes
23 - 'target/surefire-reports/**'
[all …]
Dlinux-gcc-5x-x64.yml2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - sudo add-apt-repository ppa:ubuntu-toolchain-r/test
7 - sudo apt-get update -y
8 - sudo apt-get install gcc-5 cmake3 ninja-build -y
11 - export CC=gcc-5
14 - echo Build started on `date`
15 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh
18 - echo Build completed on `date`
21 discard-paths: yes
23 - 'target/surefire-reports/**'
[all …]
Dlinux-gcc-7x-x64.yml2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - sudo add-apt-repository ppa:openjdk-r/ppa
7 - sudo add-apt-repository ppa:ubuntu-toolchain-r/test
8 - sudo apt-get update -y
9 - sudo apt-get install gcc-7 cmake3 ninja-build -y
12 - export CC=gcc-7
15 - echo Build started on `date`
16 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh
19 - echo Build completed on `date`
22 discard-paths: yes
[all …]
Dlinux-clang6-x64.yml2 #this buildspec assumes the ubuntu aws/codebuild/java:openjdk-8 image
6 - wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
7 - sudo add-apt-repository ppa:ubuntu-toolchain-r/test
8 - sudo apt-add-repository "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-6.0 main"
9 - sudo apt-get update -y
10 - sudo apt-get install clang-6.0 cmake3 cppcheck clang-format-6.0 ninja-build -y -f
13 - export CC=clang-6.0
14 - export CLANG_FORMAT=clang-format-6.0
17 - echo Build started on `date`
18 - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
[all …]
Dtest-aws-java-sdk-v2.yml2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image
5 runtime-versions:
8 - add-apt-repository ppa:openjdk-r/ppa
9 - add-apt-repository ppa:ubuntu-toolchain-r/test
10 - apt-get update -y
11 - apt-get install gcc-7 cmake ninja-build -y
12 - git submodule update --init --recursive
13 - git clone https://github.com/aws/aws-sdk-java-v2.git
15- sed -i 's/<awscrt.version>.*<\/awscrt.version>/<awscrt.version>1.0.0-SNAPSHOT<\/awscrt.version>/…
17 - cat aws-sdk-java-v2/pom.xml | grep -E '<awscrt.version>.*'
[all …]
/external/icing/icing/index/numeric/
Dinteger-index.h7 // http://www.apache.org/licenses/LICENSE-2.0
26 #include "icing/file/file-backed-proto.h"
28 #include "icing/file/memory-mapped-file.h"
29 #include "icing/index/numeric/integer-index-storage.h"
30 #include "icing/index/numeric/numeric-index.h"
31 #include "icing/index/numeric/posting-list-integer-index-serializer.h"
32 #include "icing/index/numeric/wildcard-property-storage.pb.h"
33 #include "icing/schema/schema-store.h"
34 #include "icing/store/document-id.h"
35 #include "icing/store/document-store.h"
[all …]
/external/pigweed/pw_tokenizer/
Ddatabase.gni7 # https://www.apache.org/licenses/LICENSE-2.0
37 # optional_paths: Paths or globs to files in the output directory from which
41 # input_databases: paths to other database files from which to add tokens
106 "--discard-temporary",
115 "--force",
116 "--type",
123 "--database",
141 "Paths in 'optional_paths' must be in the out directory. Use " +
/external/fonttools/Snippets/
Dchecksum.py2 # -*- coding: utf-8 -*-
36 # paths that would otherwise not be unique with a file extension replacement with .ttx
39 # coolfont-regular.woff ==> coolfont-regular.ttx
40 …# coolfont-regular.woff2 ==> coolfont-regular.ttx (KAPOW! checksum data lost as this would overw…
49 "[checksum.py] -i and --include are not supported for font binary filepaths. \
50 Use these flags for checksums with the --ttx flag."
55 "[checksum.py] -e and --exclude are not supported for font binary filepaths. \
56 Use these flags for checksums with the --ttx flag."
117 print("-" * 80)
122 print("-" * 80)
[all …]
/external/curl/docs/libcurl/opts/
DCURLOPT_UNIX_SOCKET_PATH.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - CURLOPT_ABSTRACT_UNIX_SOCKET (3)
9 - CURLOPT_OPENSOCKETFUNCTION (3)
10 - unix (7)
12 - All
13 ---
17 CURLOPT_UNIX_SOCKET_PATH - Unix domain socket
42 as these are TCP-oriented, and asking a proxy server to connect to a certain
[all …]
/external/aws-crt-java/codebuild/cd/
Ddeploy-snapshot.yml2 #this buildspec assumes the aws-common-runtime/ubuntu-16.04 image
8 - sudo add-apt-repository ppa:openjdk-r/ppa
9 - sudo apt-get update -y
10 - sudo apt-get install openjdk-11-jdk-headless maven wget unzip -y -f
12- wget --quiet https://dl.google.com/android/repository/commandlinetools-linux-7583922_latest.zip
13 - export ANDROID_SDK_ROOT=$CODEBUILD_SRC_DIR/android-sdk
14 - mkdir -p $ANDROID_SDK_ROOT/cmdline-tools
15 - unzip commandlinetools-linux-7583922_latest.zip -d $ANDROID_SDK_ROOT/cmdline-tools
17 - mv $ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools $ANDROID_SDK_ROOT/cmdline-tools/latest
19- echo y | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager --install "build-tools;30.0.3" "p…
[all …]
/external/junit/src/main/java/org/junit/rules/
DTemporaryFolder.java54 * Create a temporary folder which uses system default temporary-file
66 * If {@code null} then system default temporary-file directory is used.
104 * If {@code null} then system default temporary-file directory is
181 * Returns a new fresh folder with the given paths under the temporary
184 * and a directory named {@code "child"} will be created under the newly-created
187 public File newFolder(String... paths) throws IOException { in newFolder() argument
188 if (paths.length == 0) { in newFolder()
193 * Before checking if the paths are absolute paths, check if create() was ever called, in newFolder()
197 for (String path : paths) { in newFolder()
206 for (String path : paths) { in newFolder()
[all …]

12345678910>>...18