Home
last modified time | relevance | path

Searched refs:quantifier (Results 1 – 25 of 35) sorted by relevance

12

/external/shaderc/spirv-headers/tools/buildHeaders/
DjsonToSpirv.cpp98 …onality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument
100 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality()
103 if (quantifier.empty()) in ToOperandClassAndOptionality()
105 else if (quantifier == "?") in ToOperandClassAndOptionality()
110 if (quantifier.empty()) in ToOperandClassAndOptionality()
112 if (quantifier == "?") in ToOperandClassAndOptionality()
117 if (quantifier.empty()) in ToOperandClassAndOptionality()
119 else if (quantifier == "?") in ToOperandClassAndOptionality()
207 return {type, !quantifier.empty()}; in ToOperandClassAndOptionality()
316 const std::string quantifier = operand.get("quantifier", "").asString(); in jsonToSpirv() local
[all …]
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/
DjsonToSpirv.cpp110 …onality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument
112 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality()
115 if (quantifier.empty()) in ToOperandClassAndOptionality()
117 else if (quantifier == "?") in ToOperandClassAndOptionality()
122 if (quantifier.empty()) in ToOperandClassAndOptionality()
124 if (quantifier == "?") in ToOperandClassAndOptionality()
129 if (quantifier.empty()) in ToOperandClassAndOptionality()
131 else if (quantifier == "?") in ToOperandClassAndOptionality()
233 return {type, !quantifier.empty()}; in ToOperandClassAndOptionality()
353 const std::string quantifier = operand.get("quantifier", "").asString(); in jsonToSpirv() local
[all …]
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/
DjsonToSpirv.cpp110 …onality ToOperandClassAndOptionality(const std::string& operandKind, const std::string& quantifier) in ToOperandClassAndOptionality() argument
112 assert(quantifier.empty() || quantifier == "?" || quantifier == "*"); in ToOperandClassAndOptionality()
115 if (quantifier.empty()) in ToOperandClassAndOptionality()
117 else if (quantifier == "?") in ToOperandClassAndOptionality()
122 if (quantifier.empty()) in ToOperandClassAndOptionality()
124 if (quantifier == "?") in ToOperandClassAndOptionality()
129 if (quantifier.empty()) in ToOperandClassAndOptionality()
131 else if (quantifier == "?") in ToOperandClassAndOptionality()
233 return {type, !quantifier.empty()}; in ToOperandClassAndOptionality()
353 const std::string quantifier = operand.get("quantifier", "").asString(); in jsonToSpirv() local
[all …]
/external/angle/third_party/vulkan-deps/spirv-headers/src/tools/buildHeaders/
DjsonToSpirv.cpp114 …onality 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.empty()) in ToOperandClassAndOptionality()
135 else if (quantifier == "?") in ToOperandClassAndOptionality()
243 return {type, !quantifier.empty()}; in ToOperandClassAndOptionality()
378 const std::string quantifier = operand.get("quantifier", "").asString(); in jsonToSpirv() local
[all …]
/external/vulkan-headers/registry/
Dconventions.py53 def quantifier(self, n): member in ProseListFormats
157 quantifier = fmt.quantifier(len(my_elts))
159 parts = [quantifier, prose]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/registry/
Dconventions.py53 def quantifier(self, n): member in ProseListFormats
157 quantifier = fmt.quantifier(len(my_elts))
159 parts = [quantifier, prose]
/external/angle/src/common/spirv/
Dgen_spirv_builder_and_parser.py289 quantifier = operand.get('quantifier', '')
293 if quantifier == '*':
328 quantifier = operand.get('quantifier', '')
330 is_array = quantifier == '*'
331 is_optional = quantifier == '?'
/external/llvm-project/mlir/utils/spirv/
Dgen_spirv_dialect.py609 quantifier = operand.get('quantifier', '')
617 if quantifier == '':
619 elif quantifier == '?':
626 assert quantifier == '', ('unexpected to have optional/variadic memory '
630 if quantifier == '':
632 elif quantifier == '?':
646 assert quantifier != '*', 'unexpected to have variadic enum attribute'
648 if quantifier == '?':
/external/libxml2/result/regexp/
Dbug783015.err1 regexp error : failed to compile: Improper quantifier
/external/deqp-deps/SPIRV-Tools/tools/sva/src/
Dparser.js100 if (operand.quantifier === "?") {
104 } else if (operand.quantifier === "*") {
/external/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dparser.js100 if (operand.quantifier === "?") {
104 } else if (operand.quantifier === "*") {
/external/angle/third_party/vulkan-deps/spirv-tools/src/tools/sva/src/
Dparser.js100 if (operand.quantifier === "?") {
104 } else if (operand.quantifier === "*") {
/external/icu/icu4c/source/i18n/
Dregexcst.txt85 # trailing quantifier - *, +, ?, *?, etc.
107 # open-paren-quant Special case handling for comments appearing before a quantifier,
123 # determine what kind of quantifier it is - plain (, (?:, (?>, or whatever.
189 # quant-star Scanning a '*' quantifier. Need to look ahead to decide
199 # quant-plus Scanning a '+' quantifier. Need to look ahead to decide
209 # quant-opt Scanning a '?' quantifier. Need to look ahead to decide
/external/swiftshader/third_party/SPIRV-Tools/utils/
Dgenerate_grammar_tables.py161 kind, quantifier = operand_tuple
203 if quantifier == '?':
205 elif quantifier == '*':
/external/deqp-deps/SPIRV-Tools/utils/
Dgenerate_grammar_tables.py161 kind, quantifier = operand_tuple
203 if quantifier == '?':
205 elif quantifier == '*':
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/
Dgenerate_grammar_tables.py161 kind, quantifier = operand_tuple
203 if quantifier == '?':
205 elif quantifier == '*':
/external/libpcap/
Dgrammar.y.in785 /* ATM field types quantifier */
804 /* MTP2 types quantifier */
812 /* MTP3 field types quantifier */
/external/python/cpython3/Doc/library/
Dpyexpat.rst578 values: the type, the quantifier, the name, and a tuple of children. Children
583 groups: the model type group and the quantifier group.
622 The constants in the quantifier group are:
/external/python/cpython2/Doc/library/
Dpyexpat.rst601 values: the type, the quantifier, the name, and a tuple of children. Children
606 groups: the model type group and the quantifier group.
645 The constants in the quantifier group are:
/external/pcre/dist2/
DChangeLog255 8. Allow (*ACCEPT) to be quantified, because an ungreedy quantifier with a zero
291 12. The quantifier {1} was always being ignored, but this is incorrect when it
424 a greater than 1 fixed quantifier. This issue was found by Yunho Kim.
462 11. If a pattern started with a subroutine call that had a quantifier with a
752 quantifier is one or more. I can't see much use for a repeated anchored
1162 (a) \Q\E in the middle of a quantifier such as A+\Q\E+ is now ignored instead
1163 of giving an invalid quantifier error.
1716 10. The quantifier {1} can be ignored, whether greedy, non-greedy, or
2112 between a subroutine call and its quantifier was incorrectly compiled, leading
2120 13. A pattern such as /X((?2)()*+){2}+/ which has a possessive quantifier with
[all …]
/external/pcre/dist2/testdata/
Dtestoutput2129 Failed: error 104 at offset 5: numbers out of order in {} quantifier
132 Failed: error 105 at offset 7: number too big in {} quantifier
150 Failed: error 109 at offset 1: quantifier does not follow a repeatable item
233 Failed: error 109 at offset 4: quantifier does not follow a repeatable item
842 Failed: error 109 at offset 0: quantifier does not follow a repeatable item
845 Failed: error 109 at offset 1: quantifier does not follow a repeatable item
854 Failed: error 109 at offset 2: quantifier does not follow a repeatable item
878 Failed: error 109 at offset 0: quantifier does not follow a repeatable item
881 Failed: error 109 at offset 1: quantifier does not follow a repeatable item
890 Failed: error 109 at offset 2: quantifier does not follow a repeatable item
[all …]
Dgrepoutput103 pcre2grep: Error in command-line regex at offset 4: quantifier does not follow a repeatable item
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DUnicodeSetTest.java2525 …private void checkCodePoints(String a, String b, CountMethod quantifier, SpanCondition spanConditi… in checkCodePoints() argument
2531 callCountIn(m, ab, quantifier, spanCondition) in checkCodePoints()
2538 expectedReplaced, m.replaceFrom(ab, "-", quantifier)); in checkCodePoints()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetTest.java2522 …private void checkCodePoints(String a, String b, CountMethod quantifier, SpanCondition spanConditi… in checkCodePoints() argument
2528 callCountIn(m, ab, quantifier, spanCondition) in checkCodePoints()
2535 expectedReplaced, m.replaceFrom(ab, "-", quantifier)); in checkCodePoints()
/external/pcre/dist2/doc/
Dpcre2.txt1565 ing quantifier and between a quantifier and a following + that indi-
4882 any use. PCRE2 does not allow any kind of quantifier on non-lookaround
5626 the quantifier.
5700 a non-possessive quantifier. Similarly, if an atomic group is present,
6419 * 0 or more quantifier
6420 + 1 or more quantifier; also "possessive quantifier"
6421 ? 0 or 1 quantifier; also quantifier minimizer
6422 { start min/max quantifier
7859 The general repetition quantifier specifies a minimum and maximum num-
7869 are both omitted, the quantifier specifies an exact number of required
[all …]

12