Searched +full:implicit +full:- +full:dynamic (Results 1 – 25 of 525) sorted by relevance
12345678910>>...21
| /third_party/boost/tools/build/src/build/ |
| D | build-request.jam | 15 # Transform property-set by applying f to each component property. 17 local rule apply-to-property-set ( f property-set ) 19 local properties = [ feature.split $(property-set) ] ; 24 # Expand the given build request by combining all property-sets which do not 25 # specify conflicting non-free features. Expects all the project files to 28 rule expand-no-defaults ( property-sets * ) 31 local expanded-property-sets = [ sequence.transform apply-to-property-set 32 feature.expand-subfeatures : $(property-sets) ] ; 34 # Now combine all of the expanded property-sets 35 local product = [ x-product $(expanded-property-sets) : $(feature-space) ] ; [all …]
|
| D | build_request.py | 2 # TODO: need to re-compare with mainline of .jam 19 specify conflicting non-free features. 32 """ Return the cross-product of all elements of property_sets, less any 33 that would contain conflicting values for single-valued features. 40 """Returns non-conflicting combinations of property sets. 46 - list of lists of Property instances, such that within each list, no two Property instance 48 - set of features we saw in property_sets 96 """Returns true if 'v' is either implicit value, or 97 the part before the first '-' symbol is implicit value.""" 102 split = v.split("-") [all …]
|
| D | feature.jam | 20 .all-attributes = 21 implicit 30 link-incompatible 32 order-sensitive 36 .all-features = ; 37 .all-subfeatures = ; 38 .all-top-features = ; # non-subfeatures 39 .all-implicit-values = ; 47 rule prepare-test ( temp-module ) 49 DELETE_MODULE $(temp-module) ; [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/ |
| D | analysis_options.yaml | 7 strong-mode: 8 implicit-casts: true 9 implicit-dynamic: false 14 avoid_as: false # Disabled so we can gradually migrate to no implicit dynamic.
|
| /third_party/vk-gl-cts/doc/testspecs/GLES31/ |
| D | functional.shaders.arrays_of_arrays.txt | 1 ------------------------------------------------------------------------- 3 ----------------------------------------------- 11 http://www.apache.org/licenses/LICENSE-2.0 18 ------------------------------------------------------------------------- 22 + dEQP-GLES31.functional.shaders.arrays_of_arrays.* 23 + dEQP-GLES31.functional.ssbo.*arrays_of_arrays* 24 + dEQP-GLES31.functional.ssbo.*_level_array* 25 + dEQP-GLES31.functional.ubo.* 26 + dEQP-GLES31.functional.program_interface_query.* (selected cases) 27 + dEQP-GLES31.functional.shaders.functions.* [all …]
|
| D | functional.texture.gather.txt | 1 ------------------------------------------------------------------------- 3 ----------------------------------------------- 11 http://www.apache.org/licenses/LICENSE-2.0 18 ------------------------------------------------------------------------- 22 + dEQP-GLES31.functional.texture.gather.* 26 - Also dynamic-offset variant of textureGatherOffset 28 - 2D 29 - 2D array 30 - Cube map for offset-less variant only (not defined for others) 33 - LESS and GREATER comparison functions [all …]
|
| /third_party/ejdb/src/bindings/ejdb2_flutter/ |
| D | analysis_options.yaml | 4 strong-mode: 5 implicit-casts: false 6 implicit-dynamic: true 9 - always_declare_return_types 10 - always_put_required_named_parameters_first 11 - always_require_non_null_named_parameters 12 - annotate_overrides 13 - avoid_bool_literals_in_conditional_expressions 14 - avoid_catching_errors 15 - avoid_classes_with_only_static_members [all …]
|
| /third_party/ejdb/src/bindings/ejdb2_dart/ |
| D | analysis_options.yaml | 4 strong-mode: 5 implicit-casts: false 6 implicit-dynamic: true 9 - always_declare_return_types 10 - always_put_required_named_parameters_first 11 - always_require_non_null_named_parameters 12 - annotate_overrides 13 - avoid_bool_literals_in_conditional_expressions 14 - avoid_catching_errors 15 - avoid_classes_with_only_static_members [all …]
|
| /third_party/flutter/skia/third_party/externals/wuffs/doc/ |
| D | wuffs-the-language.md | 3 Wuffs is an imperative, C-like language and much of it should look familiar to 4 somebody versed in any one of C, C++, D, Go, Java, JavaScript, Objective-C, 8 Like Go, [semi-colons can be omitted](https://golang.org/ref/spec#Semicolons), 15 7 keywords introduce top-level concepts: 17 - `const` 18 - `error` 19 - `func` 20 - `packageid` 21 - `struct` 22 - `suspension` [all …]
|
| /third_party/boost/libs/outcome/doc/src/content/experimental/worked-example/ |
| D | _index.md | 16 documentation for proposed `<system_error2>` at https://ned14.github.io/status-code/ 18 [P1028 *SG14 status_code and standard error object for P0709 Zero-overhead 27 code will have an implicit conversion to type erased `error` defined, which dynamically 29 which manages that dynamic allocation, indirecting all queries etc
|
| /third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
| D | implicit_animations.dart | 2 // Use of this source code is governed by a BSD-style license that can be 168 /// The [begin] and [end] properties must be non-null before the tween is 186 beginTranslation * (1.0 - t) + endTranslation * t; 189 (beginRotation.scaled(1.0 - t) + endRotation.scaled(t)).normalized(); 190 final Vector3 lerpScale = beginScale * (1.0 - t) + endScale * t; 206 /// The [begin] and [end] properties must be non-null before the tween is 247 /// usually named `AnimatedFoo`, where `Foo` is the name of the non-animated 264 /// * [AnimatedCrossFade], which cross-fades between two given children and 329 /// A base class for the `State` of widgets with implicit animations. 340 /// The animation controller driving this widget's implicit animations. [all …]
|
| /third_party/quickjs/ |
| D | TODO | 2 - modules: better error handling with cyclic module references 5 - use custom printf to avoid compatibility issues with floating point numbers 6 - consistent naming for preprocessor defines 7 - unify coding style and naming conventions 8 - use names from the ECMA spec in library implementation 9 - use byte code emitters with typed arguments (for clarity) 10 - use 2 bytecode DynBufs in JSFunctionDef, one for reading, one for writing 12 - use more generic method for line numbers in resolve_variables and resolve_labels 13 - use custom timezone support to avoid C library compatibility issues 16 - use memory pools for objects, etc? [all …]
|
| /third_party/musl/libc-test/ |
| D | test_template.gni | 5 test_dir = "${musl_base_dir}/libc-test" 6 out_test_dir = "${root_out_dir}/obj/${musl_base_dir}/libc-test" 17 "${root_out_dir}/obj/${musl_base_dir}/usr/include/${musl_arch}-linux-ohos" 19 "${root_out_dir}/obj/${musl_base_dir}/usr/lib/${musl_arch}-linux-ohos" 21 test_lib_dir = "musl/libc-test-lib" 32 part_name = "libc-test" 50 "-pipe", 51 "-std=c99", 52 "-D_POSIX_C_SOURCE=200809L", 53 "-Wall", [all …]
|
| /third_party/flutter/flutter/packages/flutter_driver/lib/src/common/ |
| D | error.dart | 2 // Use of this source code is governed by a BSD-style license that can be 14 /// Human-readable error message. 18 final dynamic originalError; 21 final dynamic originalStackTrace; 56 /// Messages used to supplement the higher-level messages with more details. 113 /// This class is package-private. Flutter users should use other public logging 121 /// It is common for [name] to be used as an implicit subject of an action
|
| /third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
| D | index.ts | 1 import adjacentOverloadSignatures from './adjacent-overload-signatures'; 2 import arrayType from './array-type'; 3 import awaitThenable from './await-thenable'; 4 import banTsComment from './ban-ts-comment'; 5 import banTslintComment from './ban-tslint-comment'; 6 import banTypes from './ban-types'; 7 import braceStyle from './brace-style'; 8 import classLiteralPropertyStyle from './class-literal-property-style'; 9 import commaDangle from './comma-dangle'; 10 import commaSpacing from './comma-spacing'; [all …]
|
| /third_party/openssl/crypto/engine/ |
| D | eng_list.c | 2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 14 * The linked-list of pointers to engine types. engine_list_head incorporates 15 * an implicit structural reference but engine_list_tail does not - the 20 * structural reference. Hence, engine_list_head, and each non-null "next" 28 * The linked list of currently loaded dynamic engines. 65 conflict = (strcmp(iterator->id, e->id) == 0); in engine_list_add() 66 iterator = iterator->next; in engine_list_add() 79 e->prev = NULL; in engine_list_add() 86 if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) { in engine_list_add() 90 engine_list_tail->next = e; in engine_list_add() [all …]
|
| /third_party/ninja/doc/ |
| D | manual.asciidoc | 7 ------------ 18 non-recursive Makefiles) would take ten seconds to start building 24 Where other build systems are high-level languages, Ninja aims to be 28 in a edit-compile cycle you want it to be as fast as possible -- you 40 incremental builds stay fast. Going beyond autotools, even build-time 42 build a debug or release-mode binary?" belong in the `.ninja` file 54 higher-level build systems have different opinions about how code 63 difficult to get right with Makefiles (e.g. outputs need an implicit 65 source code you need to use gcc's `-M` flags for header 70 Some explicit _non-goals_: [all …]
|
| /third_party/boost/boost/config/compiler/ |
| D | xlcpp.hpp | 13 // Detecting `-fms-extension` compiler flag assuming that _MSC_VER defined when that flag is used. 60 // Dynamic shared object (DSO) and dynamic-link library (DLL) support 69 // The BOOST_FALLTHROUGH macro can be used to annotate implicit fall-through 73 # if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough") 234 // creating the Clang release (see https://github.com/boostorg/config/pull/39#issuecomment-59927873)
|
| D | clang.hpp | 13 // Detecting `-fms-extension` compiler flag assuming that _MSC_VER defined when that flag is used. 88 // Only re-enable this for nvcc if you're absolutely sure 107 // Dynamic shared object (DSO) and dynamic-link library (DLL) support 120 // The BOOST_FALLTHROUGH macro can be used to annotate implicit fall-through 124 # if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough") 290 // creating the Clang release (see https://github.com/boostorg/config/pull/39#issuecomment-59927873)
|
| /third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
| D | key.dart | 2 // Use of this source code is governed by a BSD-style license that can be 14 /// {@youtube 560 315 https://www.youtube.com/watch?v=kn0EOS-ZiIc} 31 /// constructor shadows the implicit constructor. 67 bool operator ==(dynamic other) { 81 // https://github.com/dart-lang/sdk/issues/33297
|
| /third_party/mbedtls/docs/architecture/testing/ |
| D | driver-interface-test-strategy.md | 13 The [unified driver interface](../../proposed/psa-driver-interface.md) supports both transparent dr… 17 #### Dynamic secure element driver interface 19 …dynamic secure element driver interface (SE interface for short) is defined by [`psa/crypto_se_dri… 31 This applies to dynamic drivers only. 45 …ver is called. This does not need to be done for all operations (use a white-box approach to deter… 56 * Check that the expected inputs reach the driver. This may be implicit in a test that checks the o… 96 #### Real-world use case 98 We must have at least one driver that is close to real-world conditions: 105 …ll be fulfilled by the [Microchip ATECC508A driver](https://github.com/ARMmbed/mbed-os-atecc608a/). 119 The [unified driver interface](../../proposed/psa-driver-interface.md) defines interfaces for accel…
|
| /third_party/mtdev/ |
| D | ChangeLog | 5 Release mtdev-1.1.6 7 Signed-off-by: Henrik Rydberg <rydberg@bitmath.se> 11 Date: Sat Nov 23 18:45:32 2019 -0800 20 Signed-off-by: Khem Raj <raj.khem@gmail.com> 21 Signed-off-by: Henrik Rydberg <rydberg@bitmath.se> 25 Date: Fri Jun 7 11:29:01 2019 -0700 37 Signed-off-by: Michael Forney <mforney@mforney.org> 38 Signed-off-by: Henrik Rydberg <rydberg@bitmath.se> 44 mtdev-matching.c: declare global variables static 48 Signed-off-by: Martin Kepplinger <martink@posteo.de> [all …]
|
| /third_party/flutter/engine/flutter/tools/licenses/ |
| D | analysis_options.yaml | 4 # See: https://github.com/dart-lang/linter/issues/288 6 # For a list of lints, see: http://dart-lang.github.io/linter/lints/ 8 # https://github.com/dart-lang/sdk/tree/master/pkg/analyzer#configuring-the-analyzer 13 # - analysis_options.yaml 14 # - tools/licenses/analysis_options.yaml (this file) 15 # - https://github.com/flutter/flutter/blob/master/analysis_options_user.yaml 16 # - https://github.com/flutter/flutter/blob/master/packages/flutter/lib/analysis_options_user.yaml 17 # - https://github.com/flutter/plugins/blob/master/analysis_options.yaml 23 strong-mode: 24 implicit-dynamic: false [all …]
|
| /third_party/flutter/engine/flutter/ |
| D | analysis_options.yaml | 4 # as of 2018-05-30, but with: 5 # - "always_require_non_null_named_parameters" disabled (because we 7 # - "sort_constructors_first" disabled (because we have private fake 9 # - "prefer_final_fields" disabled (because we do weird things with 13 strong-mode: 14 implicit-dynamic: false 23 # `flutter analyze` (without `--watch`) just ignores directories 31 # https://github.com/dart-lang/linter/blob/master/example/all.yaml 32 - always_declare_return_types 33 - always_put_control_body_on_new_line [all …]
|
| /third_party/boost/libs/outcome/doc/html/experimental/ |
| D | worked-example.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt… 2 <html><meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 3 <title>Worked example: Custom domain - Boost.Outcome documentation</title> 6 <meta name="viewport" content="width=device-width,initial-scale=1.0"/> 9 <body><div class="spirit-nav"> 12 …mages/home.png" alt="Home"></a><a accesskey="n" href="../experimental/worked-example/preamble.html… 27 …or2></code> at <a href="https://ned14.github.io/status-code/">https://ned14.github.io/status-co… 29 …ttp://wg21.link/P1028">P1028 <em>SG14 status_code and standard error object for P0709 Zero-overhead 33 <h3 id="goal-of-this-section">Goal of this section</h3> 38 code will have an implicit conversion to type erased <code>error</code> defined, which dynamically [all …]
|
12345678910>>...21