Home
last modified time | relevance | path

Searched +full:initializer +full:- +full:overrides (Results 1 – 25 of 79) sorted by relevance

1234

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dangle_format.py3 # Use of this source code is governed by a BSD-style license that can be
54 overrides = load_json(override_path)
56 for k, v in sorted(overrides.items()):
142 channels_pattern = re.compile('GL_(COMPRESSED_)?(SIGNED_)?(ETC\d_)?([A-Z]+)')
209 'warning: internal format initializer could not be generated and may be needed for ' +
/third_party/openGLES/extensions/ARB/
DARB_shading_language_420pack.txt22 Bill Licea-Kane, AMD
31 Copyright (c) 2011-2013 The Khronos Group Inc. Copyright terms at
36 Khronos-approved extension specifications are updated in response to
47 Approved by the ARB 25-Jul-2011.
52 Last Modified Date: 11-Sep-2014
71 While this document is self-contained, clarifying context for how to
80 * Add line-continuation using '\', as in C++.
82 * Change from ASCII to UTF-8 for the language character set and also
89 body with initializer expressions that are not constant expressions.
106 * Add C-style curly brace initializer lists syntax for initializers.
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_shading_language_420pack.txt22 Bill Licea-Kane, AMD
31 Copyright (c) 2011-2013 The Khronos Group Inc. Copyright terms at
37 Approved by the ARB 25-Jul-2011.
42 Last Modified Date: 11-Sep-2014
61 While this document is self-contained, clarifying context for how to
70 * Add line-continuation using '\', as in C++.
72 * Change from ASCII to UTF-8 for the language character set and also
79 body with initializer expressions that are not constant expressions.
96 * Add C-style curly brace initializer lists syntax for initializers.
104 * Built-in constants for gl_MinProgramTexelOffset and
[all …]
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .container+build-rules
7 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner
12 # A few exception are made, see overrides in the rest of this file.
22 - _build/meson-logs/*.txt
23 - _build/meson-logs/strace
24 - _build/.ninja_log
25 - artifacts
28 .build-linux:
29 extends: .build-common
[all …]
/third_party/vk-gl-cts/external/amber/src/docs/
Damber_script.md21 user-specified (such as for buffer data).
82 * `fence_timeout_ms` - value must be a single uint32 in milliseconds.
98 {file-content}
114 Pass-through shader:
158 The provided `multi` shader can only be used with `SPIRV-ASM` and `SPIRV-HEX`
162 Note, `SPIRV-ASM` and `SPIRV-HEX` can also be used with each of the other shader
168 * `SPIRV-ASM` (with spirv-as; specifying `TARGET_ENV` is _highly recommended_
170 * `SPIRV-HEX` (decoded straight to SPIR-V)
171 * `OPENCL-C` (with clspv)
176 SPIR-V environment. For example:
[all …]
/third_party/typescript/src/services/codefixes/
DinferFromUsage.ts267 if (declaration && !declaration.type && !declaration.initializer) {
368 if (param.initializer || getJSDocType(param) || !isIdentifier(param.name)) {
408 …return mapDefined(FindAllReferences.getReferenceEntriesForNode(-1, token, program, program.getSour…
658 const { name, initializer } = node.parent as VariableDeclaration; constant
660 … if (initializer) { // This can happen for `let x = null;` which still has an implicit-any error.
661 addCandidateType(usage, checker.getTypeAtLocation(initializer));
900 // 2. non-any, non-void overrides any or void
901 // 3. non-nullable, non-any, non-void, non-anonymous overrides anonymous types
/third_party/typescript/src/compiler/
DdiagnosticMessages.json46 "Parameter cannot have question mark and initializer.": {
66 "An index signature parameter cannot have an initializer.": {
134 …"Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.": {
142 "A rest parameter cannot have an initializer.": {
154 "A 'set' accessor parameter cannot have an initializer.": {
166 …async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructo…
186 "Enum member must have initializer.": {
202 "In ambient enum declarations member initializer must be constant expression.": {
302 "The left-hand side of a 'for...of' statement may not be 'async'.": {
450 "Cannot use imports, exports, or module augmentations when '--module' is 'none'.": {
[all …]
Dtypes.ts36 // allows us to edit files with git-conflict markers in them in a much more pleasant manner.
46 // Pseudo-literals
378 // Top-level nodes
395 JSDocNamepathType, // https://jsdoc.app/about-namepaths.html
774 OptionalChain = 1 << 5, // Chained MemberExpression rooted to a pseudo-OptionalExpression
781 …DisallowInContext = 1 << 12, // If node was parsed in a context where 'in-expressions' are not al…
804 … = 1 << 24, // If node was inside an ambient context -- a declaration file, …
810 /** @internal */ KitImportFlags = 1 << 29, // If node was in a converted kit-import statement
826 // never cleared on SourceFiles which get re-used in between incremental parses.
932 // but are constructed as if they could for faked-up `QualifiedName`s in the language service.)
[all …]
Dchecker.ts1164 All = (1 << 27) - 1,
1382 /* eslint-disable no-var */
1490 // Used only for linter, in non-strict typeChecker, it is always empty.
1525 ….fail("Cannot get symbols of a synthetic parameter that cannot be resolved to a parse-tree node.");
2104 // This allows users to just specify library files they want to used through --lib
2207 /* eslint-enable no-var */
2294 setTextRangePosEnd(node, -1, -1);
2346 // Pseudo-synthesized input node
2353 …reateDiagnosticForFileFromMessageChain(file, message)); // eslint-disable-line local/no-in-operator
2356 …eDiagnosticForNodeFromMessageChain(location, message)); // eslint-disable-line local/no-in-operator
[all …]
Dparser.ts444 …Constructor || (SourceFileConstructor = objectAllocator.getSourceFileConstructor()))(kind, -1, -1),
445 …Constructor || (IdentifierConstructor = objectAllocator.getIdentifierConstructor()))(kind, -1, -1),
446 … (PrivateIdentifierConstructor = objectAllocator.getPrivateIdentifierConstructor()))(kind, -1, -1),
447 …new (TokenConstructor || (TokenConstructor = objectAllocator.getTokenConstructor()))(kind, -1, -1),
448 …=> new (NodeConstructor || (NodeConstructor = objectAllocator.getNodeConstructor()))(kind, -1, -1),
481 // Try to use the first top-level import/export when available, then
546 visitNode(cbNode, node.initializer);
554 visitNode(cbNode, node.initializer);
560 visitNode(cbNode, node.initializer);
567 visitNode(cbNode, node.initializer);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCSubtarget.h1 //===-- PPCSubtarget.h - Define Subtarget for the PPC ----------*- C++ -*--===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
36 // -m directive values.
77 /// TargetTriple - What processor and OS we're targeting.
80 /// stackAlignment - The minimum alignment known to hold of the stack frame on
90 /// Used by the ISel to turn in optimizations for POWER4-derived architectures
147 /// alignment has not been changed, we need to keep the 16-byte alignment
164 /// ParseSubtargetFeatures - Parses features string setting specified
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
D_features.hpp10 // Rvalue references - GCC 4.3
11 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html
14 // Rvalue references for *this - GCC not supported
15 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm
18 // Initialization of class objects by rvalues - GCC any
19 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1610.html
22 // Non-static data member initializers - GCC 4.7
23 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2756.htm
26 // Variadic templates - GCC 4.3
27 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf
[all …]
/third_party/glslang/glslang/MachineIndependent/
DParseHelper.cpp2 // Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
3 // Copyright (C) 2012-2015 LunarG, Inc.
4 // Copyright (C) 2015-2018 Google, Inc.
100 if (entryPoint != nullptr && entryPoint->size() > 0 && *entryPoint != "main") in TParseContext()
138 // If we are parsing built-in computational variables/functions, it is meaningful to record in setPrecisionDefaults()
139 // whether the built-in has no precision qualifier, as that ambiguity in setPrecisionDefaults()
141 // So, we don't actually want to replace EpqNone with a default precision for built-ins. in setPrecisionDefaults()
153 // Non-ES profile in setPrecisionDefaults()
210 if (! getScanner()->atEndOfInput() || numErrors == 0) in parserError()
231 TQualifier& qualifier = globalUniformBlock->getWritableType().getQualifier(); in growGlobalUniformBlock()
[all …]
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp2 // Copyright (C) 2017-2018 Google, Inc.
150 // Return true if this l-value node should be converted in some manner.
151 // For instance: turning a load aggregate into a store in an l-value.
155 if (node == nullptr || node->getAsTyped() == nullptr) in shouldConvertLValue()
158 const TIntermAggregate* lhsAsAggregate = node->getAsAggregate(); in shouldConvertLValue()
159 const TIntermBinary* lhsAsBinary = node->getAsBinaryNode(); in shouldConvertLValue()
163 (lhsAsBinary->getOp() == EOpVectorSwizzle || lhsAsBinary->getOp() == EOpIndexDirect)) in shouldConvertLValue()
164 lhsAsAggregate = lhsAsBinary->getLeft()->getAsAggregate(); in shouldConvertLValue()
165 if (lhsAsAggregate != nullptr && lhsAsAggregate->getOp() == EOpImageLoad) in shouldConvertLValue()
178 if (it != ioTypeMap.end() && it->second.uniform) in growGlobalUniformBlock()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMSubtarget.cpp1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
43 #define DEBUG_TYPE "arm-subtarget"
50 UseFusedMulOps("arm-use-mulops",
62 cl::values(clEnumValN(DefaultIT, "arm-default-it",
64 clEnumValN(RestrictedIT, "arm-restrict-it",
66 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
69 /// ForceFastISel - Use the fast-isel, even for subtargets where it is not
[all …]
/third_party/protobuf/third_party/abseil-cpp/absl/log/internal/
Dlog_message.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
24 // Heap-allocation of `LogMessage` is unsupported. Construction outside of a
79 // Overrides the location inferred from the callsite. The string pointed to
112 // By-value overloads for small, common types let us overlook common failures
115 // NOLINTBEGIN(google-runtime-int)
116 // clang-format off: The CUDA toolchain cannot handle these <<<'s
153 // clang-format on
154 // NOLINTEND(google-runtime-int)
[all …]
/third_party/typescript/doc/
Dspec-ARCHIVED.md9 …webfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0](http://www.openwebfoundation.org/legal/th…
61 * [3.6.3 This-types](#3.6.3)
74 * [3.8.11 This-Type References](#3.8.11)
116 * [4.18.1 The ++ and -- operators](#4.18.1)
145 * [5.6 For-In Statements](#5.6)
146 * [5.7 For-Of Statements](#5.7)
242-mail, maps, document editing, and collaboration tools are becoming an increasingly important part…
244-local transformations on TypeScript programs and does not re-order variables declared in TypeScri…
248 Classes enable programmers to express common object-oriented patterns in a standard way, making fea…
300 …ncludes a file 'lib.d.ts' that provides interface declarations for the built-in JavaScript library…
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DTimeZone.java7 * Copyright (C) 1996-2016, International Business Machines
65 * GMT[+|-]hh[[:]mm]
79 * <p>For compatibility with JDK 1.1.x, some other three-letter time zone IDs
115 * @author Mark Davis, Deborah Goldsmith, Chen-Lieh Huang, Alan Liu
124 private static final long serialVersionUID = -744942128318337471L;
137 * @hide deprecated on icu4j-org
191 * a short name derived from the timezone's offset, such as "-0800."
198 * a long name derived from the timezone's offset, such as "GMT-08:00."
272 * Month is 0-based. e.g., 0 for January.
273 * @param day the day-in-month of the given date.
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DTimeZone.java6 * Copyright (C) 1996-2016, International Business Machines
64 * GMT[+|-]hh[[:]mm]
78 * <p>For compatibility with JDK 1.1.x, some other three-letter time zone IDs
114 * @author Mark Davis, Deborah Goldsmith, Chen-Lieh Huang, Alan Liu
124 private static final long serialVersionUID = -744942128318337471L;
197 * a short name derived from the timezone's offset, such as "-0800."
205 * a long name derived from the timezone's offset, such as "GMT-08:00."
293 * Month is 0-based. e.g., 0 for January.
294 * @param day the day-in-month of the given date.
295 * @param dayOfWeek the day-of-week of the given date.
[all …]
/third_party/gn/src/gn/
Dfunctions.cc2 // Use of this source code is governed by a BSD-style license that can be
49 err->AppendRange(function->function().range()); in VerifyNoBlockForFunctionCall()
69 val_scope->GetProperty(&kInDeclareArgsKey, &val_args_scope); in EnsureNotReadingFromSameDeclareArgs()
72 cur_scope->GetProperty(&kInDeclareArgsKey, &cur_args_scope); in EnsureNotReadingFromSameDeclareArgs()
88 if (scope->IsProcessingImport()) { in EnsureNotProcessingImport()
102 if (scope->IsProcessingBuildConfig()) { in EnsureNotProcessingBuildConfig()
125 const Scope* default_scope = scope->GetTargetDefaults(target_type); in FillTargetBlockScope()
129 if (!default_scope->NonRecursiveMergeTo(block_scope, merge_options, in FillTargetBlockScope()
141 block_scope->SetValue(target_name, Value(function, args[0].string_value()), in FillTargetBlockScope()
143 block_scope->MarkUsed(target_name); in FillTargetBlockScope()
[all …]
/third_party/typescript/lib/
DtypingsInstaller.js5 License at http://www.apache.org/licenses/LICENSE-2.0
10 MERCHANTABLITY OR NON-INFRINGEMENT.
128 return -1;
134 return -1;
152 return -1;
411 return array === void 0 || array.length === 0 ? void 0 : array[array.length - 1];
415 return array[array.length - 1];
425 return -1;
428 let high = array.length - 1;
430 const middle = low + (high - low >> 1);
[all …]
Dtsc.js5 License at http://www.apache.org/licenses/LICENSE-2.0
10 MERCHANTABLITY OR NON-INFRINGEMENT.
28 Comparison2[Comparison2["LessThan"] = -1] = "LessThan";
89 for (let i = array.length - 1; i >= 0; i--) {
148 return { value: [arrayA[i - 1], arrayB[i - 1]], done: false };
196 for (let i = startIndex != null ? startIndex : array.length - 1; i >= 0; i--) {
206 return -1;
212 return -1;
216 return -1;
217 for (let i = startIndex != null ? startIndex : array.length - 1; i >= 0; i--) {
[all …]
/third_party/python/Doc/library/
Dmultiprocessing.rst1 :mod:`multiprocessing` --- Process-based parallelism
5 :synopsis: Process-based parallelism.
9 --------------
11 .. include:: ../includes/wasm-notavail.rst
14 ------------
18 offers both local and remote concurrency, effectively side-stepping the
98 necessary, see :ref:`multiprocessing-programming`.
105 .. _multiprocessing-start-methods:
248 pipe which by default is duplex (two-way). For example::
318 a[i] = -a[i]
[all …]
/third_party/python/Lib/
Dconfigparser.py12 ConfigParser -- responsible for parsing a list of
39 substrings that prefix comments in non-empty lines.
60 pre-processing when using getters. RawConfigParser objects don't do
85 name. A single filename is also allowed. Non-existing files
108 contents override any pre-existing defaults. If `option` is a key in
256 """Base class for interpolation-related exceptions."""
342 """Raised when a key-value pair is found before any section header."""
542 depth -= 1
722 """Like read() but the argument must be a file-like object.
853 `vars` argument, which must be a dictionary whose contents overrides
[all …]
/third_party/ncurses/
DINSTALL1 -------------------------------------------------------------------------------
2 -- Copyright 2018-2023,2024 Thomas E. Dickey --
3 -- Copyright 1998-2017,2018 Free Software Foundation, Inc. --
4 -- --
5 -- Permission is hereby granted, free of charge, to any person obtaining a --
6 -- copy of this software and associated documentation files (the --
7 -- "Software"), to deal in the Software without restriction, including --
8 -- without limitation the rights to use, copy, modify, merge, publish, --
9 -- distribute, distribute with modifications, sublicense, and/or sell copies --
10 -- of the Software, and to permit persons to whom the Software is furnished --
[all …]

1234