/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/eigen/bench/perf_monitoring/gemm/ |
D | make_plot.sh | 6 WHAT=$1 17 echo $header > $WHAT.out.header 18 cat $WHAT.out >> $WHAT.out.header 21 echo "set title '$WHAT'" > $WHAT.gnuplot 22 echo "set key autotitle columnhead outside " >> $WHAT.gnuplot 23 echo "set xtics rotate 1" >> $WHAT.gnuplot 25 echo "set term pdf color rounded enhanced fontscale 0.35 size 7in,5in" >> $WHAT.gnuplot 26 echo set output "'"$WHAT.pdf"'" >> $WHAT.gnuplot 29 echo "plot for [col=2:$col+1] '$WHAT.out.header' using 0:col:xticlabels(1) with lines" >> $WHAT.gnu… 30 echo " " >> $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 | 45 self.assertEqual(imghdr.what(filename), expected) 47 self.assertEqual(imghdr.what(stream), expected) 50 self.assertEqual(imghdr.what(None, data), expected) 51 self.assertEqual(imghdr.what(None, bytearray(data)), expected) 57 self.assertEqual(imghdr.what(pathlib.Path(filename)), expected) 65 self.assertEqual(imghdr.what(None, b'eggs'), 'ham') 74 self.assertEqual(imghdr.what(stream), 'png') 79 imghdr.what() 81 imghdr.what(None) 83 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/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/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/llvm-project/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/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 | 94 #define DEBUG_LEVEL_ENABLED(WHAT, LEVEL) (_hb_debug ((LEVEL), HB_DEBUG_##WHAT)) argument 95 #define DEBUG_ENABLED(WHAT) (DEBUG_LEVEL_ENABLED (WHAT, 0)) argument 122 _hb_debug_msg_va (const char *what, 131 _hb_debug_msg_va (const char *what, in _hb_debug_msg_va() argument 143 fprintf (stderr, "%-10s", what ? what : ""); in _hb_debug_msg_va() 180 _hb_debug_msg_va<0> (const char *what HB_UNUSED, in _hb_debug_msg_va() 190 _hb_debug_msg (const char *what, 199 _hb_debug_msg (const char *what, in _hb_debug_msg() argument 210 _hb_debug_msg_va<max_level> (what, obj, func, indented, level, level_dir, message, ap); in _hb_debug_msg() 214 _hb_debug_msg<0> (const char *what HB_UNUSED, [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | dns_v1beta2.managedZones.html | 109 …"kind": "dns#managedZone", # Identifies what kind of resource this is. Value: the fixed string "dn… 118 …"kind": "dns#managedZoneForwardingConfig", # Identifies what kind of resource this is. Value: the … 122 …"kind": "dns#managedZoneForwardingConfigNameServerTarget", # Identifies what kind of resource this… 130 …"kind": "dns#managedZonePrivateVisibilityConfig", # Identifies what kind of resource this is. Valu… 133 …"kind": "dns#managedZonePrivateVisibilityConfigNetwork", # Identifies what kind of resource this i… 140 …"kind": "dns#managedZoneDnsSecConfig", # Identifies what kind of resource this is. Value: the fixe… 145 …"kind": "dns#dnsKeySpec", # Identifies what kind of resource this is. Value: the fixed string "dns… 149 "state": "A String", # Specifies whether DNSSEC is enabled, and what mode it is in. 153 …"kind": "dns#managedZonePeeringConfig", # Identifies what kind of resource this is. Value: the fix… 155 …"kind": "dns#managedZonePeeringConfigTargetNetwork", # Identifies what kind of resource this is. V… [all …]
|
/external/curl/docs/libcurl/opts/ |
D | CURLMOPT_SOCKETFUNCTION.3 | 26 CURLMOPT_SOCKETFUNCTION \- callback informed about what to wait for 33 int what, /* describes the socket */ 52 \fBwhat\fP argument is not CURL_POLL_REMOVE then it holds information about 53 what activity on this socket the application is supposed to 54 monitor. Subsequent calls to this callback might update the \fBwhat\fP bits 61 The \fBwhat\fP parameter informs the callback on the status of the given 78 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) 83 if(what == CURL_POLL_REMOVE) { 88 addsock(s, e, what, g); 91 setsock(fdp, s, e, what, g);
|
/external/libcxx/test/std/re/re.badexp/ |
D | regex_error.pass.cpp | 30 … assert(e.what() == std::string("The expression contained an invalid collating element name.")); in main() 35 … assert(e.what() == std::string("The expression contained an invalid character class name.")); in main() 40 … assert(e.what() == std::string("The expression contained an invalid escaped character, or a " in main() 46 assert(e.what() == std::string("The expression contained an invalid back reference.")); in main() 51 assert(e.what() == std::string("The expression contained mismatched [ and ].")); in main() 56 assert(e.what() == std::string("The expression contained mismatched ( and ).")); in main() 61 assert(e.what() == std::string("The expression contained mismatched { and }.")); in main() 66 … assert(e.what() == std::string("The expression contained an invalid range in a {} expression.")); in main() 71 assert(e.what() == std::string("The expression contained an invalid character range, " in main() 77 … assert(e.what() == std::string("There was insufficient memory to convert the expression into " in main() [all …]
|
/external/llvm-project/libcxx/test/std/re/re.badexp/ |
D | regex_error.pass.cpp | 29 … assert(e.what() == std::string("The expression contained an invalid collating element name.")); in main() 34 … assert(e.what() == std::string("The expression contained an invalid character class name.")); in main() 39 … assert(e.what() == std::string("The expression contained an invalid escaped character, or a " in main() 45 assert(e.what() == std::string("The expression contained an invalid back reference.")); in main() 50 assert(e.what() == std::string("The expression contained mismatched [ and ].")); in main() 55 assert(e.what() == std::string("The expression contained mismatched ( and ).")); in main() 60 assert(e.what() == std::string("The expression contained mismatched { and }.")); in main() 65 … assert(e.what() == std::string("The expression contained an invalid range in a {} expression.")); in main() 70 assert(e.what() == std::string("The expression contained an invalid character range, " in main() 76 … assert(e.what() == std::string("There was insufficient memory to convert the expression into " in main() [all …]
|
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/ |
D | FakeClock.java | 190 public Message obtainMessage(int what) { in obtainMessage() argument 191 return handler.obtainMessage(what); in obtainMessage() 195 public Message obtainMessage(int what, @Nullable Object obj) { in obtainMessage() argument 196 return handler.obtainMessage(what, obj); in obtainMessage() 200 public Message obtainMessage(int what, int arg1, int arg2) { in obtainMessage() argument 201 return handler.obtainMessage(what, arg1, arg2); in obtainMessage() 205 public Message obtainMessage(int what, int arg1, int arg2, @Nullable Object obj) { in obtainMessage() argument 206 return handler.obtainMessage(what, arg1, arg2, obj); in obtainMessage() 210 public boolean sendEmptyMessage(int what) { in sendEmptyMessage() argument 211 return handler.sendEmptyMessage(what); in sendEmptyMessage() [all …]
|