Searched refs:match (Results 1 - 25 of 801) sorted by relevance

1234567891011>>

/xsrc/external/mit/fontconfig/dist/conf.d/
H A D10-no-antialias.conf5 <match target="pattern">
7 </match>
H A D10-yes-antialias.conf5 <match target="pattern">
7 </match>
H A D35-lang-normalize.conf5 <match>
8 </match>
10 <match>
13 </match>
15 <match>
18 </match>
20 <match>
23 </match>
25 <match>
28 </match>
[all...]
H A D10-scale-bitmap-fonts.conf10 <match target="font">
20 </match>
25 <match target="font">
47 </match>
48 <match target="font">
55 </match>
59 <match target="font">
81 </match>
H A D48-spacing.conf8 <match target="pattern">
15 </match>
H A D80-delicious.conf7 <match target="scan">
17 </match>
H A D10-autohint.conf6 <match target="pattern">
14 </match>
H A D10-hinting-full.conf6 <match target="pattern">
14 </match>
H A D10-hinting-medium.conf6 <match target="pattern">
14 </match>
/xsrc/external/mit/fontconfig/dist/fc-match/
H A DMakefile.am2 # fontconfig/fc-match/Makefile.am
24 bin_PROGRAMS=fc-match
28 FC_MATCH_SRC=${top_srcdir}/fc-match
30 SGML = ${FC_MATCH_SRC}/fc-match.sgml
34 BUILT_MANS=fc-match.1
40 EXTRA_DIST=fc-match.sgml $(BUILT_MANS)
/xsrc/external/mit/libXft/dist/src/
H A Dxftfont.c32 FcPattern *match; local in function:XftFontMatch
59 match = FcFontMatch (NULL, new, result);
63 FcPatternPrint (match);
66 return match;
74 FcPattern *match; local in function:XftFontOpen
87 match = XftFontMatch (dpy, screen, pat, &result);
92 if (match)
95 FcPatternPrint (match);
101 if (!match)
104 font = XftFontOpenPattern (dpy, match);
119 FcPattern *match; local in function:XftFontOpenName
165 FcPattern *match; local in function:XftFontOpenXlfd
[all...]
/xsrc/external/mit/libpciaccess/dist/src/
H A Dcommon_iterator.c58 } match; member in struct:pci_device_iterator
72 pci_slot_match_iterator_create( const struct pci_slot_match * match ) argument
84 if ( match != NULL ) {
87 (void) memcpy( & iter->match.slot, match, sizeof( *match ) );
108 pci_id_match_iterator_create( const struct pci_id_match * match ) argument
120 if ( match != NULL ) {
123 (void) memcpy( & iter->match.id, match, sizeo
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
H A Dtrace-parser.py188 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
[all...]
/xsrc/external/mit/fontconfig/dist/test/
H A Dtest-90-synthetic.json21 "method": "match",
33 "method": "match",
44 "method": "match",
56 "method": "match",
H A Dtest-45-generic.json15 "method": "match",
26 "method": "match",
H A Dtest-crbug1004254.c39 FcPattern *pat = FcPatternCreate (), *match; local in function:run_query
46 match = FcFontMatch (NULL, pat, &result);
47 if (result != FcResultMatch || !match)
51 if (match)
52 FcPatternDestroy (match);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/
H A Dgen_archrast.py43 match = re.match(r'^(\s*)([\w\*]+)(\s+)([\w]+)(\[\d+\])*;\s*(\/\/.*)*$', line)
51 if match:
53 "type": match.group(2),
54 "name": match.group(4),
55 "size": int(match.group(5)[1:-1]) if match.group(5) else 1,
56 "desc": match.group(6)[2:].strip() if match.group(6) else "",
60 end_of_event = re.match(
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/
H A Dgen_archrast.py42 match = re.match(r'(\s*)([\w\*]+)(\s+)(counter\s+)*([\w]+)(\[\d+\])*', line)
44 if match:
46 "type": match.group(2),
47 "name": match.group(5),
48 "size": int(match.group(6)[1:-1]) if match.group(6) else 1,
49 "counter": True if match.group(4) else False
53 end_of_event = re.match(r'(\s*)};', line)
76 enum = re.match(
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Dclientinfo.c88 char *match = strstr(haystack, "GLX_ARB_create_context"); local in function:__glX_send_client_info
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Dclientinfo.c131 char *match = strstr(haystack, "GLX_ARB_create_context"); local in function:__glX_send_client_info
133 if (match == NULL)
136 match += ext_length;
138 switch (match[0]) {
145 if (strncmp(match, "_profile", prof_length) == 0
146 && (match[prof_length] == '\0'
147 || match[prof_length] == ' ')) {
149 match += prof_length;
154 haystack = match;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/
H A Dgen-symbol-redefs.py50 m = re.match("[0-9a-z]+ [BT] (.*)", line)
56 has_good_prefix = re.match(args.newprefix, symbol) != None
58 if re.match(prefix, symbol):
65 if re.match("__driDriverGetExtensions", symbol):
/xsrc/external/mit/font-bh-ttf/dist/
H A D42-luxi-mono.conf6 <match target="scan">
11 </match>
/xsrc/external/mit/xorgproto/dist/scripts/
H A Dkeysym-generator.py55 match = re.match(pattern, line)
56 if match:
57 keysym_names.append(match.group("name"))
79 filter(lambda v: re.match(r"^v[2-6]\.[0-9]+(\.[0-9]+)?$", v), tags)
173 else: # no match
225 if re.match(start_token, line):
230 if re.match(reserved_range, line):
232 match = re.match(name_patter
[all...]
/xsrc/external/mit/xedit/dist/lisp/
H A Dregex.c125 re_mat match[10]; local in function:Lisp_Reexec
173 match[0].rm_so = start;
174 match[0].rm_eo = end;
175 code = reexec(regexp, string, nmatch, &match[0], eflags);
178 if (nmatch && match[0].rm_eo >= match[0].rm_so) {
179 result = CONS(CONS(FIXNUM(match[0].rm_so),
180 FIXNUM(match[0].rm_eo)), NIL);
181 if (nmatch > 1 && match[1].rm_eo >= match[
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_address.c36 * This allows for fast indexing into arrays. This file tries to pattern match the offset in NIR with this form to reduce pressure on the ALU pipe.
200 /* Tries to pattern match into mir_address */
256 struct mir_address match = mir_match_offset(offset->ssa, first_free, true); local in function:mir_set_offset
258 if (match.A.def) {
259 ins->src[1] = nir_ssa_index(match.A.def);
260 ins->swizzle[1][0] = match.A.comp;
261 ins->src_types[1] = nir_type_uint | match.A.def->bit_size;
268 if (match.B.def) {
269 ins->src[2] = nir_ssa_index(match.B.def);
270 ins->swizzle[2][0] = match
291 struct mir_address match = mir_match_offset(src->ssa, false, false); local in function:mir_set_ubo_offset
[all...]

Completed in 14 milliseconds

1234567891011>>