Home
last modified time | relevance | path

Searched full:what (Results 1 – 25 of 16966) sorted by relevance

12345678910>>...679

/external/eigen/bench/perf_monitoring/
Dmake_plot.sh6 WHAT=$1
18 echo $header > $WHAT.out.header
19 cat $WHAT.out >> $WHAT.out.header
22 echo "set title '$WHAT'" > $WHAT.gnuplot
23 echo "set key autotitle columnhead outside " >> $WHAT.gnuplot
24 echo "set xtics rotate 1" >> $WHAT.gnuplot
26 echo "set term pdf color rounded enhanced fontscale 0.35 size 7in,5in" >> $WHAT.gnuplot
27 echo set output "'"$WHAT.pdf"'" >> $WHAT.gnuplot
30 echo "plot for [col=2:$col+1] '$WHAT.out.header' using 0:col:xticlabels(1) with lines" >> $WHAT.gnu…
31 echo " " >> $WHAT.gnuplot
[all …]
/external/sdv/vsomeip/third_party/boost/regex/test/named_subexpressions/
Dnamed_subexpressions_test.cpp55 boost::match_results<const charT*> what; in test_named_subexpressions() local
56 if(regex_search(t, what, expression)) in test_named_subexpressions()
58 BOOST_CHECK(what.length(1) == 3); in test_named_subexpressions()
59 BOOST_CHECK(what.length(one) == 3); in test_named_subexpressions()
60 BOOST_CHECK(what.length(s_one) == 3); in test_named_subexpressions()
61 BOOST_CHECK(what.length(c_one) == 3); in test_named_subexpressions()
62 BOOST_CHECK(what.length(cs_one) == 3); in test_named_subexpressions()
63 BOOST_CHECK(what.position(1) == 2); in test_named_subexpressions()
64 BOOST_CHECK(what.position(one) == 2); in test_named_subexpressions()
65 BOOST_CHECK(what.position(s_one) == 2); in test_named_subexpressions()
[all …]
/external/mesa3d/src/gallium/frontends/clover/core/
Derror.hpp61 error(cl_int code, std::string what = "") : in error() argument
62 std::runtime_error(what), code(code) { in error()
75 invalid_build_options_error(const std::string &what = "") : in invalid_build_options_error() argument
76 error(CL_INVALID_BUILD_OPTIONS, what) {} in invalid_build_options_error()
81 build_error(const std::string &what = "") : in build_error() argument
82 error(CL_BUILD_PROGRAM_FAILURE, what) {} in build_error()
91 invalid_object_error(std::string what = "") : in invalid_object_error() argument
92 error(CL_INVALID_COMMAND_QUEUE, what) {} in invalid_object_error()
98 invalid_object_error(std::string what = "") : in invalid_object_error() argument
99 error(CL_INVALID_CONTEXT, what) {} in invalid_object_error()
[all …]
/external/eigen/bench/btl/data/
Dmk_gnuplot_script.sh2 WHAT=$1
4 echo $WHAT script generation
5 cat $WHAT.hh > $WHAT.gnuplot
7 DATA_FILE=`find $DIR -name "*.dat" | grep $WHAT`
9 echo plot \\ >> $WHAT.gnuplot
22 …BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDU…
23 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot
26 BASE=${LAST##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC…
27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot
29 #echo set term postscript color >> $WHAT.gnuplot
[all …]
Dmk_new_gnuplot.sh2 WHAT=$1
5 cat ../gnuplot_common_settings.hh > ${WHAT}.gnuplot
7 echo "set title " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 2` >> $WHAT.gnup…
8 echo "set xlabel " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 3` " offset 0,0…
9 echo "set xrange [" `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 4` "]" >> $WHA…
13 echo "set xrange [2:16]" >> $WHAT.gnuplot
14 echo "set nologscale" >> $WHAT.gnuplot
21 echo set term postscript color rounded enhanced >> $WHAT.gnuplot
22 echo set output "'"../${DIR}/$WHAT.ps"'" >> $WHAT.gnuplot
24 # echo set term svg color rounded enhanced >> $WHAT.gnuplot
[all …]
/external/gmmlib/Source/GmmLib/Utility/GmmLog/spdlog/details/
Dline_logger_impl.h56 inline void spdlog::details::line_logger::write(const char* what) in write() argument
59 _log_msg.raw << what; in write()
73 … spdlog_ex(fmt::format("formatting error while processing format string '{}': {}", fmt, e.what())); in write()
81 inline spdlog::details::line_logger& spdlog::details::line_logger::operator<<(const char* what)
84 _log_msg.raw << what;
88 …ine spdlog::details::line_logger& spdlog::details::line_logger::operator<<(const std::string& what)
91 _log_msg.raw << what;
95 inline spdlog::details::line_logger& spdlog::details::line_logger::operator<<(int what)
98 _log_msg.raw << what;
102 inline spdlog::details::line_logger& spdlog::details::line_logger::operator<<(unsigned int what)
[all …]
Dline_logger_fwd.h44 void write(const char* what);
52 line_logger& operator<<(const char* what);
53 line_logger& operator<<(const std::string& what);
54 line_logger& operator<<(int what);
55 line_logger& operator<<(unsigned int what);
56 line_logger& operator<<(long what);
57 line_logger& operator<<(unsigned long what);
58 line_logger& operator<<(long long what);
59 line_logger& operator<<(unsigned long long what);
60 line_logger& operator<<(double what);
[all …]
/external/sdv/vsomeip/third_party/boost/regex/test/pathology/
Drecursion_test.cpp36 boost::smatch what; in cpp_main() local
43 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
44 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
45 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
46 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
47 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
48 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
49 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
50 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
51 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/time/time.zone/time.zone.timezone/time.zone.members/
Dto_sys.pass.cpp80 // Pick an historic date where it's well known what the time zone rules were. in test_nonexistent()
92 [[maybe_unused]] std::string_view what = in test_nonexistent() local
98 e.what() == what, in test_nonexistent()
99 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
106 [[maybe_unused]] std::string_view what = in test_nonexistent() local
112 e.what() == what, in test_nonexistent()
113 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
120 [[maybe_unused]] std::string_view what = in test_nonexistent() local
126 e.what() == what, in test_nonexistent()
127 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/time/time.zone/time.zone.timezone/time.zone.members/
Dto_sys.pass.cpp80 // Pick an historic date where it's well known what the time zone rules were. in test_nonexistent()
92 [[maybe_unused]] std::string_view what = in test_nonexistent() local
98 e.what() == what, in test_nonexistent()
99 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
106 [[maybe_unused]] std::string_view what = in test_nonexistent() local
112 e.what() == what, in test_nonexistent()
113 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
120 [[maybe_unused]] std::string_view what = in test_nonexistent() local
126 e.what() == what, in test_nonexistent()
127 … TEST_WRITE_CONCATENATED("Expected exception\n", what, "\n\nActual exception\n", e.what(), '\n')); in test_nonexistent()
[all …]
/external/libcups/test/
D4.2-cups-printer-ops.test26 # What statuses are OK?
29 # What attributes do we expect?
47 # What statuses are OK?
50 # What attributes do we expect?
68 # What statuses are OK?
71 # What attributes do we expect?
89 # What statuses are OK?
92 # What attributes do we expect?
115 # What statuses are OK?
118 # What attributes do we expect?
[all …]
D4.3-job-ops.test28 # What statuses are OK?
48 # What statuses are OK?
51 # What attributes do we expect?
71 # What statuses are OK?
74 # What attributes do we expect?
101 # What statuses are OK?
104 # What attributes do we expect?
125 # What statuses are OK?
128 # What attributes do we expect?
152 # What statuses are OK?
[all …]
D4.1-requests.test21 # What statuses are OK?
24 # What attributes do we expect?
39 # What statuses are OK?
42 # What attributes do we expect?
57 # What statuses are OK?
60 # What attributes do we expect?
76 # What statuses are OK?
79 # What attributes do we expect?
95 # What statuses are OK?
98 # What attributes do we expect?
[all …]
/external/sdv/vsomeip/third_party/boost/regex/doc/
Dregex_grep.qbk61 contains information on what matched, and calls the predicate /foo/, passing the
132 bool operator()(const smatch& what)
134 // what[0] contains the whole string
135 // what[5] contains the class name.
136 // what[6] contains the template specialisation if any.
138 … m[std::string(what[5].first, what[5].second) + std::string(what[6].first, what[6].second)] =
139 what[5].first - base;
189 bool grep_callback(const boost::smatch& what)
191 // what[0] contains the whole string
192 // what[5] contains the class name.
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/thread/futures/futures.future_error/
Dwhat.pass.cpp11 // VC Runtime's std::exception::what() method is not marked as noexcept, so
19 // const char* what() const noexcept;
29 ASSERT_NOEXCEPT(std::declval<std::future_error const&>().what()); in main()
30 ASSERT_SAME_TYPE(decltype(std::declval<std::future_error const&>().what()), char const*); in main()
36 [[maybe_unused]] char const* what = f.what(); in main() local
37 LIBCPP_ASSERT(what == std::string_view{"The associated promise has been destructed prior " in main()
42 [[maybe_unused]] char const* what = f.what(); in main() local
43 LIBCPP_ASSERT(what == std::string_view{"The future has already been retrieved from " in main()
48 [[maybe_unused]] char const* what = f.what(); in main() local
49 LIBCPP_ASSERT(what == std::string_view{"The state of the promise has already been set."}); in main()
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/thread/futures/futures.future_error/
Dwhat.pass.cpp11 // VC Runtime's std::exception::what() method is not marked as noexcept, so
19 // const char* what() const noexcept;
29 ASSERT_NOEXCEPT(std::declval<std::future_error const&>().what()); in main()
30 ASSERT_SAME_TYPE(decltype(std::declval<std::future_error const&>().what()), char const*); in main()
36 [[maybe_unused]] char const* what = f.what(); in main() local
37 LIBCPP_ASSERT(what == std::string_view{"The associated promise has been destructed prior " in main()
42 [[maybe_unused]] char const* what = f.what(); in main() local
43 LIBCPP_ASSERT(what == std::string_view{"The future has already been retrieved from " in main()
48 [[maybe_unused]] char const* what = f.what(); in main() local
49 LIBCPP_ASSERT(what == std::string_view{"The state of the promise has already been set."}); in main()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/test/java/com/google/android/exoplayer2/testutil/
DFakeClockTest.java81 handler.obtainMessage(/* what= */ 1).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
82 handler.obtainMessage(/* what= */ 2, /* obj= */ testObject).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
83 handler.obtainMessage(/* what= */ 3, /* arg1= */ 99, /* arg2= */ 44).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
85 .obtainMessage(/* what= */ 4, /* arg1= */ 88, /* arg2= */ 33, /* obj=*/ testObject) in createHandler_obtainMessageSendToTarget_triggersMessage()
92 new MessageData(/* what= */ 1, /* arg1= */ 0, /* arg2= */ 0, /* obj=*/ null), in createHandler_obtainMessageSendToTarget_triggersMessage()
93 new MessageData(/* what= */ 2, /* arg1= */ 0, /* arg2= */ 0, /* obj=*/ testObject), in createHandler_obtainMessageSendToTarget_triggersMessage()
94 new MessageData(/* what= */ 3, /* arg1= */ 99, /* arg2= */ 44, /* obj=*/ null), in createHandler_obtainMessageSendToTarget_triggersMessage()
95 new MessageData(/* what= */ 4, /* arg1= */ 88, /* arg2= */ 33, /* obj=*/ testObject)) in createHandler_obtainMessageSendToTarget_triggersMessage()
107 handler.sendEmptyMessage(/* what= */ 1); in createHandler_sendEmptyMessage_triggersMessageAtCorrectTime()
108 handler.sendEmptyMessageAtTime(/* what= */ 2, /* uptimeMs= */ fakeClock.uptimeMillis() + 60); in createHandler_sendEmptyMessage_triggersMessageAtCorrectTime()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/test/java/com/google/android/exoplayer2/testutil/
DFakeClockTest.java81 handler.obtainMessage(/* what= */ 1).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
82 handler.obtainMessage(/* what= */ 2, /* obj= */ testObject).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
83 handler.obtainMessage(/* what= */ 3, /* arg1= */ 99, /* arg2= */ 44).sendToTarget(); in createHandler_obtainMessageSendToTarget_triggersMessage()
85 .obtainMessage(/* what= */ 4, /* arg1= */ 88, /* arg2= */ 33, /* obj=*/ testObject) in createHandler_obtainMessageSendToTarget_triggersMessage()
92 new MessageData(/* what= */ 1, /* arg1= */ 0, /* arg2= */ 0, /* obj=*/ null), in createHandler_obtainMessageSendToTarget_triggersMessage()
93 new MessageData(/* what= */ 2, /* arg1= */ 0, /* arg2= */ 0, /* obj=*/ testObject), in createHandler_obtainMessageSendToTarget_triggersMessage()
94 new MessageData(/* what= */ 3, /* arg1= */ 99, /* arg2= */ 44, /* obj=*/ null), in createHandler_obtainMessageSendToTarget_triggersMessage()
95 new MessageData(/* what= */ 4, /* arg1= */ 88, /* arg2= */ 33, /* obj=*/ testObject)) in createHandler_obtainMessageSendToTarget_triggersMessage()
107 handler.sendEmptyMessage(/* what= */ 1); in createHandler_sendEmptyMessage_triggersMessageAtCorrectTime()
108 handler.sendEmptyMessageAtTime(/* what= */ 2, /* uptimeMs= */ fakeClock.uptimeMillis() + 60); in createHandler_sendEmptyMessage_triggersMessageAtCorrectTime()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DSystemHandlerWrapper.java47 public boolean hasMessages(int what) { in hasMessages() argument
48 return handler.hasMessages(what); in hasMessages()
52 public Message obtainMessage(int what) { in obtainMessage() argument
53 return obtainSystemMessage().setMessage(handler.obtainMessage(what), /* handler= */ this); in obtainMessage()
57 public Message obtainMessage(int what, @Nullable Object obj) { in obtainMessage() argument
58 return obtainSystemMessage().setMessage(handler.obtainMessage(what, obj), /* handler= */ this); in obtainMessage()
62 public Message obtainMessage(int what, int arg1, int arg2) { in obtainMessage() argument
64 .setMessage(handler.obtainMessage(what, arg1, arg2), /* handler= */ this); in obtainMessage()
68 public Message obtainMessage(int what, int arg1, int arg2, @Nullable Object obj) { in obtainMessage() argument
70 .setMessage(handler.obtainMessage(what, arg1, arg2, obj), /* handler= */ this); in obtainMessage()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DSystemHandlerWrapper.java47 public boolean hasMessages(int what) { in hasMessages() argument
48 return handler.hasMessages(what); in hasMessages()
52 public Message obtainMessage(int what) { in obtainMessage() argument
53 return obtainSystemMessage().setMessage(handler.obtainMessage(what), /* handler= */ this); in obtainMessage()
57 public Message obtainMessage(int what, @Nullable Object obj) { in obtainMessage() argument
58 return obtainSystemMessage().setMessage(handler.obtainMessage(what, obj), /* handler= */ this); in obtainMessage()
62 public Message obtainMessage(int what, int arg1, int arg2) { in obtainMessage() argument
64 .setMessage(handler.obtainMessage(what, arg1, arg2), /* handler= */ this); in obtainMessage()
68 public Message obtainMessage(int what, int arg1, int arg2, @Nullable Object obj) { in obtainMessage() argument
70 .setMessage(handler.obtainMessage(what, arg1, arg2, obj), /* handler= */ this); in obtainMessage()
[all …]
/external/clang/test/SemaObjC/
Ddefault-synthesize-1.m12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing pr… property
16 //@synthesize howMany, what;
22 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is syn… property
26 //@synthesize howMany, what;
33 - (NSString*) what { method
42 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synt… property
46 //@synthesize howMany, what;
53 // - (NSString*) what
65 @property (retain) NSString* what; property
69 //@synthesize howMany, what; // REM: Redundant anyway
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowLegacyMessageTest.java63 m.what = 24; in testCopyFrom()
72 assertThat(m2.what).isEqualTo(m.what); in testCopyFrom()
94 int what = 10; in testObtainWithHandlerAndWhat() local
95 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat()
98 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerAndWhat()
105 int what = 10; in testObtainWithHandlerWhatAndObject() local
107 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject()
110 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerWhatAndObject()
118 int what = 2; in testObtainWithHandlerWhatAndTwoArgs() local
121 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs()
[all …]
/external/pytorch/c10/test/util/
Dlogging_test.cpp40 auto errStr = std::string(err.what()); in TEST()
182 std::string what = error->what(); in TEST() local
184 EXPECT_TRUE(what.find("c10_test::f1()") != std::string::npos) << what; in TEST()
185 EXPECT_TRUE(what.find("c10_test::f2()") != std::string::npos) << what; in TEST()
186 EXPECT_TRUE(what.find("c10_test::f3()") != std::string::npos) << what; in TEST()
188 // what() should be recomputed. in TEST()
190 what = error->what(); in TEST()
191 EXPECT_TRUE(what.find("c10_test::f1()") != std::string::npos) << what; in TEST()
192 EXPECT_TRUE(what.find("c10_test::f2()") != std::string::npos) << what; in TEST()
193 EXPECT_TRUE(what.find("c10_test::f3()") != std::string::npos) << what; in TEST()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DFakeClock.java187 private synchronized void removePendingHandlerMessages(ClockHandler handler, int what) { in removePendingHandlerMessages() argument
190 if (message.handler.equals(handler) && message.what == what) { in removePendingHandlerMessages()
194 handler.handler.removeMessages(what); in removePendingHandlerMessages()
208 private synchronized boolean hasPendingMessage(ClockHandler handler, int what) { in hasPendingMessage() argument
211 if (message.handler.equals(handler) && message.what == what) { in hasPendingMessage()
215 return handler.handler.hasMessages(what); in hasPendingMessage()
251 .obtainMessage(message.what, message.arg1, message.arg2, message.obj) in maybeTriggerMessage()
282 private final int what; field in FakeClock.HandlerMessage
290 int what, in HandlerMessage() argument
299 this.what = what; in HandlerMessage()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DFakeClock.java187 private synchronized void removePendingHandlerMessages(ClockHandler handler, int what) { in removePendingHandlerMessages() argument
190 if (message.handler.equals(handler) && message.what == what) { in removePendingHandlerMessages()
194 handler.handler.removeMessages(what); in removePendingHandlerMessages()
208 private synchronized boolean hasPendingMessage(ClockHandler handler, int what) { in hasPendingMessage() argument
211 if (message.handler.equals(handler) && message.what == what) { in hasPendingMessage()
215 return handler.handler.hasMessages(what); in hasPendingMessage()
251 .obtainMessage(message.what, message.arg1, message.arg2, message.obj) in maybeTriggerMessage()
282 private final int what; field in FakeClock.HandlerMessage
290 int what, in HandlerMessage() argument
299 this.what = what; in HandlerMessage()
[all …]

12345678910>>...679