Searched refs:re (Results 76 - 100 of 107) sorted by relevance

12345

/gem5/ext/mcpat/regression/
H A Dverify_output.py49 import re
109 self.hierarchy_level = (len(re.match(r"\s*", name_string).group()) - 2) / 4
/gem5/util/batch/
H A Dsend.py30 import os, os.path, re, socket, sys
152 exprs.append(re.compile(arg))
/gem5/util/pbs/
H A Dsend.py31 import os, os.path, re, socket, sys
153 exprs.append(re.compile(arg))
H A Dpbs.py29 import os, popen2, re, sys
/gem5/ext/testlib/
H A Dloader.py69 import re
91 default_filepath_regex = re.compile(
H A Dhelper.py38 import re
380 if re.match(regex, line):
H A Dconfig.py72 import re
95 self.regex = re.compile(regex)
/gem5/util/stats/
H A Ddb.py29 import MySQLdb, re, string
180 statname = re.sub(':', '__', stat.name)
299 rx = re.compile(regex)
318 rx = re.compile(regex)
337 rx = re.compile(stat)
H A Dprofile.py248 import os, os.path, re
252 label_ex = re.compile(r'profile\.(.*).dat')
392 import getopt, re, sys
H A Dstats.py31 import re, sys, math
116 rx = re.compile(options.runs)
H A Dinfo.py30 import operator, re, types
411 formula = re.sub(':', '__', self.formula)
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1177 // FullMatch(str, re) returns true iff regular expression re matches
1179 // PartialMatch(str, re) returns true iff regular expression re
1184 static bool FullMatch(const ::std::string& str, const RE& re) { argument
1185 return FullMatch(str.c_str(), re);
1187 static bool PartialMatch(const ::std::string& str, const RE& re) { argument
1188 return PartialMatch(str.c_str(), re);
1193 static bool FullMatch(const ::string& str, const RE& re) { argument
1194 return FullMatch(str.c_str(), re);
1196 PartialMatch(const ::string& str, const RE& re) argument
[all...]
/gem5/src/arch/
H A Dmicro_asm.py33 import re
228 unescapeParamsRE = re.compile(r'(\\[\n;\\])')
249 # If there is a label and you're -not- in the assembler (which would be caught
/gem5/ext/pybind11/tests/
H A Dtest_numpy_dtypes.py1 import re
71 assert re.match('^NumPy type info missing for .*UnboundStruct.*$', str(excinfo.value))
/gem5/configs/common/
H A DSimulation.py135 import re
157 expr = re.compile('cpt\.simpoint_(\d+)_inst_(\d+)' +
191 expr = re.compile('cpt\.([0-9]+)')
291 import re
314 m = re.match("(\d+)\s+(\d+)", line)
323 m = re.match("([0-9\.e\-]+)\s+(\d+)", line)
617 # Initialization is complete. If we're not in control of simulation
618 # (that is, if we're a slave simulator acting as a component in another
619 # 'master' simulator) then we're done here. The other simulator will
689 # If we're takin
[all...]
/gem5/configs/example/
H A Dread_config.py55 import re
146 m = re.match('(.*)\.([^.\[]+)(\[(\d+)\])?', str)
271 m = re.match('(.*)\.([^.\[]+)(\[(\d+)\])?', port)
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py41 import re
224 # This is a dummy value to allow us to identify when we're successful.
727 match = re.match(r"(\d+)(:(\d+))?", self.options.revision)
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
908 # We'll need to upload the new content if we're adding a binary file
1004 match = re.match(r"diff --git a/(.*) b/.*$", line)
1013 match = re.match(r"index (\w+)\.\.", line)
1072 m = re.match("diff --git a/(\S+) b/(\S+)", line)
1213 we're using, and returns an instance of the appropriate class. Exit with an
1235 # Git has a command to test if you're i
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py41 import re
224 # This is a dummy value to allow us to identify when we're successful.
727 match = re.match(r"(\d+)(:(\d+))?", self.options.revision)
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
908 # We'll need to upload the new content if we're adding a binary file
1004 match = re.match(r"diff --git a/(.*) b/.*$", line)
1013 match = re.match(r"index (\w+)\.\.", line)
1072 m = re.match("diff --git a/(\S+) b/(\S+)", line)
1213 we're using, and returns an instance of the appropriate class. Exit with an
1235 # Git has a command to test if you're i
[all...]
/gem5/src/arch/mips/
H A Dpra_constants.hh113 Bitfield<25> re; member in namespace:MipsISA
/gem5/src/arch/riscv/
H A Dpra_constants.hh113 Bitfield<25> re; member in namespace:RiscvISA
/gem5/src/systemc/tests/systemc/compliance_1666/test001/
H A Dtest001.cpp30 //// Get warnings re-defining sc_object names, multiple threads created
61 bool wr, re; member in struct:Chan
/gem5/src/python/m5/util/
H A Dfdthelper.py43 import re
H A Djobfile.py347 import re
348 filt = re.compile(filt)
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc756 const std::string re = "re"; local
757 EXPECT_EQ("retail", a1.Perform(tuple<const std::string&>(re)));
798 const std::string re = "re"; local
799 EXPECT_EQ("retail->", a2.Perform(tuple<const std::string&>(re)));
/gem5/ext/ply/ply/
H A Dcpp.py69 import re
91 _trigraph_pat = re.compile(r'''\?\?[=/\'\(\)\!<>\-]''')

Completed in 68 milliseconds

12345