| /third_party/rust/rust/src/tools/clippy/tests/ui/ |
| D | explicit_iter_loop.stderr | 1 error: it is more concise to loop over references to containers instead of using explicit iteration… 13 error: it is more concise to loop over references to containers instead of using explicit iteration… 19 error: it is more concise to loop over references to containers instead of using explicit iteration… 25 error: it is more concise to loop over references to containers instead of using explicit iteration… 31 error: it is more concise to loop over references to containers instead of using explicit iteration… 37 error: it is more concise to loop over references to containers instead of using explicit iteration… 43 error: it is more concise to loop over references to containers instead of using explicit iteration… 57 error: it is more concise to loop over references to containers instead of using explicit iteration… 63 error: it is more concise to loop over references to containers instead of using explicit iteration… 69 error: it is more concise to loop over references to containers instead of using explicit iteration… [all …]
|
| D | explicit_into_iter_loop.stderr | 1 error: it is more concise to loop over containers instead of using explicit iteration methods 9 error: it is more concise to loop over containers instead of using explicit iteration methods 15 error: it is more concise to loop over containers instead of using explicit iteration methods 21 error: it is more concise to loop over containers instead of using explicit iteration methods 27 error: it is more concise to loop over containers instead of using explicit iteration methods 33 error: it is more concise to loop over containers instead of using explicit iteration methods
|
| /third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
| D | containers_test.cpp | 15 #include "marl/containers.h" 27 marl::containers::vector<std::string, 4> vector(allocator); in TEST_F() 32 marl::containers::vector<std::string, 4> vector(allocator); in TEST_F() 46 marl::containers::vector<std::string, 1> vector(allocator); in TEST_F() 60 marl::containers::vector<std::string, 4> vector(allocator); in TEST_F() 94 marl::containers::vector<std::string, 2> vector(allocator); in TEST_F() 128 marl::containers::vector<std::string, 4> vectorA(allocator); in TEST_F() 135 marl::containers::vector<std::string, 4> vectorB(vectorA, allocator); in TEST_F() 143 marl::containers::vector<std::string, 4> vectorA(allocator); in TEST_F() 150 marl::containers::vector<std::string, 2> vectorB(vectorA, allocator); in TEST_F() [all …]
|
| /third_party/typescript/src/services/ |
| D | navigateTo.ts | 77 function tryAddSingleDeclarationName(declaration: Declaration, containers: Push<string>): boolean { 79 …ushLiteral(name, containers) || name.kind === SyntaxKind.ComputedPropertyName && tryAddComputedPro… 85 function tryAddComputedPropertyName(expression: Expression, containers: Push<string>): boolean { 86 return pushLiteral(expression, containers) 87 …ssion(expression) && (containers.push(expression.name.text), true) && tryAddComputedPropertyName(e… 90 function pushLiteral(node: Node, containers: Push<string>): boolean { 91 … return isPropertyNameLiteral(node) && (containers.push(getTextOfIdentifierOrLiteral(node)), true); 95 const containers: string[] = []; constant 100 … === SyntaxKind.ComputedPropertyName && !tryAddComputedPropertyName(name.expression, containers)) { 104 containers.shift(); [all …]
|
| /third_party/grpc/tools/run_tests/performance/templates/ |
| D | loadtest_template_psm_proxyless_prebuilt_all_languages.yaml | 35 - containers/runtime/xds-server/config/default_config.json 37 - containers/runtime/xds-server/bootstrap.json 65 - containers/runtime/xds-server/config/default_config.json 67 - containers/runtime/xds-server/bootstrap.json 94 - containers/runtime/xds-server/config/default_config.json 96 - containers/runtime/xds-server/bootstrap.json 124 - containers/runtime/xds-server/config/default_config.json 126 - containers/runtime/xds-server/bootstrap.json 153 - containers/runtime/xds-server/config/default_config.json 155 - containers/runtime/xds-server/bootstrap.json [all …]
|
| D | loadtest_template_psm_proxied_prebuilt_all_languages.yaml | 32 - containers/runtime/xds-server/config/default_config.json 34 - containers/runtime/xds-server/bootstrap.json 66 - containers/runtime/xds-server/config/default_config.json 68 - containers/runtime/xds-server/bootstrap.json 99 - containers/runtime/xds-server/config/default_config.json 101 - containers/runtime/xds-server/bootstrap.json 133 - containers/runtime/xds-server/config/default_config.json 135 - containers/runtime/xds-server/bootstrap.json 166 - containers/runtime/xds-server/config/default_config.json 168 - containers/runtime/xds-server/bootstrap.json [all …]
|
| D | loadtest_template_psm_proxyless_basic_all_languages.yaml | 44 - containers/runtime/xds-server/config/default_config.json 46 - containers/runtime/xds-server/bootstrap.json 83 - containers/runtime/xds-server/config/default_config.json 85 - containers/runtime/xds-server/bootstrap.json 121 - containers/runtime/xds-server/config/default_config.json 123 - containers/runtime/xds-server/bootstrap.json 157 - containers/runtime/xds-server/config/default_config.json 159 - containers/runtime/xds-server/bootstrap.json 192 - containers/runtime/xds-server/config/default_config.json 194 - containers/runtime/xds-server/bootstrap.json [all …]
|
| D | loadtest_template_psm_proxied_basic_all_languages.yaml | 41 - containers/runtime/xds-server/config/default_config.json 43 - containers/runtime/xds-server/bootstrap.json 84 - containers/runtime/xds-server/config/default_config.json 86 - containers/runtime/xds-server/bootstrap.json 129 - containers/runtime/xds-server/config/default_config.json 131 - containers/runtime/xds-server/bootstrap.json 169 - containers/runtime/xds-server/config/default_config.json 171 - containers/runtime/xds-server/bootstrap.json 208 - containers/runtime/xds-server/config/default_config.json 210 - containers/runtime/xds-server/bootstrap.json [all …]
|
| /third_party/mesa3d/src/intel/genxml/ |
| D | gen_bits_header.py | 108 % for _, container in sorted(containers.items(), key=itemgetter(0)): 244 def __init__(self, containers): argument 246 self.containers = containers 279 if name not in self.containers: 280 self.containers[name] = Container(name) 281 self.container_stack.append(self.containers[name]) 329 containers = {} 332 p = XmlParser(containers) 341 container = containers[name_field[0]] 349 f.write(TEMPLATE.render(containers=containers, guard=pargs.cpp_guard))
|
| /third_party/protobuf/third_party/abseil-cpp/absl/container/ |
| D | hash_container_defaults.h | 25 // by default by Abseil hash-based (unordered) containers for hashing when 29 // flexibility for defining underlying containers. 34 // default by Abseil hash-based (unordered) containers for equality check when 38 // flexibility for defining underlying containers.
|
| /third_party/mesa3d/docs/ci/ |
| D | docker.rst | 11 The Docker containers are rebuilt using the shell scripts under 55 space as we rev those containers (perhaps `this script 58 Note that Docker doesn't allow containers to be stored on NFS, and 66 anyone on the internet run code on your device. Docker containers may 70 * DUTs must expose the DRI device nodes to the containers.
|
| /third_party/rust/rust/src/ci/scripts/ |
| D | install-sccache.sh | 3 # sccache on Linux since it's installed elsewhere through all the containers. 19 # FIXME: we should probably install sccache outside the containers and then 20 # mount it inside the containers so we can centralize all installation here.
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
| D | hash_function_defaults.h | 15 // Define the default Hash and Eq functions for SwissTable containers. 18 // functions for SwissTable containers. There are two reasons for this. 20 // SwissTable containers are power of 2 sized containers: 28 // SwissTable containers support heterogeneous lookup: 37 // For SwissTable containers this requirement is relaxed to allow a and b of
|
| /third_party/gn/src/gn/ |
| D | string_atom.h | 20 // standard containers using StringAtom key types is the same as if 23 // In addition, _ordered_ containers support heterogeneous lookups (i.e. 28 // containers by using the StringAtom::Fast{Hash,Equal,Compare} structs, 29 // which will force containers to hash/compare pointer values instead, 97 // in order to use them in standard containers without surprises by 122 // Use the following method and structs to implement containers that
|
| /third_party/grpc/tools/gce/ |
| D | create_win2019_container_vm.sh | 31 INSTANCE_NAME="${USER}-win2019-for-containers-test1" 44 --image-family=windows-2019-for-containers 46 # or use --image-family=windows-2019-core-for-containers
|
| /third_party/gn/src/base/ |
| D | stl_util.h | 88 // Returns a new ResultType containing the difference of two sorted containers. 99 // Returns a new ResultType containing the union of two sorted containers. 111 // containers. 134 // The functions here implement these for the standard containers until those 136 // For Chromium containers overloads should be defined in their own headers 137 // (like standard containers). 138 // Note: there is no std::erase for standard associative containers so we don't
|
| /third_party/protobuf/third_party/abseil-cpp/absl/container/internal/ |
| D | hash_function_defaults.h | 15 // Define the default Hash and Eq functions for SwissTable containers. 18 // functions for SwissTable containers. There are two reasons for this. 20 // SwissTable containers are power of 2 sized containers: 28 // SwissTable containers support heterogeneous lookup: 37 // For SwissTable containers this requirement is relaxed to allow a and b of 232 // type arguments in unordered Abseil containers.
|
| /third_party/skia/third_party/externals/dawn/src/common/ |
| D | StackContainer.h | 5 // This file is a modified copy of Chromium's /src/base/containers/stack_container.h 15 // This allocator can be used with STL containers to provide a stack buffer 29 // This makes it appropriate for array-like containers, but the caller should 40 // maintaining this for as long as any containers using this allocator are 67 // Used by containers when they want to refer to an allocator of type U. 126 // A wrapper around STL containers that maintains a stack-sized buffer that the 232 // We need to put this in STL containers sometimes, which requires a copy
|
| /third_party/libabigail/ |
| D | README-DOCKER.md | 8 These containers are built and deployed on merges to the main branch and releases. 12 Here is how to build the containers. Note that we build so it belongs to the same 50 We will also use the "production" containers to grab libraries in:
|
| /third_party/typescript/tests/baselines/reference/ |
| D | numericStringLiteralTypes.types | 67 declare function f<T extends Container<unknown>[]>(containers: [...T], callback: (...values: Unwrap… 68 >f : <T extends Container<unknown>[]>(containers: [...T], callback: (...values: UnwrapContainers<T>… 69 >containers : [...T] 87 >f : <T extends Container<unknown>[]>(containers: [...T], callback: (...values: UnwrapContainers<T>…
|
| /third_party/protobuf/python/google/protobuf/pyext/ |
| D | message.h | 45 // as if the data was effectively managed by these containers. 47 // ExtensionDicts and UnknownFields containers do NOT follow this rule. They 59 // For all other types: repeated containers, maps, it always point to a 71 // The Three methods below are only used by Repeated containers, and Maps. 73 // This implementation works for all containers which have a parent. 99 // through containers: repeated messages, and values of message maps. 100 // This avoid the creation of similar maps in each of those containers.
|
| /third_party/grpc/tools/run_tests/dockerize/ |
| D | docker_propagate_env.list | 9 # available inside the test docker containers. 20 # Propagate ccache configuration to the docker containers.
|
| /third_party/protobuf/python/docs/google/protobuf/internal/ |
| D | containers.rst | 15 google.protobuf.internal.containers 18 .. automodule:: google.protobuf.internal.containers
|
| /third_party/ltp/testcases/kernel/ |
| D | Makefile | 21 containers \ 54 FILTER_OUT_DIRS += containers controllers device-drivers fs io ipc mem \
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/engine/cache/ |
| D | storage_manager.cc | 56 // create multiple containers and store their index in a pool in DoServiceStart() 96 // Refresh how many containers there are. in Write() 114 // Remember how many containers we saw. In the next iteration we will do a comparison to see in Write() 179 os << "Dumping all containers ..." in operator <<()
|