HomeSort by: relevance | last modified time | path
    Searched refs:match (Results 1 - 25 of 439) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/fontconfig/dist/conf.d/
10-no-antialias.conf 5 <match target="pattern">
7 </match>
10-yes-antialias.conf 5 <match target="pattern">
7 </match>
35-lang-normalize.conf 5 <match>
8 </match>
10 <match>
13 </match>
15 <match>
18 </match>
20 <match>
23 </match>
25 <match>
28 </match>
    [all...]
10-scale-bitmap-fonts.conf 10 <match target="font">
20 </match>
25 <match target="font">
47 </match>
48 <match target="font">
55 </match>
59 <match target="font">
81 </match>
48-spacing.conf 8 <match target="pattern">
15 </match>
80-delicious.conf 7 <match target="scan">
17 </match>
10-hinting-full.conf 6 <match target="pattern">
14 </match>
10-hinting-medium.conf 6 <match target="pattern">
14 </match>
10-hinting-none.conf 6 <match target="pattern">
14 </match>
10-hinting-slight.conf 6 <match target="pattern">
14 </match>
  /xsrc/external/mit/libXft/dist/src/
xftfont.c 32 FcPattern *match; local
59 match = FcFontMatch (NULL, new, result);
63 FcPatternPrint (match);
66 return match;
74 FcPattern *match; local
87 match = XftFontMatch (dpy, screen, pat, &result);
92 if (match)
94 printf ("Match ");
95 FcPatternPrint (match);
98 printf ("No Match\n")
119 FcPattern *match; local
165 FcPattern *match; local
    [all...]
  /xsrc/external/mit/libpciaccess/dist/src/
common_iterator.c 58 } match; member in struct:pci_device_iterator
72 pci_slot_match_iterator_create( const struct pci_slot_match * match )
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 )
120 if ( match != NULL ) {
123 (void) memcpy( & iter->match.id, match, sizeof( *match ) )
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
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...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/
gen_archrast.py 43 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(r'(\s*)};', line
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/glx/
clientinfo.c 131 char *match = strstr(haystack, "GLX_ARB_create_context"); local
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/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
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.old/dist/src/mesa/drivers/dri/
gen-symbol-redefs.py 50 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/
42-luxi-mono.conf 6 <match target="scan">
11 </match>
  /xsrc/external/mit/xorgproto/dist/scripts/
keysym-generator.py 55 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_pattern, line
    [all...]
  /xsrc/external/mit/xorg-server/dist/config/
fdi2iclass.py 31 # dict converting <match> tags to Match* entries
43 # dict converting info.capabilities list to Match* entries
62 '''Parse a <match> tag to a tuple with InputClass values'''
63 match = None
71 match = match_table[key]
76 if not match and not booltype:
77 return (match, value)
83 if match == 'MatchDevicePath':
86 match = cap_match_table[value
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/config/
fdi2iclass.py 31 # dict converting <match> tags to Match* entries
43 # dict converting info.capabilities list to Match* entries
62 '''Parse a <match> tag to a tuple with InputClass values'''
63 match = None
71 match = match_table[key]
76 if not match and not booltype:
77 return (match, value)
83 if match == 'MatchDevicePath':
86 match = cap_match_table[value
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/
regex.c 125 re_mat match[10]; local
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[1].rm_so)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
midgard_address.c 36 * 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
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.B.comp
291 struct mir_address match = mir_match_offset(src->ssa, false, false); local
    [all...]
  /xsrc/external/mit/fontconfig/dist/test/
test-crbug1004254.c 39 FcPattern *pat = FcPatternCreate (), *match; local
46 match = FcFontMatch (NULL, pat, &result);
47 if (result != FcResultMatch || !match)
51 if (match)
52 FcPatternDestroy (match);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/
gen_archrast.py 42 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(r'(\s*)(\w+)(\s*)', line
    [all...]

Completed in 12 milliseconds

1 2 3 4 5 6 7 8 91011>>