/external/eigen/bench/perf_monitoring/ |
D | make_plot.sh | 6 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/mesa3d/src/gallium/frontends/clover/core/ |
D | error.hpp | 61 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/ |
D | mk_gnuplot_script.sh | 2 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 …]
|
D | mk_new_gnuplot.sh | 2 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/libcups/test/ |
D | 4.2-cups-printer-ops.test | 26 # 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 …]
|
D | 4.3-job-ops.test | 28 # 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 …]
|
D | 4.1-requests.test | 21 # 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/python/cpython3/Lib/test/ |
D | test_imghdr.py | 47 self.assertEqual(imghdr.what(filename), expected) 49 self.assertEqual(imghdr.what(stream), expected) 52 self.assertEqual(imghdr.what(None, data), expected) 53 self.assertEqual(imghdr.what(None, bytearray(data)), expected) 59 self.assertEqual(imghdr.what(pathlib.Path(filename)), expected) 67 self.assertEqual(imghdr.what(None, b'eggs'), 'ham') 76 self.assertEqual(imghdr.what(stream), 'png') 81 imghdr.what() 83 imghdr.what(None) 85 imghdr.what(self.testfile, 1) [all …]
|
D | test_sndhdr.py | 19 what = sndhdr.what(filename) 20 self.assertNotEqual(what, None, filename) 21 self.assertSequenceEqual(what, expected) 22 self.assertEqual(what.filetype, expected[0]) 23 self.assertEqual(what.framerate, expected[1]) 24 self.assertEqual(what.nchannels, expected[2]) 25 self.assertEqual(what.nframes, expected[3]) 26 self.assertEqual(what.sampwidth, expected[4]) 30 what = sndhdr.what(filename) 32 dump = pickle.dumps(what, proto) [all …]
|
D | test_string.py | 209 s = Template('$who likes to eat a bag of $what worth $$100') 210 self.assertEqual(s.substitute(dict(who='tim', what='ham')), 216 s = Template('$who likes ${what} for ${meal}') 217 d = dict(who='tim', what='ham', meal='dinner') 220 dict(who='tim', what='ham')) 223 s = Template('$WHO likes ${WHAT} for ${MEAL}') 224 d = dict(WHO='tim', WHAT='ham', MEAL='dinner') 234 s = Template('$who likes to eat a bag of $$what worth $$100') 235 eq(s.substitute(dict(who='tim', what='ham')), 236 'tim likes to eat a bag of $what worth $100') [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/test/java/com/google/android/exoplayer2/testutil/ |
D | FakeClockTest.java | 81 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/ |
D | FakeClockTest.java | 81 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/vboot_reference/tests/ |
D | tpm_bootmode_tests.c | 63 char what[128]; in BootStateTest() local 83 snprintf(what, sizeof(what), in BootStateTest() 87 kBootStateSHA1Digests[index], what); in BootStateTest() 90 snprintf(what, sizeof(what), in BootStateTest() 93 TEST_PTR_EQ(last_in[1], NULL, what); in BootStateTest() 102 snprintf(what, sizeof(what), in BootStateTest() 106 kBootStateSHA1Digests[index], what); in BootStateTest() 109 snprintf(what, sizeof(what), in BootStateTest() 112 TEST_PTR_EQ(last_in[1], NULL, what); in BootStateTest() 121 snprintf(what, sizeof(what), in BootStateTest() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/ |
D | SystemHandlerWrapper.java | 47 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_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/ |
D | SystemHandlerWrapper.java | 47 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/ |
D | default-synthesize-1.m | 12 @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 …]
|
D | default-synthesize.m | 9 @property (retain) NSString* what; property 14 @synthesize howMany, what; 21 @property (nonatomic, retain) NSString* what; property 26 @synthesize howMany, what; 34 - (NSString*) what { method in objc_default_synthesize_properties 35 return self.what; 43 @property (nonatomic, retain) NSString* what; property 48 @synthesize howMany, what; 56 // - (NSString*) what 58 if (self.what != value) { [all …]
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/ |
D | SystemHandlerWrapper.java | 37 public Message obtainMessage(int what) { in obtainMessage() argument 38 return handler.obtainMessage(what); in obtainMessage() 42 public Message obtainMessage(int what, @Nullable Object obj) { in obtainMessage() argument 43 return handler.obtainMessage(what, obj); in obtainMessage() 47 public Message obtainMessage(int what, int arg1, int arg2) { in obtainMessage() argument 48 return handler.obtainMessage(what, arg1, arg2); in obtainMessage() 52 public Message obtainMessage(int what, int arg1, int arg2, @Nullable Object obj) { in obtainMessage() argument 53 return handler.obtainMessage(what, arg1, arg2, obj); in obtainMessage() 57 public boolean sendEmptyMessage(int what) { in sendEmptyMessage() argument 58 return handler.sendEmptyMessage(what); in sendEmptyMessage() [all …]
|
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowLegacyMessageTest.java | 66 m.what = 24; in testCopyFrom() 75 assertThat(m2.what).isEqualTo(m.what); in testCopyFrom() 97 int what = 10; in testObtainWithHandlerAndWhat() local 98 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat() 101 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerAndWhat() 108 int what = 10; in testObtainWithHandlerWhatAndObject() local 110 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject() 113 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerWhatAndObject() 121 int what = 2; in testObtainWithHandlerWhatAndTwoArgs() local 124 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | FakeClock.java | 187 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_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | FakeClock.java | 187 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/python/cpython2/Lib/test/ |
D | test_imghdr.py | 41 self.assertEqual(imghdr.what(filename), expected) 43 self.assertEqual(imghdr.what(ufilename), expected) 45 self.assertEqual(imghdr.what(stream), expected) 48 self.assertEqual(imghdr.what(None, data), expected) 56 self.assertEqual(imghdr.what(None, b'eggs'), 'ham') 65 self.assertEqual(imghdr.what(stream), 'png') 70 imghdr.what() 72 imghdr.what(None) 74 imghdr.what(self.testfile, 1) 77 imghdr.what(f.fileno()) [all …]
|
D | test_string.py | 241 s = Template('$who likes to eat a bag of $what worth $$100') 242 self.assertEqual(s.substitute(dict(who='tim', what='ham')), 248 s = Template('$who likes ${what} for ${meal}') 249 d = dict(who='tim', what='ham', meal='dinner') 252 dict(who='tim', what='ham')) 256 s = Template('$who likes to eat a bag of $$what worth $$100') 257 eq(s.substitute(dict(who='tim', what='ham')), 258 'tim likes to eat a bag of $what worth $100') 260 eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') 287 s = Template('$who likes ${what} for ${meal}') [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowMessageTest.java | 62 m.what = 24; in testCopyFrom() 71 assertThat(m2.what).isEqualTo(m.what); in testCopyFrom() 93 int what = 10; in testObtainWithHandlerAndWhat() local 94 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat() 97 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerAndWhat() 104 int what = 10; in testObtainWithHandlerWhatAndObject() local 106 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject() 109 assertThat(m.what).isEqualTo(what); in testObtainWithHandlerWhatAndObject() 117 int what = 2; in testObtainWithHandlerWhatAndTwoArgs() local 120 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-debug.hh | 93 #define DEBUG_LEVEL_ENABLED(WHAT, LEVEL) (_hb_debug ((LEVEL), HB_DEBUG_##WHAT)) argument 94 #define DEBUG_ENABLED(WHAT) (DEBUG_LEVEL_ENABLED (WHAT, 0)) argument 121 _hb_debug_msg_va (const char *what, 130 _hb_debug_msg_va (const char *what, in _hb_debug_msg_va() argument 142 fprintf (stderr, "%-10s", what ? what : ""); in _hb_debug_msg_va() 179 _hb_debug_msg_va<0> (const char *what HB_UNUSED, in _hb_debug_msg_va() 189 _hb_debug_msg (const char *what, 198 _hb_debug_msg (const char *what, in _hb_debug_msg() argument 209 _hb_debug_msg_va<max_level> (what, obj, func, indented, level, level_dir, message, ap); in _hb_debug_msg() 213 _hb_debug_msg<0> (const char *what HB_UNUSED, [all …]
|