/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/ |
H A D | jsonToSpirv.cpp | 112 // Converts the |operandKind| and |quantifier| pair used to describe operands 114 ClassOptionality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument 116 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality() 119 if (quantifier.empty()) in ToOperandClassAndOptionality() 121 else if (quantifier == "?") in ToOperandClassAndOptionality() 126 if (quantifier.empty()) in ToOperandClassAndOptionality() 128 if (quantifier == "?") in ToOperandClassAndOptionality() 133 if (quantifier in ToOperandClassAndOptionality() 378 const std::string quantifier = operand.get("quantifier", "").asString(); jsonToSpirv() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
H A D | jsonToSpirv.cpp | 112 // Converts the |operandKind| and |quantifier| pair used to describe operands 114 ClassOptionality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument 116 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality() 119 if (quantifier.empty()) in ToOperandClassAndOptionality() 121 else if (quantifier == "?") in ToOperandClassAndOptionality() 126 if (quantifier.empty()) in ToOperandClassAndOptionality() 128 if (quantifier == "?") in ToOperandClassAndOptionality() 133 if (quantifier in ToOperandClassAndOptionality() 378 const std::string quantifier = operand.get("quantifier", "").asString(); jsonToSpirv() local [all...] |
/third_party/spirv-headers/tools/buildHeaders/ |
H A D | jsonToSpirv.cpp | 296 // Converts the |operandKind| and |quantifier| pair used to describe operands 298 ClassOptionality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument 300 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality() 303 if (quantifier.empty()) in ToOperandClassAndOptionality() 305 else if (quantifier == "?") in ToOperandClassAndOptionality() 310 if (quantifier.empty()) in ToOperandClassAndOptionality() 312 if (quantifier == "?") in ToOperandClassAndOptionality() 317 if (quantifier in ToOperandClassAndOptionality() 584 const std::string quantifier = operand.get("quantifier", "").asString(); jsonToSpirv() local [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | conventions.py | 33 """A connective, possibly with a quantifier.""" 53 def quantifier(self, n): member in ProseListFormats 54 """Return the desired quantifier for a list of a given length.""" 90 Optionally adds a quantifier (like 'any') before a list of 2 or more, 139 Optionally adds a quantifier (like 'any') before a list of 2 or more, 157 quantifier = fmt.quantifier(len(my_elts)) 159 parts = [quantifier, prose]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | conventions.py | 43 """A connective, possibly with a quantifier.""" 63 def quantifier(self, n): member in ProseListFormats 64 """Return the desired quantifier for a list of a given length.""" 130 Optionally adds a quantifier (like 'any') before a list of 2 or more, 211 Optionally adds a quantifier (like 'any') before a list of 2 or more, 229 quantifier = fmt.quantifier(len(my_elts)) 231 parts = [quantifier, prose]
|
/third_party/vulkan-headers/registry/spec_tools/ |
H A D | conventions.py | 43 """A connective, possibly with a quantifier.""" 63 def quantifier(self, n): member in ProseListFormats 64 """Return the desired quantifier for a list of a given length.""" 130 Optionally adds a quantifier (like 'any') before a list of 2 or more, 211 Optionally adds a quantifier (like 'any') before a list of 2 or more, 229 quantifier = fmt.quantifier(len(my_elts)) 231 parts = [quantifier, prose]
|
/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
H A D | gen_spirv_builder_and_parser.py | 289 quantifier = operand.get('quantifier', '') 293 if quantifier == '*': 328 quantifier = operand.get('quantifier', '') 330 is_array = quantifier == '*' 331 is_optional = quantifier == '?' 492 assert (operand.get('quantifier') != '*' or len(cpp_in_parse_lines) == len(operands)) 502 'quantifier': '*' 515 'quantifier' [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 151 operand kind and quantifier used in the JSON grammar. 156 - quantifier: '', '?', or '*' 161 kind, quantifier = operand_tuple 203 if quantifier == '?': 205 elif quantifier == '*': 223 - operands: a sequence of (operand-kind, operand-quantifier) tuples 289 - operands: a sequence of (operand-kind, operand-quantifier) tuples 326 operands = [(o['kind'], o.get('quantifier', '')) for o in operands] 400 - parameters: a sequence of (operand-kind, operand-quantifier) tuples
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | generate_grammar_tables.py | 151 operand kind and quantifier used in the JSON grammar. 156 - quantifier: '', '?', or '*' 161 kind, quantifier = operand_tuple 203 if quantifier == '?': 205 elif quantifier == '*': 223 - operands: a sequence of (operand-kind, operand-quantifier) tuples 289 - operands: a sequence of (operand-kind, operand-quantifier) tuples 326 operands = [(o['kind'], o.get('quantifier', '')) for o in operands] 400 - parameters: a sequence of (operand-kind, operand-quantifier) tuples
|
/third_party/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 161 operand kind and quantifier used in the JSON grammar. 166 - quantifier: '', '?', or '*' 171 kind, quantifier = operand_tuple 213 if quantifier == '?': 215 elif quantifier == '*': 233 - operands: a sequence of (operand-kind, operand-quantifier) tuples 304 - operands: a sequence of (operand-kind, operand-quantifier) tuples 341 operands = [(o['kind'], o.get('quantifier', '')) for o in operands] 415 - parameters: a sequence of (operand-kind, operand-quantifier) tuples
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 2525 private void checkCodePoints(String a, String b, CountMethod quantifier, SpanCondition spanCondition, in checkCodePoints() argument 2531 callCountIn(m, ab, quantifier, spanCondition) in checkCodePoints() 2538 expectedReplaced, m.replaceFrom(ab, "-", quantifier)); in checkCodePoints()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 2528 private void checkCodePoints(String a, String b, CountMethod quantifier, SpanCondition spanCondition, in checkCodePoints() argument 2534 callCountIn(m, ab, quantifier, spanCondition) in checkCodePoints() 2541 expectedReplaced, m.replaceFrom(ab, "-", quantifier)); in checkCodePoints()
|