/external/libxkbcommon/src/xkbcomp/ |
D | keycodes.c | 29 #include "xkbcomp-priv.h" 35 enum merge_mode merge; member 42 enum merge_mode merge; member 64 InitAliasInfo(AliasInfo *info, enum merge_mode merge, in InitAliasInfo() argument 68 info->merge = merge; in InitAliasInfo() 69 info->alias = alias; in InitAliasInfo() 70 info->real = real; in InitAliasInfo() 77 for (xkb_led_index_t idx = 0; idx < info->num_led_names; idx++) { in FindLedByName() 78 LedNameInfo *ledi = &info->led_names[idx]; in FindLedByName() 79 if (ledi->name == name) { in FindLedByName() [all …]
|
D | types.c | 29 #include "xkbcomp-priv.h" 44 enum merge_mode merge; member 68 return ModMaskText(info->ctx, &info->mods, entry->mods.mods); in MapEntryTxt() 74 return xkb_atom_text(info->ctx, type->name); in TypeTxt() 80 return ModMaskText(info->ctx, &info->mods, type->mods); in TypeMaskTxt() 87 return ReportShouldBeArray(info->ctx, "key type", field, in ReportTypeShouldBeArray() 95 return ReportBadType(info->ctx, "key type", field, in ReportTypeBadType() 106 info->ctx = ctx; in InitKeyTypesInfo() 107 info->mods = *mods; in InitKeyTypesInfo() 113 darray_free(type->entries); in ClearKeyTypeInfo() [all …]
|
/external/rust/android-crates-io/crates/merge/ |
D | README.md | 1 <!--- 3 SPDX-License-Identifier: CC0-1.0 4 --> 6 # merge-rs 8 The `merge` crate provides the `Merge` trait that can be used to merge multiple 12 trait Merge { 13 fn merge(&mut self, other: Self); 17 `Merge` is implemented for `Option` and can be derived for structs: 19 <!-- should be kept in sync with examples/user.rs --> 21 use merge::Merge; [all …]
|
D | METADATA | 1 name: "merge" 2 description: "Merge multiple values into one" 11 homepage: "https://crates.io/crates/merge" 14 value: "https://static.crates.io/crates/merge/merge-0.1.0.crate"
|
D | Cargo.toml | 9 # issue against the rust-lang/cargo repository. If you're 15 name = "merge" 19 description = "Merge multiple values into one" 20 keywords = ["merge", "macros", "derive"] 21 categories = ["rust-patterns"] 22 license = "Apache-2.0 OR MIT" 23 repository = "https://git.sr.ht/~ireas/merge-rs" 28 [dependencies.num-traits] 31 [dev-dependencies.envy] 34 [dev-dependencies.serde] [all …]
|
/external/fonttools/Doc/source/ |
D | merge.rst | 2 merge: Merge multiple fonts into one 5 ``fontTools.merge`` provides both a library and a command line interface 6 (``fonttools merge``) for merging multiple fonts together. 8 .. autoclass:: fontTools.merge.Merger 9 :inherited-members:
|
/external/python/cpython3/Doc/howto/ |
D | mro.rst | 11 but it is still used in later versions -- including Python 3. 37 the official Python 2.3 home-page.* 40 ------------- 42 *Felix qui potuit rerum cognoscere causas* -- Virgilius 66 Moreover, unless you make strong use of multiple inheritance and you 67 have non-trivial hierarchies, you don't need to understand the C3 69 you really want to know how multiple inheritance works, then this paper 75 1) Given a class C in a complicated multiple inheritance hierarchy, it 76 is a non-trivial task to specify the order in which methods are 90 C is simply the list [C, C1 , C2]. However, with multiple [all …]
|
/external/fonttools/Lib/fontTools/merge/ |
D | __init__.py | 6 import fontTools.merge.base 7 from fontTools.merge.cmap import ( 12 from fontTools.merge.layout import layoutPreMerge, layoutPostMerge 13 from fontTools.merge.options import Options 14 import fontTools.merge.tables 21 log = logging.getLogger("fontTools.merge") 28 This class merges multiple files into a single OpenType font, taking into 30 cross-font metrics (e.g. ``hhea.ascent`` is set to the maximum value across 33 If multiple glyphs map to the same Unicode value, and the glyphs are considered 45 - All fonts must have the same units per em. [all …]
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/prost-derive-0.13.3/src/ |
D | lib.rs | 1 #![doc(html_root_url = "https://docs.rs/prost-derive/0.13.3")] 20 fn try_message(input: TokenStream) -> Result<TokenStream, Error> { in try_message() 89 // See: https://developers.google.com/protocol-buffers/docs/encoding#order in try_message() 100 "message {} has multiple fields with tag {}", in try_message() 114 let merge = fields.iter().map(|(field_ident, field)| { in try_message() localVariable 115 let merge = field.merge(quote!(value)); in try_message() localVariable 122 #merge.map_err(|mut error| { in try_message() 189 ) -> ::core::result::Result<(), ::prost::DecodeError> in try_message() 193 #(#merge)* in try_message() 199 fn encoded_len(&self) -> usize { in try_message() [all …]
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/prost-derive-0.13.3/src/ |
D | lib.rs | 1 #![doc(html_root_url = "https://docs.rs/prost-derive/0.13.3")] 20 fn try_message(input: TokenStream) -> Result<TokenStream, Error> { in try_message() 89 // See: https://developers.google.com/protocol-buffers/docs/encoding#order in try_message() 100 "message {} has multiple fields with tag {}", in try_message() 114 let merge = fields.iter().map(|(field_ident, field)| { in try_message() localVariable 115 let merge = field.merge(quote!(value)); in try_message() localVariable 122 #merge.map_err(|mut error| { in try_message() 189 ) -> ::core::result::Result<(), ::prost::DecodeError> in try_message() 193 #(#merge)* in try_message() 199 fn encoded_len(&self) -> usize { in try_message() [all …]
|
/external/rust/android-crates-io/crates/axum/src/docs/routing/ |
D | layer.md | 29 middleware"](crate::middleware#writing-middleware) for the different options. 31 If you only want middleware on some routes you can use [`Router::merge`]: 45 // Merge everything into one `Router` 47 .merge(with_tracing) 48 .merge(with_compression); 52 # Multiple middleware 54 It's recommended to use [`tower::ServiceBuilder`] when applying multiple 61 middleware"](crate::middleware#rewriting-request-uri-in-middleware) for more
|
/external/clang/docs/ |
D | SourceBasedCodeCoverage.rst | 2 Source-based Code Coverage 11 This document explains how to use clang's source-based code coverage feature. 12 It's called "source-based" because it operates on AST and preprocessor 17 * :doc:`SanitizerCoverage` - A low-overhead tool meant for use alongside the 18 various sanitizers. It can provide up to edge-level coverage. 20 * gcov - A GCC-compatible coverage implementation which operates on DebugInfo. 22 From this point onwards "code coverage" will refer to the source-based kind. 35 The next few sections work through a complete, copy-'n-paste friendly example 38 .. code-block:: cpp 55 To compile code with coverage enabled, pass ``-fprofile-instr-generate [all …]
|
/external/snakeyaml/src/test/resources/issues/ |
D | issue103.yaml | 1 --- 3 - &CENTER { x: 1, y: 2 } 4 - &LEFT { x: 0, y: 2 } 5 - &BIG { r: 10 } 6 - &SMALL { r: 1 } 10 - # Explicit keys 16 - # Merge one map 21 - # Merge one map and override 27 - !!map # Merge multiple maps 28 !!merge ignore: [ *CENTER, *BIG ] [all …]
|
D | issue100-2.yaml | 1 --- 3 - &CENTER { x: 1, y: 2 } 4 - &LEFT { x: 0, y: 2 } 5 - &BIG { r: 10 } 6 - &SMALL { r: 1 } 10 - # Explicit keys 16 - # Merge one map 21 - !!map # Merge multiple maps 22 !!merge ignore: [ *CENTER, *BIG ] 25 - # Override
|
/external/deqp-deps/SPIRV-Tools/ |
D | CONTRIBUTING.md | 1 # Contributing to SPIR-V Tools 6 [Tracking SPIRV-Tools work with GitHub projects](https://github.com/KhronosGroup/SPIRV-Tools/blob/m… 11 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) and 12 [projects](https://github.com/KhronosGroup/SPIRV-Tools/projects). If the bug has 14 [here](https://github.com/KhronosGroup/SPIRV-Tools/issues/new). 20 issue is about. Simply using "Segfault in spirv-opt" is not helpful 21 because there could be (but hopefully aren't) multiple bugs with 30 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) as well. Please 39 [Khronos Open Source Contributor License Agreement](https://cla-assistant.io/KhronosGroup/SPIRV-Too… 43 need to be sure of various other things -- for instance that you'll tell us if [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/ |
D | CONTRIBUTING.md | 1 # Contributing to SPIR-V Tools 6 [Tracking SPIRV-Tools work with GitHub projects](https://github.com/KhronosGroup/SPIRV-Tools/blob/m… 11 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) and 12 [projects](https://github.com/KhronosGroup/SPIRV-Tools/projects). If the bug has 14 [here](https://github.com/KhronosGroup/SPIRV-Tools/issues/new). 20 issue is about. Simply using "Segfault in spirv-opt" is not helpful 21 because there could be (but hopefully aren't) multiple bugs with 30 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) as well. Please 39 [Khronos Open Source Contributor License Agreement](https://cla-assistant.io/KhronosGroup/SPIRV-Too… 43 need to be sure of various other things -- for instance that you'll tell us if [all …]
|
/external/angle/third_party/spirv-tools/src/ |
D | CONTRIBUTING.md | 1 # Contributing to SPIR-V Tools 6 [Tracking SPIRV-Tools work with GitHub projects](https://github.com/KhronosGroup/SPIRV-Tools/blob/m… 11 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) and 12 [projects](https://github.com/KhronosGroup/SPIRV-Tools/projects). If the bug has 14 [here](https://github.com/KhronosGroup/SPIRV-Tools/issues/new). 20 issue is about. Simply using "Segfault in spirv-opt" is not helpful 21 because there could be (but hopefully aren't) multiple bugs with 30 [issues](https://github.com/KhronosGroup/SPIRV-Tools/issues) as well. Please 39 [Khronos Open Source Contributor License Agreement](https://cla-assistant.io/KhronosGroup/SPIRV-Too… 43 need to be sure of various other things -- for instance that you'll tell us if [all …]
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | base_preprocessing_layer.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 45 be looking for one of the many built-in 57 streaming: Whether a layer can be adapted multiple times without resetting 88 data: A mini-batch of inputs to the layer. 92 def reset_state(self): # pylint: disable=method-hidden 97 """Merge the statistics of multiple preprocessing layers. 102 layers: Layers whose statistics should be merge with the statistics of 111 preprocessing layer's state. This method handles any one-time operations 165 during each `tf.function` call. Running multiple batches inside a 186 when adapting each layer only once, but if you adapt a layer multiple times [all …]
|
/external/pigweed/pw_build/py/pw_build/ |
D | merge_profraws.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 14 """Merge multiple profraws together using llvm-profdata.""" 36 def _parse_args() -> dict[str, Any]: 39 '--llvm-profdata-path', 42 help='Path to the llvm-profdata binary to use for merging.', 45 '--test-metadata-path', 52 '--profdata-path', 56 ' coverage report for the tests described in --test-metadata.', 59 '--depfile-path', 63 'requirements from parsing --test-metadata.', [all …]
|
/external/cronet/tot/build/util/ |
D | lastchange.py | 3 # Use of this source code is governed by a BSD-style license that can be 7 lastchange.py -- Chromium revision fetching utility. 52 command = ['sh', '-c', ' '.join(command)] 79 command = ['sh', '-c', ' '.join(command)] 107 Return the merge-base of HEAD and ref. 111 ref: The ref to use to find the merge base. 113 The git commit SHA of the merge-base as a string. 115 logging.debug("Calculating merge base between HEAD and %s in %s", 117 command = ['merge-base', 'HEAD', ref] 123 Fetch the Git hash (and Cr-Commit-Position if any) for a given directory. [all …]
|
/external/cronet/stable/build/util/ |
D | lastchange.py | 3 # Use of this source code is governed by a BSD-style license that can be 7 lastchange.py -- Chromium revision fetching utility. 52 command = ['sh', '-c', ' '.join(command)] 79 command = ['sh', '-c', ' '.join(command)] 107 Return the merge-base of HEAD and ref. 111 ref: The ref to use to find the merge base. 113 The git commit SHA of the merge-base as a string. 115 logging.debug("Calculating merge base between HEAD and %s in %s", 117 command = ['merge-base', 'HEAD', ref] 123 Fetch the Git hash (and Cr-Commit-Position if any) for a given directory. [all …]
|
/external/angle/build/util/ |
D | lastchange.py | 3 # Use of this source code is governed by a BSD-style license that can be 7 lastchange.py -- Chromium revision fetching utility. 52 command = ['sh', '-c', ' '.join(command)] 79 command = ['sh', '-c', ' '.join(command)] 107 Return the merge-base of HEAD and ref. 111 ref: The ref to use to find the merge base. 113 The git commit SHA of the merge-base as a string. 115 logging.debug("Calculating merge base between HEAD and %s in %s", 117 command = ['merge-base', 'HEAD', ref] 123 Fetch the Git hash (and Cr-Commit-Position if any) for a given directory. [all …]
|
/external/cronet/stable/third_party/libc++/src/utils/ |
D | clang-format-merge-driver.sh | 4 # libc++'s clang-format of the whole tree. Most contributors should not require that 5 # since they don't have many pre-clang-format patches lying around. This script is to 10 # $ git config merge.libcxx-reformat.name "Run clang-format when rebasing libc++ patches" 11 # $ git config merge.libcxx-reformat.driver "libcxx/utils/clang-format-merge-driver.sh %O %A %B %… 22 …ts at the other branch's version (for nonlinear histories, there might be multiple other branches). 28 clang-format --style=file --assume-filename="$path" < "$base" > "$base.tmp" 31 clang-format --style=file --assume-filename="$path" < "$current" > "$current.tmp" 34 clang-format --style=file --assume-filename="$path" < "$other" > "$other.tmp" 37 git merge-file -Lcurrent -Lbase -Lother "$current" "$base" "$other"
|
/external/cronet/tot/third_party/libc++/src/utils/ |
D | clang-format-merge-driver.sh | 4 # libc++'s clang-format of the whole tree. Most contributors should not require that 5 # since they don't have many pre-clang-format patches lying around. This script is to 10 # $ git config merge.libcxx-reformat.name "Run clang-format when rebasing libc++ patches" 11 # $ git config merge.libcxx-reformat.driver "libcxx/utils/clang-format-merge-driver.sh %O %A %B %… 22 …ts at the other branch's version (for nonlinear histories, there might be multiple other branches). 28 clang-format --style=file --assume-filename="$path" < "$base" > "$base.tmp" 31 clang-format --style=file --assume-filename="$path" < "$current" > "$current.tmp" 34 clang-format --style=file --assume-filename="$path" < "$other" > "$other.tmp" 37 git merge-file -Lcurrent -Lbase -Lother "$current" "$base" "$other"
|
/external/openthread/tools/gerrit/ |
D | README.md | 1 # git-squash-merge tool 3 `git-squash-merge` is a bash script to help squash merge a given branch into the current branch. Th… 10 git-squash-merge [--no-list] [--no-commit] <branch> [<commit msg>]" 15 - `<branch>` specifies the name of branch to merge into current branch. 16 - `<commit msg>` is an optional parameter specifying text to add to the commit message. 20 - `--no-list` when used the commit message will not include the list of squashed commits. 21 - `--no-commit` when used, the tool squashes and stages the changes but does not commit" 26 ~/sw/openthread $ ./tools/gerrit/git-squash-merge.sh github/master "OpenThread GitHub sync" 29 Date: Tue Aug 14 14:53:33 2018 -0700 31 Squash merge 'github/master' into 'HEAD' [all …]
|