Home
last modified time | relevance | path

Searched refs:pattern (Results 1 - 25 of 1423) sorted by relevance

12345678910>>...57

/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/
H A DFromJsonTest.java24 .pattern("{hello}")
28 .pattern("{hello {(world)}}")
32 .pattern("{hello {()}}")
36 .pattern("{hello {$place}}")
41 .pattern("{hello {$place}}")
46 .pattern("{{$one} and {$two}}")
51 .pattern("{{$one} et {$two}}")
57 .pattern("{hello {(4.2) :number}}")
62 .pattern("{hello {(4.2) :number}}")
66 .pattern("{hell
[all...]
H A DMf2FeaturesTest.java37 .pattern("{}") in testEmptyMessage()
46 .pattern("{Hello World!}") in testPlainText()
55 .pattern("{Hello, {$userName}!}") in testPlaceholders()
68 .pattern(message) in testArgumentMissing()
73 .pattern(message) in testArgumentMissing()
78 .pattern(message) in testArgumentMissing()
83 .pattern(message) in testArgumentMissing()
97 .pattern(message) in testDefaultLocale()
102 .pattern(message) in testDefaultLocale()
111 .pattern(messag in testDefaultLocale()
[all...]
/third_party/python/Modules/_sre/
H A Dsre_lib.h202 LOCAL(Py_ssize_t) SRE(match)(SRE_STATE* state, const SRE_CODE* pattern, int toplevel);
205 SRE(count)(SRE_STATE* state, const SRE_CODE* pattern, Py_ssize_t maxcount) in count() argument
217 switch (pattern[0]) { in count()
221 TRACE(("|%p|%p|COUNT IN\n", pattern, ptr)); in count()
222 while (ptr < end && SRE(charset)(state, pattern + 2, *ptr)) in count()
228 TRACE(("|%p|%p|COUNT ANY\n", pattern, ptr)); in count()
236 TRACE(("|%p|%p|COUNT ANY_ALL\n", pattern, ptr)); in count()
242 chr = pattern[1]; in count()
243 TRACE(("|%p|%p|COUNT LITERAL %d\n", pattern, ptr, chr)); in count()
256 chr = pattern[ in count()
520 const SRE_CODE* pattern; global() member
560 match(SRE_STATE* state, const SRE_CODE* pattern, int toplevel) match() argument
1631 search(SRE_STATE* state, SRE_CODE* pattern) search() argument
[all...]
/third_party/gn/src/gn/
H A Dsubstitution_pattern_unittest.cc12 SubstitutionPattern pattern; in TEST() local
14 EXPECT_TRUE(pattern.Parse("This is a literal", nullptr, &err)); in TEST()
16 ASSERT_EQ(1u, pattern.ranges().size()); in TEST()
17 EXPECT_EQ(&SubstitutionLiteral, pattern.ranges()[0].type); in TEST()
18 EXPECT_EQ("This is a literal", pattern.ranges()[0].literal); in TEST()
22 SubstitutionPattern pattern; in TEST() local
24 EXPECT_TRUE(pattern.Parse( in TEST()
27 ASSERT_EQ(5u, pattern.ranges().size()); in TEST()
29 EXPECT_EQ(&SubstitutionLiteral, pattern.ranges()[0].type); in TEST()
30 EXPECT_EQ("AA", pattern in TEST()
39 SubstitutionPattern pattern; TEST() local
54 SubstitutionPattern pattern; TEST() local
[all...]
/third_party/python/Lib/re/
H A D__init__.py21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
88 match Match a regular expression pattern to the beginning of a string.
89 fullmatch Match a regular expression pattern to all of a string.
90 search Search a string for the presence of a pattern.
91 sub Substitute occurrences of a pattern found in a string.
93 split Split a string by the occurrences of a pattern.
94 findall Find all occurrences of a pattern in a string.
96 compile Compile a pattern int
[all...]
/third_party/curl/src/
H A Dtool_urlglob.c42 struct URLPattern *pat = &glob->pattern[glob->size]; in glob_fixed()
100 char *pattern = *patternp; in glob_set() local
101 char *opattern = pattern; in glob_set()
104 pat = &glob->pattern[glob->size]; in glob_set()
113 switch(*pattern) { in glob_set()
122 if(opattern == pattern) in glob_set()
155 if(*pattern == '}') { in glob_set()
156 pattern++; /* pass the closing brace */ in glob_set()
162 ++pattern; in glob_set()
170 if(pattern[ in glob_set()
197 char *pattern = *patternp; glob_range() local
373 glob_parse(struct URLGlob *glob, char *pattern, size_t pos, curl_off_t *amount) glob_parse() argument
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2_convert.c58 /* Generated pattern fragments */
103 * Convert a POSIX pattern *
109 pattype the pattern type
110 pattern the pattern
124 convert_posix(uint32_t pattype, PCRE2_SPTR pattern, PCRE2_SIZE plength, in convert_posix() argument
129 PCRE2_SPTR posix = pattern; in convert_posix()
363 * Convert a glob pattern *
467 pattern_end end of pattern
481 PCRE2_SPTR pattern in convert_glob_parse_class() local
583 PCRE2_SPTR pattern = *from; convert_glob_parse_range() local
786 convert_glob(uint32_t options, PCRE2_SPTR pattern, PCRE2_SIZE plength, BOOL utf, PCRE2_UCHAR *use_buffer, PCRE2_SIZE use_length, PCRE2_SIZE *bufflenptr, BOOL dummyrun, pcre2_convert_context *ccontext) convert_glob() argument
1056 pcre2_pattern_convert(PCRE2_SPTR pattern, PCRE2_SIZE plength, uint32_t options, PCRE2_UCHAR **buffptr, PCRE2_SIZE *bufflenptr, pcre2_convert_context *ccontext) pcre2_pattern_convert() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSelectFormat.java22 * messages by selecting phrases based on keywords. The pattern specifies
92 * The sentence pattern for English, where the gender of the person has
102 * <p>The sentence pattern for French, where the gender of the person affects
110 * pattern can be used (with argument 0 the list of people's names,
121 * <p>The <code>SelectFormat</code> pattern string defines the phrase output
123 * The pattern is a sequence of (keyword, message) pairs.
124 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+
126 * <p>Each message is a MessageFormat pattern string enclosed in {curly braces}.
132 * If a pattern does not provide a phrase for <code>other</code>, the method
157 * The applied pattern strin
159 private String pattern = null; global() field in SelectFormat
171 SelectFormat(String pattern) SelectFormat() argument
193 applyPattern(String pattern) applyPattern() argument
223 findSubMessage(MessagePattern pattern, int partIndex, String keyword) findSubMessage() argument
[all...]
H A DMessagePatternUtil.java37 * Factory method, builds and returns a MessageNode from a MessageFormat pattern string.
38 * @param patternString a MessageFormat pattern string
41 * or does not represent a MessageFormat pattern
50 * @param pattern a parsed MessageFormat pattern string
53 * or does not represent a MessageFormat pattern
56 public static MessageNode buildMessageNode(MessagePattern pattern) { in buildMessageNode() argument
57 int limit = pattern.countParts() - 1; in buildMessageNode()
60 } else if (pattern.getPartType(0) != MessagePattern.Part.Type.MSG_START) { in buildMessageNode()
62 "The MessagePattern does not represent a MessageFormat pattern"); in buildMessageNode()
460 buildMessageNode(MessagePattern pattern, int start, int limit) buildMessageNode() argument
489 buildArgNode(MessagePattern pattern, int start, int limit) buildArgNode() argument
531 buildChoiceStyleNode(MessagePattern pattern, int start, int limit) buildChoiceStyleNode() argument
550 buildPluralStyleNode(MessagePattern pattern, int start, int limit, MessagePattern.ArgType argType) buildPluralStyleNode() argument
579 buildSelectStyleNode(MessagePattern pattern, int start, int limit) buildSelectStyleNode() argument
[all...]
H A DPluralFormat.java74 * specify the message pattern, you can either pass it to the
82 * The pattern text defines the message output for each plural case of the
106 * (The offset defaults to 0 if it is omitted from the pattern string.)
152 * The applied pattern string.
155 private String pattern = null; field in PluralFormat
158 * The MessagePattern which contains the parsed structure of the pattern string.
280 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string.
283 * @param pattern the pattern for this <code>PluralFormat</code>.
284 * @throws IllegalArgumentException if the pattern i
288 PluralFormat(String pattern) PluralFormat() argument
306 PluralFormat(ULocale ulocale, String pattern) PluralFormat() argument
322 PluralFormat(PluralRules rules, String pattern) PluralFormat() argument
339 PluralFormat(ULocale ulocale, PluralRules rules, String pattern) PluralFormat() argument
355 PluralFormat(ULocale ulocale, PluralType type, String pattern) PluralFormat() argument
371 PluralFormat(ULocale ulocale, PluralType type, String pattern, NumberFormat numberFormat) PluralFormat() argument
415 applyPattern(String pattern) applyPattern() argument
449 findSubMessage( MessagePattern pattern, int partIndex, PluralSelector selector, Object context, double number) findSubMessage() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DSelectFormat.java23 * messages by selecting phrases based on keywords. The pattern specifies
93 * The sentence pattern for English, where the gender of the person has
103 * <p>The sentence pattern for French, where the gender of the person affects
111 * pattern can be used (with argument 0 the list of people's names,
122 * <p>The <code>SelectFormat</code> pattern string defines the phrase output
124 * The pattern is a sequence of (keyword, message) pairs.
125 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+
127 * <p>Each message is a MessageFormat pattern string enclosed in {curly braces}.
133 * If a pattern does not provide a phrase for <code>other</code>, the method
156 * The applied pattern strin
158 private String pattern = null; global() field in SelectFormat
169 SelectFormat(String pattern) SelectFormat() argument
190 applyPattern(String pattern) applyPattern() argument
219 findSubMessage(MessagePattern pattern, int partIndex, String keyword) findSubMessage() argument
[all...]
H A DMessagePatternUtil.java38 * Factory method, builds and returns a MessageNode from a MessageFormat pattern string.
39 * @param patternString a MessageFormat pattern string
42 * or does not represent a MessageFormat pattern
50 * @param pattern a parsed MessageFormat pattern string
53 * or does not represent a MessageFormat pattern
55 public static MessageNode buildMessageNode(MessagePattern pattern) { in buildMessageNode() argument
56 int limit = pattern.countParts() - 1; in buildMessageNode()
59 } else if (pattern.getPartType(0) != MessagePattern.Part.Type.MSG_START) { in buildMessageNode()
61 "The MessagePattern does not represent a MessageFormat pattern"); in buildMessageNode()
432 buildMessageNode(MessagePattern pattern, int start, int limit) buildMessageNode() argument
461 buildArgNode(MessagePattern pattern, int start, int limit) buildArgNode() argument
503 buildChoiceStyleNode(MessagePattern pattern, int start, int limit) buildChoiceStyleNode() argument
522 buildPluralStyleNode(MessagePattern pattern, int start, int limit, MessagePattern.ArgType argType) buildPluralStyleNode() argument
551 buildSelectStyleNode(MessagePattern pattern, int start, int limit) buildSelectStyleNode() argument
[all...]
H A DPluralFormat.java75 * specify the message pattern, you can either pass it to the
83 * The pattern text defines the message output for each plural case of the
107 * (The offset defaults to 0 if it is omitted from the pattern string.)
152 * The applied pattern string.
155 private String pattern = null; field in PluralFormat
158 * The MessagePattern which contains the parsed structure of the pattern string.
272 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string.
275 * @param pattern the pattern for this <code>PluralFormat</code>.
276 * @throws IllegalArgumentException if the pattern i
279 PluralFormat(String pattern) PluralFormat() argument
296 PluralFormat(ULocale ulocale, String pattern) PluralFormat() argument
311 PluralFormat(PluralRules rules, String pattern) PluralFormat() argument
327 PluralFormat(ULocale ulocale, PluralRules rules, String pattern) PluralFormat() argument
342 PluralFormat(ULocale ulocale, PluralType type, String pattern) PluralFormat() argument
358 PluralFormat(ULocale ulocale, PluralType type, String pattern, NumberFormat numberFormat) PluralFormat() argument
401 applyPattern(String pattern) applyPattern() argument
434 findSubMessage( MessagePattern pattern, int partIndex, PluralSelector selector, Object context, double number) findSubMessage() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/
H A Doperand_pattern_test.cpp34 spv_operand_pattern_t pattern; in TEST() local
36 pattern.push_back(SPV_OPERAND_TYPE_ID); in TEST()
37 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID})); in TEST()
38 EXPECT_EQ(1u, pattern.size()); in TEST()
39 EXPECT_TRUE(!pattern.empty()); in TEST()
40 EXPECT_EQ(SPV_OPERAND_TYPE_ID, pattern.back()); in TEST()
42 pattern.push_back(SPV_OPERAND_TYPE_NONE); in TEST()
43 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID, in TEST()
45 EXPECT_EQ(2u, pattern.size()); in TEST()
46 EXPECT_TRUE(!pattern in TEST()
133 spv_operand_pattern_t pattern; TEST_P() local
150 spv_operand_pattern_t pattern; TEST_P() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Doperand_pattern_test.cpp34 spv_operand_pattern_t pattern; in TEST() local
36 pattern.push_back(SPV_OPERAND_TYPE_ID); in TEST()
37 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID})); in TEST()
38 EXPECT_EQ(1u, pattern.size()); in TEST()
39 EXPECT_TRUE(!pattern.empty()); in TEST()
40 EXPECT_EQ(SPV_OPERAND_TYPE_ID, pattern.back()); in TEST()
42 pattern.push_back(SPV_OPERAND_TYPE_NONE); in TEST()
43 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID, in TEST()
45 EXPECT_EQ(2u, pattern.size()); in TEST()
46 EXPECT_TRUE(!pattern in TEST()
133 spv_operand_pattern_t pattern; TEST_P() local
150 spv_operand_pattern_t pattern; TEST_P() local
[all...]
/third_party/skia/tests/
H A DRecordPatternTest.cpp22 SaveClipRectRestore pattern; in DEF_TEST() local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
29 // Build up a save-clip-restore block. The pattern will match only it's complete. in DEF_TEST()
31 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
34 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
37 REPORTER_ASSERT(r, pattern.match(&record, 0)); in DEF_TEST()
38 REPORTER_ASSERT(r, pattern.first<Save>() != nullptr); in DEF_TEST()
39 REPORTER_ASSERT(r, pattern.second<ClipRect>() != nullptr); in DEF_TEST()
40 REPORTER_ASSERT(r, pattern.third<Restore>() != nullptr); in DEF_TEST()
44 SaveClipRectRestore pattern; in DEF_TEST() local
67 SaveClipRectRestore pattern; DEF_TEST() local
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern; DEF_TEST() local
105 Is<Restore>> pattern; DEF_TEST() local
145 Pattern<IsDraw> pattern; DEF_TEST() local
[all...]
/third_party/spirv-tools/test/
H A Doperand_pattern_test.cpp34 spv_operand_pattern_t pattern; in TEST() local
36 pattern.push_back(SPV_OPERAND_TYPE_ID); in TEST()
37 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID})); in TEST()
38 EXPECT_EQ(1u, pattern.size()); in TEST()
39 EXPECT_TRUE(!pattern.empty()); in TEST()
40 EXPECT_EQ(SPV_OPERAND_TYPE_ID, pattern.back()); in TEST()
42 pattern.push_back(SPV_OPERAND_TYPE_NONE); in TEST()
43 EXPECT_THAT(pattern, Eq(spv_operand_pattern_t{SPV_OPERAND_TYPE_ID, in TEST()
45 EXPECT_EQ(2u, pattern.size()); in TEST()
46 EXPECT_TRUE(!pattern in TEST()
140 spv_operand_pattern_t pattern; TEST_P() local
157 spv_operand_pattern_t pattern; TEST_P() local
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dcmsgtst.c263 log_err("umsg_parse could not parse the pattern. Error: %s.\n",u_errorName(ec)); in MessageFormatTest()
283 UChar pattern[100], expected[100]; in TestSampleMessageFormat() local
293 u_uastrcpy(pattern, "There are {0} files on {1,date}"); in TestSampleMessageFormat()
298 resultLengthOut=u_formatMessage( "en_US", pattern, u_strlen(pattern), result, resultlength, &status, str, d); in TestSampleMessageFormat()
304 u_formatMessage( "en_US", pattern, u_strlen(pattern), result, resultlength, &status, str, d); in TestSampleMessageFormat()
317 log_verbose("\nTesting message format with another pattern test#2\n"); in TestSampleMessageFormat()
318 u_uastrcpy(pattern, "The disk \"{0}\" contains {1,number,integer} file(s)"); in TestSampleMessageFormat()
323 pattern, in TestSampleMessageFormat()
383 UChar pattern[100]; TestNewFormatAndParseAPI() local
485 UChar pattern[100]; TestSampleFormatAndParseWithError() local
585 UChar pattern[100]; TestSampleFormatAndParse() local
684 UChar pattern[100]; TestMsgFormatSelect() local
754 UChar pattern[100]; TestMsgFormatChoice() local
844 UChar pattern[100]; TestParseMessage() local
944 CallParseMessage(const char* locale, UChar* pattern, int32_t patternLength, UChar* source, int32_t sourceLength, UErrorCode *status, ...) CallParseMessage() argument
956 UChar pattern[100]; TestParseMessageWithValist() local
999 UChar pattern[256]; TestJ904() local
1041 UChar pattern[256]; OpenMessageFormatTest() local
1119 UChar pattern[sizeof(patChars)]; MessageLength() local
[all...]
/third_party/python/Lib/distutils/
H A Dfilelist.py117 for pattern in patterns:
118 if not self.include_pattern(pattern, anchor=1):
120 pattern)
124 for pattern in patterns:
125 if not self.exclude_pattern(pattern, anchor=1):
127 "found matching '%s'"), pattern)
131 for pattern in patterns:
132 if not self.include_pattern(pattern, anchor=0):
134 "anywhere in distribution"), pattern)
138 for pattern i
[all...]
/third_party/skia/src/core/
H A DSkFontMgr.cpp183 * If the value of pattern.width is 5 (normal) or less,
185 * If the value of pattern.width is greater than 5 (normal),
195 * If pattern.weight < 400, weights below pattern.weight are checked
196 * in descending order followed by weights above pattern.weight
198 * If pattern.weight > 500, weights above pattern.weight are checked
199 * in ascending order followed by weights below pattern.weight
201 * If pattern.weight is 400, 500 is checked first
202 * and then the rule for pattern
206 matchStyleCSS3(const SkFontStyle& pattern) matchStyleCSS3() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dsrchtest.cpp480 u_unescape(search->pattern, temp, 128); in assertEqual()
481 UnicodeString pattern; in assertEqual() local
482 pattern.setTo(temp); in assertEqual()
490 strsrch = new StringSearch(pattern, text, (RuleBasedCollator *)collator, in assertEqual()
539 u_unescape(search->pattern, temp, 128); in assertCanonicalEqual()
540 UnicodeString pattern; in assertCanonicalEqual() local
541 pattern.setTo(temp); in assertCanonicalEqual()
550 strsrch = new StringSearch(pattern, text, (RuleBasedCollator *)collator, in assertCanonicalEqual()
592 u_unescape(search->pattern, temp, 128); in assertEqualWithAttribute()
593 UnicodeString pattern; in assertEqualWithAttribute() local
627 UnicodeString pattern; TestOpenClose() local
742 UnicodeString pattern; TestInitialization() local
878 UnicodeString pattern; TestBreakIterator() local
1011 UnicodeString pattern; TestOverlap() local
1055 UnicodeString pattern; TestCollator() local
1120 UnicodeString pattern; TestPattern() local
1215 UnicodeString pattern; TestText() local
1426 UnicodeString pattern; TestGetMatch() local
1490 UnicodeString pattern; TestSetMatch() local
1764 UnicodeString pattern; TestBreakIteratorCanonical() local
1870 UnicodeString pattern; TestOverlapCanonical() local
1910 UnicodeString pattern; TestCollatorCanonical() local
1973 UnicodeString pattern; TestPatternCanonical() local
2039 UnicodeString pattern; TestTextCanonical() local
2314 TestSearch(const UnicodeString &text, BreakIterator *breakiter, const UnicodeString &pattern) TestSearch() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/
H A Doperand.cpp289 spv_operand_pattern_t* pattern) { in spvPushOperandTypes()
295 pattern->push_back(*endTypes); in spvPushOperandTypes()
303 spv_operand_pattern_t* pattern) { in spvPushOperandTypesForMask()
312 spvPushOperandTypes(entry->operandTypes, pattern); in spvPushOperandTypesForMask()
427 spv_operand_pattern_t* pattern) { in spvExpandOperandSequenceOnce()
430 pattern->push_back(type); in spvExpandOperandSequenceOnce()
431 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_ID); in spvExpandOperandSequenceOnce()
434 pattern->push_back(type); in spvExpandOperandSequenceOnce()
435 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_LITERAL_INTEGER); in spvExpandOperandSequenceOnce()
440 pattern in spvExpandOperandSequenceOnce()
288 spvPushOperandTypes(const spv_operand_type_t* types, spv_operand_pattern_t* pattern) spvPushOperandTypes() argument
299 spvPushOperandTypesForMask(spv_target_env env, const spv_operand_table operandTable, const spv_operand_type_t type, const uint32_t mask, spv_operand_pattern_t* pattern) spvPushOperandTypesForMask() argument
426 spvExpandOperandSequenceOnce(spv_operand_type_t type, spv_operand_pattern_t* pattern) spvExpandOperandSequenceOnce() argument
456 spvTakeFirstMatchableOperand( spv_operand_pattern_t* pattern) spvTakeFirstMatchableOperand() argument
467 spvAlternatePatternFollowingImmediate( const spv_operand_pattern_t& pattern) spvAlternatePatternFollowingImmediate() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Doperand.cpp289 spv_operand_pattern_t* pattern) { in spvPushOperandTypes()
295 pattern->push_back(*endTypes); in spvPushOperandTypes()
303 spv_operand_pattern_t* pattern) { in spvPushOperandTypesForMask()
312 spvPushOperandTypes(entry->operandTypes, pattern); in spvPushOperandTypesForMask()
427 spv_operand_pattern_t* pattern) { in spvExpandOperandSequenceOnce()
430 pattern->push_back(type); in spvExpandOperandSequenceOnce()
431 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_ID); in spvExpandOperandSequenceOnce()
434 pattern->push_back(type); in spvExpandOperandSequenceOnce()
435 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_LITERAL_INTEGER); in spvExpandOperandSequenceOnce()
440 pattern in spvExpandOperandSequenceOnce()
288 spvPushOperandTypes(const spv_operand_type_t* types, spv_operand_pattern_t* pattern) spvPushOperandTypes() argument
299 spvPushOperandTypesForMask(spv_target_env env, const spv_operand_table operandTable, const spv_operand_type_t type, const uint32_t mask, spv_operand_pattern_t* pattern) spvPushOperandTypesForMask() argument
426 spvExpandOperandSequenceOnce(spv_operand_type_t type, spv_operand_pattern_t* pattern) spvExpandOperandSequenceOnce() argument
456 spvTakeFirstMatchableOperand( spv_operand_pattern_t* pattern) spvTakeFirstMatchableOperand() argument
467 spvAlternatePatternFollowingImmediate( const spv_operand_pattern_t& pattern) spvAlternatePatternFollowingImmediate() argument
[all...]
/third_party/spirv-tools/source/
H A Doperand.cpp277 spv_operand_pattern_t* pattern) { in spvPushOperandTypes()
283 pattern->push_back(*endTypes); in spvPushOperandTypes()
291 spv_operand_pattern_t* pattern) { in spvPushOperandTypesForMask()
300 spvPushOperandTypes(entry->operandTypes, pattern); in spvPushOperandTypesForMask()
424 spv_operand_pattern_t* pattern) { in spvExpandOperandSequenceOnce()
427 pattern->push_back(type); in spvExpandOperandSequenceOnce()
428 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_ID); in spvExpandOperandSequenceOnce()
431 pattern->push_back(type); in spvExpandOperandSequenceOnce()
432 pattern->push_back(SPV_OPERAND_TYPE_OPTIONAL_LITERAL_INTEGER); in spvExpandOperandSequenceOnce()
437 pattern in spvExpandOperandSequenceOnce()
276 spvPushOperandTypes(const spv_operand_type_t* types, spv_operand_pattern_t* pattern) spvPushOperandTypes() argument
287 spvPushOperandTypesForMask(spv_target_env env, const spv_operand_table operandTable, const spv_operand_type_t type, const uint32_t mask, spv_operand_pattern_t* pattern) spvPushOperandTypesForMask() argument
423 spvExpandOperandSequenceOnce(spv_operand_type_t type, spv_operand_pattern_t* pattern) spvExpandOperandSequenceOnce() argument
453 spvTakeFirstMatchableOperand( spv_operand_pattern_t* pattern) spvTakeFirstMatchableOperand() argument
464 spvAlternatePatternFollowingImmediate( const spv_operand_pattern_t& pattern) spvAlternatePatternFollowingImmediate() argument
[all...]
/third_party/icu/icu4c/source/tools/ctestfw/
H A Dctest.c90 * @param pattern printf style pattern
93 static void vlog_err(const char *prefix, const char *pattern, va_list ap);
94 static void vlog_verbose(const char *prefix, const char *pattern, va_list ap);
95 static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap);
99 * @param pattern printf pattern
101 static void log_testinfo_i(const char *pattern, ...);
105 * @param pattern printf pattern
679 vlog_err(const char *prefix, const char *pattern, va_list ap) vlog_err() argument
700 vlog_knownIssue(const char *ticket, const char *pattern, va_list ap) vlog_knownIssue() argument
724 vlog_info(const char *prefix, const char *pattern, va_list ap) vlog_info() argument
744 log_testinfo_i(const char *pattern, ...) log_testinfo_i() argument
758 log_testinfo(const char *pattern, ...) log_testinfo() argument
770 vlog_verbose(const char *prefix, const char *pattern, va_list ap) vlog_verbose() argument
792 log_err(const char* pattern, ...) log_err() argument
811 log_knownIssue(const char *ticket, const char *pattern, ...) log_knownIssue() argument
818 log_err_status(UErrorCode status, const char* pattern, ...) log_err_status() argument
851 log_info(const char* pattern, ...) log_info() argument
860 log_verbose(const char* pattern, ...) log_verbose() argument
870 log_data_err(const char* pattern, ...) log_data_err() argument
[all...]

Completed in 15 milliseconds

12345678910>>...57