/third_party/libunwind/tests/ |
D | check-namespace.sh.in | 46 match () { function 96 match _UL${plat}_apply_reg_state 97 match _UL${plat}_reg_states_iterate 98 match _UL${plat}_create_addr_space 99 match _UL${plat}_destroy_addr_space 100 match _UL${plat}_get_fpreg 101 match _UL${plat}_get_proc_info 102 match _UL${plat}_get_proc_info_by_ip 103 match _UL${plat}_get_proc_name 104 match _UL${plat}_get_reg [all …]
|
/third_party/skia/infra/bots/gen_tasks_logic/ |
D | nano_flags.go | 195 match := []string{} 198 match = append(match, "~blurroundrect") 199 match = append(match, "~patch_grid") // skia:2847 200 match = append(match, "~desk_carsvg") 203 match = append(match, "~keymobi_shop_mobileweb_ebay_com.skp") // skia:5178 206 match = append(match, "~blurroundrect") 207 match = append(match, "~patch_grid") // skia:2847 208 match = append(match, "~desk_carsvg") 209 match = append(match, "~keymobi") 210 match = append(match, "~path_hairline") [all …]
|
D | dm_flags.go | 985 match := []string{} 987 match = append(match, "~Threaded") 992 match = append(match, "~multipicturedraw_") 996 match = append(match, "~WritePixels") // skia:4711 997 match = append(match, "~PremulAlphaRoundTrip_Gpu") // skia:7501 998 match = append(match, "~ReimportImageTextureWithMipLevels") // skia:8090 999 match = append(match, "~MorphologyFilterRadiusWithMirrorCTM_Gpu") // skia:10383 1003 match = append(match, "~Once", "~Shared") // Not sure what's up with these tests. 1014 match = append(match, "~CopySurface") 1019 match = append(match, "~WritePixelsNonTextureMSAA_Gpu") [all …]
|
/third_party/node/tools/inspector_protocol/ |
D | pdl.py | 77 match = re.compile(r'^(experimental )?(deprecated )?domain (.*)').match(line) 78 if match: 79 domain = createItem({'domain' : match.group(3)}, match.group(1), match.group(2)) 83 match = re.compile(r'^ depends on ([^\s]+)').match(line) 84 if match: 87 domain['dependencies'].append(match.group(1)) 90 …match = re.compile(r'^ (experimental )?(deprecated )?type (.*) extends (array of )?([^\s]+)').mat… 91 if match: 94 item = createItem({'id': match.group(3)}, match.group(1), match.group(2)) 95 assignType(item, match.group(5), match.group(4), map_binary_to_string) [all …]
|
/third_party/flutter/skia/infra/bots/recipes/ |
D | perf.py | 163 match = [] 166 match.append('~blurroundrect') 167 match.append('~patch_grid') # skia:2847 168 match.append('~desk_carsvg') 170 match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178 172 match.append('~blurroundrect') 173 match.append('~patch_grid') # skia:2847 174 match.append('~desk_carsvg') 175 match.append('~keymobi') 176 match.append('~path_hairline') [all …]
|
D | test.py | 639 match = [] 641 match.append('~Threaded') 645 match.append('~multipicturedraw_') 649 match.append('~HalfFloatAlphaTextureTest') 652 match.append('~WritePixels') # skia:4711 653 match.append('~PremulAlphaRoundTrip_Gpu') # skia:7501 654 match.append('~ReimportImageTextureWithMipLevels') # skia:8090 659 match.append('~animated-image-blurs') 660 match.append('~blur_0.01') 661 match.append('~blur_image_filter') [all …]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | trace-parser.py | 188 match = re.search(flush_batch_match, line) 189 if match is not None: 191 renderpass = RenderPass(cleared=match.group(2), 192 gmem_reason=match.group(3), 193 num_draws=match.group(4)) 197 match = re.search(framebuffer_match, line) 198 if match is not None: 200 renderpass.fb = FramebufferState(width=match.group(1), 201 height=match.group(2), 202 layers=match.group(3), [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput6 | 26 \= Expect no match 28 No match 30 No match 81 \= Expect no match 83 No match 85 No match 92 \= Expect no match 94 No match 99 \= Expect no match 101 No match [all …]
|
D | testoutput1 | 18 \= Expect no match 20 No match 22 No match 99 \= Expect no match 101 No match 103 No match 105 No match 107 No match 109 No match 111 No match [all …]
|
D | testoutput5 | 23 \= Expect no match 25 No match 27 No match 29 No match 31 No match 33 No match 36 \= Expect no match 38 No match 40 No match 42 No match [all …]
|
D | testoutput7 | 25 \= Expect no match 27 No match 36 \= Expect no match 38 No match 43 \= Expect no match 45 No match 47 No match 49 No match 58 \= Expect no match 60 No match [all …]
|
D | testoutput4 | 20 \= Expect no match 22 No match 34 \= Expect no match 36 No match 38 No match 110 \= Expect no match 112 No match 114 No match 132 \= Expect no match 134 No match [all …]
|
/third_party/python/Lib/test/ |
D | test_re.py | 80 self.assertEqual(re.match('a*', 'xxx').span(0), (0, 0)) 81 self.assertEqual(re.match('a*', 'xxx').span(), (0, 0)) 82 self.assertEqual(re.match('x*', 'xxxa').span(0), (0, 3)) 83 self.assertEqual(re.match('x*', 'xxxa').span(), (0, 3)) 84 self.assertIsNone(re.match('a+', 'xxx')) 151 self.assertRaises(ValueError, re.match, pattern, 'A', re.I) 253 self.assertEqual(re.match(pat, 'xc8yz').span(), (0, 5)) 390 self.assertEqual(re.match('a', string).groups(), ()) 391 self.assertEqual(re.match('(a)', string).groups(), ('a',)) 392 self.assertEqual(re.match('(a)', string).group(0), 'a') [all …]
|
D | test_patma.py | 30 match x: 38 match x: 134 match 0: 140 match 0: 148 match 0: 157 match 0: 164 match 1: 171 match 2: 178 match 3: 185 match 4: [all …]
|
/third_party/node/tools/ |
D | update-authors.js | 41 let match; variable 43 if (match = line.match(/^([^<]+)\s+(<[^>]+>)$/)) { 44 mailmap.set(match[2].toLowerCase(), { 45 author: match[1], email: match[2] 48 } else if (match = line.match(/^<([^>]+)>\s+(<[^>]+>)$/)) { 49 mailmap.set(match[2].toLowerCase(), { email: match[1] }); 51 } else if (match = line.match(/^([^<]+)\s+(<[^>]+>)\s+(<[^>]+>)$/)) { 52 mailmap.set(match[3].toLowerCase(), { 53 author: match[1], email: match[2] 56 } else if (match = [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Config.cpp | 237 bool match = true; in filter() local 252 match = config.bufferSize >= attributeValue; in filter() 255 match = config.alphaSize >= attributeValue; in filter() 258 match = config.blueSize >= attributeValue; in filter() 261 match = config.greenSize >= attributeValue; in filter() 264 match = config.redSize >= attributeValue; in filter() 267 match = config.depthSize >= attributeValue; in filter() 270 match = config.stencilSize >= attributeValue; in filter() 273 match = config.configCaveat == static_cast<EGLenum>(attributeValue); in filter() 276 match = config.configID == attributeValue; in filter() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Config.cpp | 234 bool match = true; in filter() local 249 match = config.bufferSize >= attributeValue; in filter() 252 match = config.alphaSize >= attributeValue; in filter() 255 match = config.blueSize >= attributeValue; in filter() 258 match = config.greenSize >= attributeValue; in filter() 261 match = config.redSize >= attributeValue; in filter() 264 match = config.depthSize >= attributeValue; in filter() 267 match = config.stencilSize >= attributeValue; in filter() 270 match = config.configCaveat == static_cast<EGLenum>(attributeValue); in filter() 273 match = config.configID == attributeValue; in filter() [all …]
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | ucsdetst.c | 128 const UCharsetMatch *match; in TestUTF8() local 140 match = ucsdet_detect(csd, &status); in TestUTF8() 142 if (match == NULL) { in TestUTF8() 147 dLength = ucsdet_getUChars(match, detected, sLength, &status); in TestUTF8() 174 const UCharsetMatch *match; in TestUTF16() local 179 match = ucsdet_detect(csd, &status); in TestUTF16() 181 if (match == NULL) { in TestUTF16() 186 name = ucsdet_getName(match, &status); in TestUTF16() 187 conf = ucsdet_getConfidence(match, &status); in TestUTF16() 199 match = ucsdet_detect(csd, &status); in TestUTF16() [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | string-prototype-match.js | 26 assert(Object.getOwnPropertyDescriptor(String.prototype.match, 'length').configurable === length_co… 27 assert(Object.getOwnPropertyDescriptor(String.prototype.match, 'length').enumerable === false); 28 assert(Object.getOwnPropertyDescriptor(String.prototype.match, 'length').writable === false); 48 assert (match_equals ("hello".match("o"), ["o"])); 49 assert ("hello".match(/ /g) == void 0); 51 assert (match_equals ("hello".match(/o/), ["o"])); 53 assert (match_equals ("hello".match(/l/), ["l"])); 54 assert (match_equals ("hello".match(/l/g), ["l", "l"])); 56 assert ("".match(/a/g) == void 0); 58 assert ("".match() !== void 0 ); [all …]
|
/third_party/PyYAML/examples/pygments-lexer/ |
D | yaml.py | 34 def callback(lexer, match, context): argument 35 text = match.group() 38 yield match.start(), TokenClass, text 39 context.pos = match.end() 44 def callback(lexer, match, context): argument 45 text = match.group() 50 yield match.start(), TokenClass, text 51 context.pos = match.end() 56 def callback(lexer, match, context): argument 57 text = match.group() [all …]
|
/third_party/flutter/skia/tools/skpbench/ |
D | _benchresult.py | 38 def match(cls, text): member in BenchResult 39 match = cls.PATTERN.search(text) 40 return cls(match) if match else None 42 def __init__(self, match): argument 43 self.accum = float(match.group('accum')) 44 self.median = float(match.group('median')) 45 self.max = float(match.group('max')) 46 self.min = float(match.group('min')) 47 self.stddev = float(match.group('stddev')[:-1]) # Drop '%' sign. 48 self.samples = int(match.group('samples')) [all …]
|
/third_party/skia/tools/skpbench/ |
D | _benchresult.py | 38 def match(cls, text): member in BenchResult 39 match = cls.PATTERN.search(text) 40 return cls(match) if match else None 42 def __init__(self, match): argument 43 self.accum = float(match.group('accum')) 44 self.median = float(match.group('median')) 45 self.max = float(match.group('max')) 46 self.min = float(match.group('min')) 47 self.stddev = float(match.group('stddev')[:-1]) # Drop '%' sign. 48 self.samples = int(match.group('samples')) [all …]
|
/third_party/vk-gl-cts/external/amber/src/tools/ |
D | amber.sublime-syntax | 10 - match: '"' 15 - match: '#' 20 - match: '\b(END|SHADER|BUFFER|DATA_TYPE|SIZE|DATA|FILL|SERIES_FROM)\b' 22 - match: '\b(PASSTHROUGH|PIPELINE|ATTACH|ENTRY_POINT|DESCRIPTOR_SET|INC_BY)\b' 24 - match: '\b(BINDING|IDX|TO|RUN|DRAW_RECT|POS|DRAW_GRID|CELLS|DRAW_ARRAY|IN|AS|START_IDX)\b' 26 - match: '\b(COUNT|CLEAR_COLOR|CLEAR|EXPECT|TYPE|FRAMEBUFFER|SHADER_OPTIMIZATION)\b' 28 - match: '\b(FORMAT|FRAMEBUFFER_SIZE|BIND|SAMPLER|VERTEX_DATA|INDEX_DATA|INDEXED)\b' 30 - match: '\b(IMAGE_ATTACHMENT|DEPTH_STENCIL_ATTACHMENT|LOCATION|DEVICE_FEATURE)\b' 32 - match: '\b(DERIVE_PIPELINE|FROM|STD140|STD430)\b' 34 - match : '\b(COPY|TOLERANCE|REPEAT)\b' [all …]
|
/third_party/python/Lib/html/ |
D | parser.py | 153 match = self.interesting.search(rawdata, i) # < or & 154 if match: 155 j = match.start() 169 if starttagopen.match(rawdata, i): # < + letter 200 match = charref.match(rawdata, i) 201 if match: 202 name = match.group()[2:-1] 204 k = match.end() 215 match = entityref.match(rawdata, i) 216 if match: [all …]
|
/third_party/skia/experimental/tskit/go/gen_types/ |
D | gen_types.go | 82 if match := classDefinitionStart.FindStringSubmatch(line); match != nil { 84 name: match[1], 91 if match := privateExportLine.FindStringSubmatch(line); match != nil { 92 export := match[1] 99 if match := publicExportLine.FindStringSubmatch(line); match != nil { 100 export := match[1] 111 if match := typeAnnotation.FindStringSubmatch(line); match != nil { 112 lastTypeOptional = match[1] != "" 113 lastTypeAnnotation = match[2] 115 if match := valueObjectStart.FindStringSubmatch(line); match != nil { [all …]
|