Searched refs:variable (Results 1 - 9 of 9) sorted by relevance
/gem5/src/mem/slicc/ast/ |
H A D | CheckAllocateStatementAST.py | 31 def __init__(self, slicc, variable): 33 self.variable = variable 36 return "[CheckAllocateStatementAst: %r]" % self.variable 39 # FIXME - check the type of the variable 41 # Make sure the variable is valid 42 self.variable.var 45 var = self.variable.var
|
H A D | IsValidPtrExprAST.py | 33 def __init__(self, slicc, variable, flag): 35 self.variable = variable 39 return "[IsValidPtrExprAST: %r]" % self.variable 42 # Make sure the variable is valid 45 var_type, var_code = self.variable.inline(True);
|
/gem5/src/sim/ |
H A D | mathexpr.hh | 99 return variable; 110 std::string variable; member in class:MathExpr::Node
|
H A D | mathexpr.cc | 130 // Match a variable 143 n->variable = expr; 158 return fn(n->variable);
|
/gem5/ext/pybind11/tests/ |
H A D | pybind11_tests.h | 20 #define TEST_SUBMODULE(name, variable) \ 23 void test_submodule_##name(py::module &variable)
|
/gem5/ext/pybind11/include/pybind11/ |
H A D | embed.h | 34 module (without quotes). The second parameter is the variable which will 46 #define PYBIND11_EMBEDDED_MODULE(name, variable) \ 64 void PYBIND11_CONCAT(pybind11_init_, name)(pybind11::module &variable)
|
/gem5/ext/pybind11/include/pybind11/detail/ |
H A D | common.h | 269 should not be in quotes. The second macro argument defines a variable of type 283 #define PYBIND11_MODULE(name, variable) \ 293 void PYBIND11_CONCAT(pybind11_init_, name)(pybind11::module &variable) 643 /// Ignore that a variable is unused in compiler warnings 742 // overload_cast requires variable templates: C++14 750 // MSVC 2015 only accepts this particular initialization syntax for this variable template.
|
/gem5/ext/googletest/googlemock/scripts/generator/cpp/ |
H A D | ast.py | 263 """Return a string that tries to reconstitute the variable decl.""" 410 """Type used for any variable (eg class, primitive, struct, etc).""" 447 # some sort of variable declaration, parameter, or return value. 801 # Must be declaring a variable. 941 # It's probably some sort of variable declaration. 1217 # is the variable declaration. 1223 # Must be variable declaration using the type prefixed with keyword. 1237 variable = var_token 1239 variable = next_token 1255 return self._CreateVariable(position, variable [all...] |
/gem5/ext/googletest/googlemock/test/ |
H A D | gmock-generated-matchers_test.cc | 877 MATCHER_P(ReferencesUncopyable, variable, "") { return &arg == &variable; } 1056 // EqualsSumOf() must be assignable to a EqualsSumOfMatcher variable. 1059 // EqualsSumOf(1) must be assignable to a EqualsSumOfMatcherP variable. 1063 // variable, and so on. 1080 // Avoid "unused variable" warnings.
|
Completed in 22 milliseconds