/third_party/icu/docs/processes/ |
D | rules_update.md | 1 <!-- 4 --> 6 Updating ICU's built-in Break Iterator rules 9 Here are instructions for updating ICU's built-in break iterator rules, for Grapheme, Word, Line an… 11 …rules implement the boundary behavior from Unicode [UAX-14](https://www.unicode.org/reports/tr14/)… 13 …process. Familiarity with ICU break iterator behavior and rules is needed. Sets of break rules oft… 20 As an example, see [CLDR proposal for Extended Indic Grapheme Clusters](https://github.com/unicode-… 28 |-------------------------------------|-------------------------- 31 | .../data/brkitr/rules/*.txt | Main break rule files. 32 | .../test/intltest/rbbitst.cpp | Monkey Test Rules (as code; also called the 'original' or '… [all …]
|
/third_party/mesa3d/.gitlab-ci/ |
D | test-source-dep.yml | 5 .scheduled_pipeline-rules: 6 rules: 7 - if: &is-scheduled-pipeline '$CI_PIPELINE_SOURCE == "schedule"' 12 .no_scheduled_pipelines-rules: 13 rules: 14 - if: *is-scheduled-pipeline 17 # Mesa core source file dependencies that may impact any test job 18 # --------------------------------------------------------------- 19 .core-rules: 20 rules: [all …]
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
D | generate_vim_syntax.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 """Generates Vim syntax rules for SPIR-V assembly (.spvasm) files""" 21 " Generated by SPIRV-Tools 40 syn match spvasmNumber /-\?\<\d\+\>/ 48 syn match spvasmFloat /-\?\d\+\.\?\(e[+-]\d\+\)\?/ 50 syn match spvasmFloat /-\?\d*\.\d\+\(e[+-]\d\+\)\?/ 53 syn match spvasmFloat /-\?0[xX]\\x\+\.\?p[-+]\d\+/ 55 syn match spvasmFloat /-\?0[xX]\\x*\.\\x\+p[-+]\d\+/ 59 syn match spvasmId /%[a-zA-Z_][a-zA-Z_0-9]*/ 62 syn match spvasmError /[a-zA-Z][a-zA-Z_0-9]*/ [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
D | generate_vim_syntax.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 """Generates Vim syntax rules for SPIR-V assembly (.spvasm) files""" 21 " Generated by SPIRV-Tools 40 syn match spvasmNumber /-\?\<\d\+\>/ 48 syn match spvasmFloat /-\?\d\+\.\?\(e[+-]\d\+\)\?/ 50 syn match spvasmFloat /-\?\d*\.\d\+\(e[+-]\d\+\)\?/ 53 syn match spvasmFloat /-\?0[xX]\\x\+\.\?p[-+]\d\+/ 55 syn match spvasmFloat /-\?0[xX]\\x*\.\\x\+p[-+]\d\+/ 59 syn match spvasmId /%[a-zA-Z_][a-zA-Z_0-9]*/ 62 syn match spvasmError /[a-zA-Z][a-zA-Z_0-9]*/ [all …]
|
/third_party/spirv-tools/utils/ |
D | generate_vim_syntax.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 """Generates Vim syntax rules for SPIR-V assembly (.spvasm) files""" 21 " Generated by SPIRV-Tools 40 syn match spvasmNumber /-\?\<\d\+\>/ 48 syn match spvasmFloat /-\?\d\+\.\?\(e[+-]\d\+\)\?/ 50 syn match spvasmFloat /-\?\d*\.\d\+\(e[+-]\d\+\)\?/ 53 syn match spvasmFloat /-\?0[xX]\\x\+\.\?p[-+]\d\+/ 55 syn match spvasmFloat /-\?0[xX]\\x*\.\\x\+p[-+]\d\+/ 59 syn match spvasmId /%[a-zA-Z_][a-zA-Z_0-9]*/ 62 syn match spvasmError /[a-zA-Z][a-zA-Z_0-9]*/ [all …]
|
/third_party/skia/third_party/externals/opengl-registry/docs/ |
D | GLSLExtensionRules.txt | 16 Bill Licea-Kane, ATI 27 Section #1: Conventions to avoid name-space collision 31 revisions to the core language specification itself. As a result, 32 we'd like to establish some name conventions to avoid name-space 33 collisions between vendors and between the extensions and the core 37 naming and syntax rules document for the non-shader parts of 40 http://www.opengl.org/registry/doc/rules.html#spec_naming 44 extensions are promoted, in the same fashion as for core GL 57 - New syntax defined by an extension should be suffixed with a 60 being "C-like" make it unpalatble. [all …]
|
/third_party/openGLES/docs/ |
D | GLSLExtensionRules.txt | 16 Bill Licea-Kane, ATI 27 Section #1: Conventions to avoid name-space collision 31 revisions to the core language specification itself. As a result, 32 we'd like to establish some name conventions to avoid name-space 33 collisions between vendors and between the extensions and the core 37 naming and syntax rules document for the non-shader parts of 40 http://www.opengl.org/registry/doc/rules.html#spec_naming 44 extensions are promoted, in the same fashion as for core GL 57 - New syntax defined by an extension should be suffixed with a 60 being "C-like" make it unpalatble. [all …]
|
/third_party/python/Tools/peg_generator/pegen/ |
D | grammar.py | 28 def visit(self, node: Any, *args: Any, **kwargs: Any) -> Any: 34 def generic_visit(self, node: Iterable[Any], *args: Any, **kwargs: Any) -> None: 45 def __init__(self, rules: Iterable[Rule], metas: Iterable[Tuple[str, Optional[str]]]): 46 self.rules = {rule.name: rule for rule in rules} 49 def __str__(self) -> str: 50 return "\n".join(str(rule) for name, rule in self.rules.items()) 52 def __repr__(self) -> str: 55 for rule in self.rules.values(): 62 def __iter__(self) -> Iterator[Rule]: 63 yield from self.rules.values() [all …]
|
/third_party/pulseaudio/src/modules/ |
D | module-match.c | 4 Copyright 2004-2006 Lennart Poettering 39 #include <pulsecore/core-error.h> 41 #include <pulsecore/core-util.h> 44 #include <pulsecore/sink-input.h> 45 #include <pulsecore/core-util.h> 77 struct rule *rules; member 85 int ret = -1; in load_rules() 111 pa_update_mode_t mode = (pa_update_mode_t) -1; in load_rules() 128 pa_log("[%s:%u] failed to parse line - missing regexp", fn, n); in load_rules() 133 pa_log("[%s:%u] failed to parse line - too few words", fn, n); in load_rules() [all …]
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_ES2_compatibility.txt | 22 Copyright (c) 2010-2013 The Khronos Group Inc. Copyright terms at 27 Khronos-approved extension specifications are updated in response to 29 extensions which have been promoted to a core Specification, fixes will 30 first appear in the latest version of that core Specification, and will 113 Add a new Section 2.1.5 (Fixed-Point Computation) and renumber later 116 Fixed-Point Computation 118 Vertex attributes may be specified using a 32-bit two's-complement signed 127 ----------------------------------- 144 attribute array contains fixed-point data, the generic vertex 145 attribute values are specified using a fixed-point signed 2's [all …]
|
D | ARB_arrays_of_arrays.txt | 19 Copyright (c) 2012-2013 The Khronos Group Inc. Copyright terms at 24 Khronos-approved extension specifications are updated in response to 26 extensions which have been promoted to a core Specification, fixes will 27 first appear in the latest version of that core Specification, and will 50 OpenGL ?? (Core Profile) specification is required. (See issues.) 54 Multi-dimensional arrays are a frequently requested feature. This extension 62 - They will first class objects. (They know their size, can be passed by 63 copy-in semantics to functions, etc.) 65 - They will only be one-dimensional arrays of other first class objects. 68 - The syntax [all …]
|
D | ARB_seamless_cube_map.txt | 11 Bill Licea-Kane, AMD 25 Copyright (c) 2009-2013 The Khronos Group Inc. Copyright terms at 30 Khronos-approved extension specifications are updated in response to 32 extensions which have been promoted to a core Specification, fixes will 33 first appear in the latest version of that core Specification, and will 63 When sampling from cube map textures, a three-dimensional texture 67 of the texture is treated as an independent two-dimensional texture, 69 clamping and wrapping rules as for any other two dimensional texture 77 wrapping rules. This often has the effect of producing seams or 106 face's two-dimensional texture image using the rules given in [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_ES2_compatibility.txt | 22 Copyright (c) 2010-2013 The Khronos Group Inc. Copyright terms at 103 Add a new Section 2.1.5 (Fixed-Point Computation) and renumber later 106 Fixed-Point Computation 108 Vertex attributes may be specified using a 32-bit two's-complement signed 117 ----------------------------------- 134 attribute array contains fixed-point data, the generic vertex 135 attribute values are specified using a fixed-point signed 2's 165 object and then compiled. Alternatively, pre-compiled shader binary code 203 shader). <binary> points to <length> bytes of pre-compiled binary 205 of the pre-compiled code. [all …]
|
D | ARB_arrays_of_arrays.txt | 19 Copyright (c) 2012-2013 The Khronos Group Inc. Copyright terms at 40 OpenGL ?? (Core Profile) specification is required. (See issues.) 44 Multi-dimensional arrays are a frequently requested feature. This extension 52 - They will first class objects. (They know their size, can be passed by 53 copy-in semantics to functions, etc.) 55 - They will only be one-dimensional arrays of other first class objects. 58 - The syntax 62 Declares a one-dimensional array of size 3 of one-dimensional arrays of 87 - This type could be declared as a formal parameter in a function prototype as 91 - Accessing is done as [all …]
|
/third_party/skia/src/utils/win/ |
D | SkWGL.h | 4 * Use of this source code is governed by a BSD-style license that can be 8 #include "include/core/SkRefCnt.h" 13 #include "src/core/SkLeanWindows.h" 80 * WGL doesn't have precise rules for the ordering of formats returned 82 * formats returned by wglChoosePixelFormat. The rules in decreasing 90 * * If the above rules leave multiple formats, choose the one that 122 /** Requests to create core profile context if possible, otherwise 126 core profile. */ 134 * (including non-MSAA) will be created. If msaaSampleCount is 1 then this will fail if a non-msaa 135 * context cannot be created. If preferCoreProfile is true but a core profile cannot be created
|
/third_party/openGLES/extensions/NV/ |
D | NV_conservative_raster.txt | 34 (Compatibility Profile) but may be used with the Core profile or 37 When this extension is used with the Core profile or an OpenGL ES 50 These controls can be used to implement "binning" to a low-resolution 56 the same pixels in the low-res framebuffer as they do tiles in the sparse 78 (Fixed-Function Vertex Post-Processing) 85 to fixed-point values with <N> fractional bits. If CONSERVATIVE_- 87 implementation-dependent value of SUBPIXEL_BITS. If CONSERVATIVE_- 89 SUBPIXEL_BITS and programmable values of SUBPIXEL_PRECISION_BIAS_{X,Y}- 94 When these values are non-zero, the invariance requirement of section 14.2 96 window coordinates. The initial values of SUBPIXEL_PRECISION_BIAS_{X,Y}- [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_conservative_raster.txt | 34 (Compatibility Profile) but may be used with the Core profile or 37 When this extension is used with the Core profile or an OpenGL ES 50 These controls can be used to implement "binning" to a low-resolution 56 the same pixels in the low-res framebuffer as they do tiles in the sparse 78 (Fixed-Function Vertex Post-Processing) 85 to fixed-point values with <N> fractional bits. If CONSERVATIVE_- 87 implementation-dependent value of SUBPIXEL_BITS. If CONSERVATIVE_- 89 SUBPIXEL_BITS and programmable values of SUBPIXEL_PRECISION_BIAS_{X,Y}- 94 When these values are non-zero, the invariance requirement of section 14.2 96 window coordinates. The initial values of SUBPIXEL_PRECISION_BIAS_{X,Y}- [all …]
|
/third_party/python/ |
D | .gitignore | 2 # First, rules intended to apply in all subdirectories. 44 # Ignore core dumps... but not Tools/msi/core/ or the like. 45 core 46 !core/ 50 # Then, rules meant for a specific location relative to the repo root. 51 # These must contain a non-trailing slash (and may also have a trailing slash.) 61 Lib/site-packages/* 62 !Lib/site-packages/README.txt 78 Misc/python-embed.pc 79 Misc/python-config.sh [all …]
|
/third_party/icu/icu4c/source/test/testdata/break_rules/ |
D | README.md | 1 <!-- 5 Copyright (c) 2015-2016, International Business Machines Corporation and others. All Rights Reserve… 6 --> 11 The rules in this directory track the boundary rules from Unicode UAX 14 and 29. They are interpret… 14 ICU4J also includes copies of the test reference rules, located in the directory 15 main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/ 18 Each set of reference break rules lives in a separate file. 22 - The type of ICU break iterator to create (word, line, sentence, etc.) 23 - The locale to use 24 - Character Class definitions [all …]
|
/third_party/node/ |
D | .gitignore | 1 # Please take extra care not to add rules that will make tracked files ignored. 2 # To test that, run `git ls-files -i --exclude-standard`. 3 # To check why a specific file is ignored, run `git check-ignore -v <filepath>`. 11 !.clang-format 25 # === Rules for root dir === 26 /core 35 /gon-config.json 40 # === Rules for artifacts of `./configure` === 46 # === Rules for MSVS artifacts === 64 # === Rules for GYP artifacts === [all …]
|
/third_party/spirv-tools/source/opt/ |
D | folding_rules.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 27 // Folding Rules: 34 // |inst| - the instruction to be simplified. 35 // |constants| - if an in-operands is an id of a constant, then the 49 // Be sure to add new folding rules to the table of folding rules in the 51 // every opcode that it applies to. Note that earlier rules in the list are 53 // the later rules will not be attempted. 67 if (inst->opcode() != SpvOpExtInst) { in GetRulesForInstruction() 68 auto it = rules_.find(inst->opcode()); in GetRulesForInstruction() 70 return it->second; in GetRulesForInstruction() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | folding_rules.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 27 // Folding Rules: 34 // |inst| - the instruction to be simplified. 35 // |constants| - if an in-operands is an id of a constant, then the 49 // Be sure to add new folding rules to the table of folding rules in the 51 // every opcode that it applies to. Note that earlier rules in the list are 53 // the later rules will not be attempted. 67 if (inst->opcode() != SpvOpExtInst) { in GetRulesForInstruction() 68 auto it = rules_.find(inst->opcode()); in GetRulesForInstruction() 70 return it->second; in GetRulesForInstruction() [all …]
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | folding_rules.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 27 // Folding Rules: 34 // |inst| - the instruction to be simplified. 35 // |constants| - if an in-operands is an id of a constant, then the 49 // Be sure to add new folding rules to the table of folding rules in the 51 // every opcode that it applies to. Note that earlier rules in the list are 53 // the later rules will not be attempted. 67 if (inst->opcode() != SpvOpExtInst) { in GetRulesForInstruction() 68 auto it = rules_.find(inst->opcode()); in GetRulesForInstruction() 70 return it->second; in GetRulesForInstruction() [all …]
|
/third_party/node/test/wpt/ |
D | .eslintrc.yaml | 1 rules: 2 node-core/required-modules: off 3 node-core/require-common-first: off
|
/third_party/node/test/common/ |
D | .eslintrc.yaml | 1 rules: 2 node-core/required-modules: off 3 node-core/require-common-first: off
|