Searched refs:names (Results 26 - 50 of 53) sorted by relevance

123

/gem5/ext/ply/test/
H A Dyacc_unused_rule.py20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
H A Dyacc_uprec.py15 # dictionary of names
16 names = { } variable
20 names[t[1]] = t[3]
51 t[0] = names[t[1]]
H A Dyacc_uprec2.py15 # dictionary of names
16 names = { } variable
20 names[t[1]] = t[3]
51 t[0] = names[t[1]]
H A Dyacc_inf.py20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
H A Dyacc_notfunc.py20 # dictionary of names
21 names = { } variable
54 t[0] = names[t[1]]
/gem5/ext/ply/example/calc/
H A Dcalc.py51 # dictionary of names
52 names = { } variable
56 names[p[1]] = p[3]
87 p[0] = names[p[1]]
/gem5/ext/ply/example/calcdebug/
H A Dcalc.py51 # dictionary of names
52 names = { } variable
56 names[p[1]] = p[3]
87 p[0] = names[p[1]]
/gem5/ext/ply/example/unicalc/
H A Dcalc.py61 # dictionary of names
62 names = { } variable
66 names[p[1]] = p[3]
97 p[0] = names[p[1]]
/gem5/util/minorview/
H A Dparse.py20 # neither the name of the copyright holders nor the names of its
40 def list_parser(names):
44 elems = re.split(',', names)
64 print 'Non matching brackets in', names
/gem5/ext/ply/example/optcalc/
H A Dcalc.py62 # dictionary of names
63 names = { } variable
67 names[t[1]] = t[3]
99 t[0] = names[t[1]]
/gem5/ext/ply/example/newclasscalc/
H A Dcalc.py34 self.names = { }
111 self.names[p[1]] = p[3]
147 p[0] = self.names[p[1]]
/gem5/ext/ply/example/classcalc/
H A Dcalc.py31 self.names = { }
108 self.names[p[1]] = p[3]
144 p[0] = self.names[p[1]]
/gem5/tests/testing/
H A Dhelpers.py22 # neither the name of the copyright holders nor the names of its
142 def __init__(self, names=(), rex=()):
143 self.rules = [ FileIgnoreList.simple(n) for n in names ] + \
177 names=("ignore.txt", "foo/test.txt"),
H A Dtests.py22 # neither the name of the copyright holders nor the names of its
237 names=( variable in class:ClassicTest
247 names=( variable in class:ClassicTest
/gem5/util/stats/
H A Doutput.py11 # neither the name of the copyright holders nor the names of its
191 names = [ opt.name for opt in options ]
194 if names[0] == 'run':
195 names = names[1:]
198 basename = '%s-%s' % (name, ':'.join(names))
/gem5/src/arch/arm/
H A DArmPMU.py21 # neither the name of the copyright holders nor the names of its
50 self.names = listOfNames
56 for name in self.names:
/gem5/src/arch/x86/
H A Dintmessage.hh12 * neither the name of the copyright holders nor the names of its
65 static const char * const names[NumModes] = { member in namespace:X86ISA::DeliveryMode
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py205 def __init__(self, start, end, names):
207 self.names = names
210 return self._StringHelper(self.__class__.__name__, str(self.names))
246 names = [n or '<anonymous>' for n in self.namespace]
247 suffix += ' in ' + '::'.join(names)
491 names = []
497 names.append(t.name)
498 name = ''.join(names)
580 # Ensure that names hav
[all...]
/gem5/ext/ply/example/GardenSnake/
H A DGardenSnake.py340 names = []
346 names = []
350 names.append(child.name)
351 ass_list = [ast.AssName(name, 'OP_ASSIGN') for name in names]
/gem5/ext/pybind11/tests/
H A Dtest_numpy_dtypes.cpp241 py::list names, offsets, formats; local
243 names.append(py::str("a")); names.append(py::str("b")); dict["names"] = names;
248 list.append(py::dtype(names, formats, offsets, 20));
/gem5/src/mem/cache/prefetch/
H A DPrefetcher.py23 # neither the name of the copyright holders nor the names of its
54 self.names = listOfNames
58 for name in self.names:
481 for name in self.names:
/gem5/src/python/m5/util/
H A Djobfile.py11 # neither the name of the copyright holders nor the names of its
157 names = [ ]
160 names.append(opt.name)
161 self.name = ':'.join(names)
/gem5/src/python/m5/stats/
H A D__init__.py24 # neither the name of the copyright holders nor the names of its
281 names = [] variable
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h57 PyObject *names; member in struct:PyArrayDescr_Proxy
460 dtype(list names, list formats, list offsets, ssize_t itemsize) {
462 args["names"] = names;
489 return detail::array_descriptor_proxy(m_ptr)->names != nullptr;
505 // Recursively strip all void fields with empty names that are generated for
528 list names, formats, offsets; local
530 names.append(descr.name);
534 return dtype(names, formats, offsets, itemsize);
1104 list names, format
[all...]
/gem5/src/systemc/tests/
H A Dverify.py12 # neither the name of the copyright holders nor the names of its
537 names = []
540 if name in names:

Completed in 26 milliseconds

123