Searched refs:flag (Results 26 - 48 of 48) sorted by relevance

12

/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc1132 // given flag. For example, FlagToEnvVar("foo") will return
1134 static std::string FlagToEnvVar(const char* flag) {
1136 (Message() << GTEST_FLAG_PREFIX_ << flag).GetString();
1188 // the given flag; if it's not set, returns default_value.
1191 bool BoolFromGTestEnv(const char* flag, bool default_value) {
1193 return GTEST_GET_BOOL_FROM_ENV_(flag, default_value);
1195 const std::string env_var = FlagToEnvVar(flag);
1202 // variable corresponding to the given flag; if it isn't set or
1204 Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) {
1206 return GTEST_GET_INT32_FROM_ENV_(flag, default_valu
[all...]
H A Dgtest.cc186 // g_help_flag is true iff the --help flag or an equivalent form is
288 "This flag specifies the host name and the port number on which to stream "
289 "test results. Example: \"localhost:555\". The flag is effective only on "
295 "When this flag is specified, a failed assertion will throw an exception "
303 "This flag specifies the flagfile to read command-line flags from.");
411 // Functions for processing the gtest_output flag.
789 // the gtest_stack_trace_depth flag. The skip_count parameter
2414 // RUN_ALL_TESTS() starts. It is technically possible to check the flag
2416 // exception based on the flag's value:
2427 // However, the purpose of this flag i
5015 ParseFlagValue(const char* str, const char* flag, bool def_optional) argument
5053 ParseBoolFlag(const char* str, const char* flag, bool* value) argument
5070 ParseInt32Flag(const char* str, const char* flag, Int32* value) argument
5087 ParseStringFlag(const char* str, const char* flag, std::string* value) argument
[all...]
H A Dgtest-internal-inl.h77 // We don't want the users to modify this flag in the code, but want
108 // g_help_flag is true iff the --help flag or an equivalent form is
127 // Parses a string for an Int32 flag, in the form of "--flag=value".
129 // On success, stores the value of the flag in *value, and returns
132 const char* str, const char* flag, Int32* value);
135 // given --gtest_random_seed flag value.
369 // environment variable or a command line flag. E.g. you can set the
371 // the variable and the flag are present, the latter overrides the
375 // Functions for processing the gtest_output flag
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_filter_unittest.py34 the GTEST_FILTER environment variable or the --gtest_filter flag.
96 # The command line flag for specifying the test filters.
99 # The command line flag for including disabled tests.
114 # The command line flag to tell Google Test to output the list of tests it
229 """Tests the env variable or the command line flag to filter tests."""
280 # Next, tests using the command line flag.
567 """Tests that the filter flag overrides the filtering env. variable."""
591 """Tests that the shard file is created with the "list_tests" flag."""
608 'correct flag value for listing Google Test tests.')
628 for flag i
[all...]
/gem5/src/dev/
H A Ddma_device.cc155 Request::Flags flag)
174 gen.addr(), gen.size(), flag, masterId);
203 uint8_t *data, Tick delay, Request::Flags flag)
206 defaultSid, defaultSSid, delay, flag);
153 dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay, Request::Flags flag) argument
202 dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag) argument
H A Ddma_device.hh157 uint8_t *data, Tick delay, Request::Flags flag = 0);
162 Request::Flags flag = 0);
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report.cpp268 void sc_report::make_warnings_errors(bool flag) argument
271 warnings_are_errors = flag;
/gem5/src/gpu-compute/
H A Dgpu_static_inst.hh222 void setFlag(Flags flag) { _flags[flag] = true; } argument
/gem5/ext/googletest/googlemock/test/
H A Dgmock-nice-strict_test.cc73 virtual int DoThat(bool flag) = 0;
82 MOCK_METHOD1(DoThat, int(bool flag));
H A Dgmock-generated-actions_test.cc656 int Dummy(bool flag) { return flag? 1 : 0; } argument
H A Dgmock-actions_test.cc697 MOCK_METHOD1(IntFunc, int(bool flag)); // NOLINT
736 void VoidFunc(bool /* flag */) {}
/gem5/src/arch/arm/
H A Dtable_walker.cc534 Request::Flags flag = Request::PT_WALK; local
536 flag.set(Request::UNCACHEABLE);
540 flag.set(Request::SECURE);
545 sizeof(uint32_t), flag, L1, &doL1DescEvent,
566 Request::Flags flag = Request::PT_WALK; local
568 flag.set(Request::SECURE);
703 flag.set(Request::UNCACHEABLE);
711 sizeof(uint64_t), flag, start_lookup_level,
996 Request::Flags flag = Request::PT_WALK; local
998 flag
1535 Request::Flags flag = Request::PT_WALK; local
1700 Request::Flags flag = Request::PT_WALK; local
[all...]
/gem5/src/mem/cache/
H A Dbase.hh695 * @param pending_downgrade Whether the writable flag is to be removed
1131 * also sets the blocked flag in the slave interface.
1136 uint8_t flag = 1 << cause; local
1142 blocked |= flag;
1155 uint8_t flag = 1 << cause; local
1156 blocked &= ~flag;
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace.h154 // Also trace transitions between delta cycles if flag is true.
155 virtual void delta_cycles( bool flag );
/gem5/src/arch/arm/insts/
H A Dstatic_inst.cc331 void ArmStaticInst::printPFflags(std::ostream &os, int flag) const
337 ccprintf(os, "%s%s%s", flagtoprfop[(flag>>3)&3],
338 flagtotarget[(flag>>1)&3], flagtopolicy[flag&1]);
H A Dstatic_inst.hh185 void printPFflags(std::ostream &os, int flag) const;
/gem5/src/base/
H A Dcp_annotate.cc831 an->flag = f;
840 an->op, an->flag, an->sm, an->stq, an->time, an->data);
968 osbin->write((char*)&(an->flag), sizeof(an->flag));
1388 SERIALIZE_SCALAR(flag);
1401 UNSERIALIZE_SCALAR(flag);
H A Dcp_annotate.hh201 uint8_t flag; member in struct:CPA::AnnotateData
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h1790 arg &noconvert(bool flag = true) { flag_noconvert = flag; return *this; }
1792 arg &none(bool flag = true) { flag_none = flag; return *this; }
1827 arg_v &noconvert(bool flag = true) { arg::noconvert(flag); return *this; }
1830 arg_v &none(bool flag = true) { arg::none(flag); return *this; }
H A Dpybind11.h1740 bool &flag; member in struct:set_flag
1741 set_flag(bool &flag) : flag(flag) { flag = true; } argument
1742 ~set_flag() { flag = false; }
H A Dnumpy.h269 inline bool check_flags(const void* ptr, int flag) { argument
270 return (flag == (array_proxy(ptr)->flags & flag));
713 * dimensionality checking. Will throw if the array is missing the `writeable` flag. Use with
727 * underlying array have the `writable` flag. Use with care: the array must not be destroyed or
901 * dimensionality checking. Will throw if the array is missing the `writeable` flag. Use with
912 * array have the `writable` flag. Use with care: the array must not be destroyed or reshaped
1501 // Internal compiler error in MSVC 19.16.27025.1 (Visual Studio 2017 15.9.4), when compiling with "/permissive-" flag
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h187 // the given Google Test flag.
249 // GTEST_DECLARE_*() - declares a flag.
250 // GTEST_DEFINE_*() - defines a flag.
2540 // TODO(chandlerc): Find a better way to refactor flag and environment parsing
2546 // corresponding to the given Google Test flag.
2547 bool BoolFromGTestEnv(const char* flag, bool default_val);
2548 GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val);
2549 std::string StringFromGTestEnv(const char* flag, const char* default_val);
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py126 def addDebugFlag(self, flag):
127 self.debug_flags.add(flag)

Completed in 107 milliseconds

12