Searched refs:re (Results 1 - 25 of 29) sorted by relevance

12

/seL4-refos-master/kernel/tools/
H A Dcircular_includes.py15 import re namespace
29 ignore_args = [re.escape(ignore) for ignore in ignore_args]
31 ignore_re = re.compile(r'^# 1 ".*' + ignore_re_string + '"')
33 header_re = re.compile(r'^# (\d+) "(.*\..)"')
H A Dlex.py40 import re namespace
70 _is_identifier = re.compile(r'^[a-zA-Z0-9_]+$')
139 # tuples (re,findex) where re is a compiled
151 self.lexreflags = 0 # Optional re compile flags
263 titem.append((re.compile(lre[i][0], lextab._lexreflags),
510 # form the master regular expression. Given limitations in the Python re
520 lexre = re.compile(regex, re.VERBOSE | reflags)
798 c = re
[all...]
H A Dsyscall_header_gen.py14 import re namespace
206 words = re.findall('[A-Z][A-Z]?[^A-Z]*', s)
/seL4-refos-master/projects/util_libs/libpci/include/pci/
H A Dhelper_gen.py12 import re, os; namespace
27 r = re.search(r'^#define PCI_VENDOR_ID_([A-Z0-9_]+)\s+(\w+)', line);
42 rv = re.search(r'^#define PCI_VENDOR_ID_([A-Z0-9_]+)\s+(\w+)', line);
46 r = re.search(r'^#define PCI_DEVICE_ID_([A-Z0-9]+_[A-Z0-9_]+)\s+(\w+)', line);
/seL4-refos-master/seL4_tools/misc/
H A Dfilter.py9 import re namespace
16 COMMENT = re.compile(r'^\s*#')
17 TRAILING_COMMENT = re.compile(r'\s+#.*$')
H A Dstyle.py15 import re namespace
40 regexmap = {k: re.compile(v) for k, v in STYLE_MAP.items()}
/seL4-refos-master/projects/seL4_libs/libsel4test/tools/
H A Dextract_results.py15 import re namespace
83 regexp = re.compile(r'(<%(top)s>.*</%(top)s>)' % {'top': TOP_TAG}, re.S)
84 matches = re.search(regexp, data)
/seL4-refos-master/projects/refos/impl/
H A Dcidl_compile15 import sys, tempita, re, argparse namespace
55 if_name = re.sub(r'.xml$', '', if_name.strip())
56 if_name = re.search('([^\/]*)$', if_name).group(0)
57 if_name = re.sub(r'_interface$', '', if_name)
148 dct_func['comment_text'] = re.sub(r'^ +', ' ', func_idl.text.strip(), flags = re.MULTILINE)
184 dct_root['includes'].append(re.sub(r'^\s*', '#include <', x.text.strip(),\
185 flags = re.MULTILINE) + '>\n')
/seL4-refos-master/
H A Dcidl_compile15 import sys, tempita, re, argparse namespace
55 if_name = re.sub(r'.xml$', '', if_name.strip())
56 if_name = re.search('([^\/]*)$', if_name).group(0)
57 if_name = re.sub(r'_interface$', '', if_name)
148 dct_func['comment_text'] = re.sub(r'^ +', ' ', func_idl.text.strip(), flags = re.MULTILINE)
184 dct_root['includes'].append(re.sub(r'^\s*', '#include <', x.text.strip(),\
185 flags = re.MULTILINE) + '>\n')
/seL4-refos-master/libs/libmuslc/arch/sh/bits/
H A Duser.h44 unsigned long re; member in struct:pt_dspregs
/seL4-refos-master/projects/util_libs/libfdt/
H A Dfdt_sw.c205 struct fdt_reserve_entry *re; local
211 if ((offset + sizeof(*re)) > fdt_totalsize(fdt))
214 re = (struct fdt_reserve_entry *)((char *)fdt + offset);
215 re->address = cpu_to_fdt64(addr);
216 re->size = cpu_to_fdt64(size);
218 fdt_set_off_dt_struct(fdt, offset + sizeof(*re));
H A Dfdt_rw.c176 struct fdt_reserve_entry *re; local
181 re = fdt_mem_rsv_w_(fdt, fdt_num_mem_rsv(fdt));
182 err = fdt_splice_mem_rsv_(fdt, re, 0, 1);
186 re->address = cpu_to_fdt64(address);
187 re->size = cpu_to_fdt64(size);
193 struct fdt_reserve_entry *re = fdt_mem_rsv_w_(fdt, n); local
200 return fdt_splice_mem_rsv_(fdt, re, 1, 0);
H A Dfdt_ro.c187 const struct fdt_reserve_entry *re; local
190 re = fdt_mem_rsv(fdt, n);
191 if (!re)
194 *address = fdt64_ld(&re->address);
195 *size = fdt64_ld(&re->size);
202 const struct fdt_reserve_entry *re; local
204 for (i = 0; (re = fdt_mem_rsv(fdt, i)) != NULL; i++) {
205 if (fdt64_ld(&re->size) == 0)
/seL4-refos-master/kernel/manual/tools/
H A Dparse_doxygen_xml.py15 import re namespace
55 escape_regex = re.compile(re.escape('|'.join(self.ESCAPE_PATTERNS.keys())))
458 match_details = re.match(r'^DOCREF$', details, re.M | re.I)
462 details_string = "**Description:** " + re.sub(r"\n(?!\n)", " ", details)
464 ret_string = "**Return value:** " + re.sub("\n(?!\n)", " ", ret)
467 ret_string = re.sub(r'DOCREF', "", ret_string)
468 details_string = re
[all...]
/seL4-refos-master/libs/libmuslc/src/thread/powerpc64/
H A Dclone.s35 1: # if we're the parent, return
39 # we're the child. call fn(arg)
/seL4-refos-master/kernel/libsel4/tools/
H A Dsyscall_header_gen.py14 import re namespace
206 words = re.findall('[A-Z][A-Z]?[^A-Z]*', s)
H A Dbitfield_gen.py17 import re namespace
2767 search_re = re.compile('[a-zA-Z0-9_]+')
2889 guard = re.sub(r'[^a-zA-Z0-9_]', '_', out_file.filename.upper())
/seL4-refos-master/kernel/manual/tools/libsel4_tools/
H A Dsyscall_header_gen.py14 import re namespace
206 words = re.findall('[A-Z][A-Z]?[^A-Z]*', s)
H A Dbitfield_gen.py17 import re namespace
2767 search_re = re.compile('[a-zA-Z0-9_]+')
2889 guard = re.sub(r'[^a-zA-Z0-9_]', '_', out_file.filename.upper())
/seL4-refos-master/libs/libsel4/tools/
H A Dsyscall_header_gen.py14 import re namespace
206 words = re.findall('[A-Z][A-Z]?[^A-Z]*', s)
/seL4-refos-master/seL4_tools/cmake-tool/helpers/
H A Dshoehorn.py22 import re namespace
98 match = re.search(cpio_magic, payload.read())
192 # Deal with the 1..(# of CPUs - 1) possible user payloads, if we're not
/seL4-refos-master/libs/libmuslc/src/thread/s390x/
H A Dclone.s37 # if error or if we're the parent, return
41 # we're the child. call fn(arg)
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/doc/
H A DGuidebook.tex400 {\it Conf\/} when you're confused, {\it FoodPois\/} or {\it Ill\/}
544 inventory, so you can see the inventory letters of every object you're
727 List your inventory (everything you're carrying).
876 and if you select a spell in that menu, you'll be re-prompted for
1145 to another level, the level you're leaving will be deactivated and
1146 stored in a file on disk. If you're moving to a previously visited
1148 you're moving to a level which has not yet been visited, it will be
1158 and some other monsters will follow along if they're close enough when
1184 whether you're willing to sell, or you'll be told that the shopkeeper
1286 and other meats. If you're worrie
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/doc/
H A DGuidebook.tex400 {\it Conf\/} when you're confused, {\it FoodPois\/} or {\it Ill\/}
544 inventory, so you can see the inventory letters of every object you're
727 List your inventory (everything you're carrying).
876 and if you select a spell in that menu, you'll be re-prompted for
1145 to another level, the level you're leaving will be deactivated and
1146 stored in a file on disk. If you're moving to a previously visited
1148 you're moving to a level which has not yet been visited, it will be
1158 and some other monsters will follow along if they're close enough when
1184 whether you're willing to sell, or you'll be told that the shopkeeper
1286 and other meats. If you're worrie
[all...]
/seL4-refos-master/kernel/manual/parts/
H A Dapi.tex98 functionality: if this is \texttt{true}, the caller should not attempt to re-use \texttt{bp\_num}

Completed in 147 milliseconds

12