/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/valgrind/none/tests/s390x/ |
D | icm.c | 35 #define test(what, offset) do { \ in main() argument 36 icm(&a[0+offset], 0, what); cc = get_cc(); \ in main() 37 icm(&a[1+offset+cc], 1, what); cc = get_cc(); \ in main() 38 icm(&a[2+offset+cc], 2, what); cc = get_cc(); \ in main() 39 icm(&a[3+offset+cc], 3, what); cc = get_cc(); \ in main() 40 icm(&a[4+offset+cc], 4, what); cc = get_cc(); \ in main() 41 icm(&a[5+offset+cc], 5, what); cc = get_cc(); \ in main() 42 icm(&a[6+offset+cc], 6, what); cc = get_cc(); \ in main() 43 icm(&a[7+offset+cc], 7, what); cc = get_cc(); \ in main() 44 icm(&a[8+offset+cc], 8, what); cc = get_cc(); \ in main() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowHandler.java | 66 public Message obtainMessage(int what) { in obtainMessage() argument 67 return obtainMessage(what, null); in obtainMessage() 71 public Message obtainMessage(int what, Object obj) { in obtainMessage() argument 72 return obtainMessage(what, 0, 0, obj); in obtainMessage() 76 public Message obtainMessage(int what, int arg1, int arg2) { in obtainMessage() argument 77 return obtainMessage(what, arg1, arg2, null); in obtainMessage() 81 public Message obtainMessage(int what, int arg1, int arg2, Object obj) { in obtainMessage() argument 83 message.what = what; in obtainMessage() 121 public final boolean sendEmptyMessage(int what) { in sendEmptyMessage() argument 122 return sendEmptyMessageDelayed(what, 0L); in sendEmptyMessage() [all …]
|
D | ShadowMessage.java | 55 message.what = m.what; in copyFrom() 72 public static Message obtain(Handler h, int what) { in obtain() argument 74 m.what = what; in obtain() 79 public static Message obtain(Handler h, int what, Object obj) { in obtain() argument 80 Message m = obtain(h, what); in obtain() 86 public static Message obtain(Handler h, int what, int arg1, int arg2) { in obtain() argument 87 Message m = obtain(h, what); in obtain() 94 public static Message obtain(Handler h, int what, int arg1, int arg2, Object obj) { in obtain() argument 95 Message m = obtain(h, what, arg1, arg2); in obtain()
|
D | ShadowSpannableString.java | 28 public void setSpan(Object what, int start, int end, int flags) { in setSpan() argument 29 spans.put(what, new SpanHolder(start, end, flags) ); in setSpan() 33 public void removeSpan(Object what) { in removeSpan() argument 34 spans.remove(what); in removeSpan() 56 public int getSpanStart(Object what) { in getSpanStart() argument 57 SpanHolder spanHolder = spans.get(what); in getSpanStart() 66 public int getSpanEnd(Object what) { in getSpanEnd() argument 67 SpanHolder spanHolder = spans.get(what); in getSpanEnd()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | MessageTest.java | 56 m.what = 24; in testCopyFrom() 65 assertThat(m2.what, equalTo(m.what)); in testCopyFrom() 86 int what = 10; in testObtainWithHandlerAndWhat() local 87 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat() 90 assertThat(m.what, equalTo(what)); in testObtainWithHandlerAndWhat() 97 int what = 10; in testObtainWithHandlerWhatAndObject() local 99 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject() 102 assertThat(m.what, equalTo(what)); in testObtainWithHandlerWhatAndObject() 110 int what = 2; in testObtainWithHandlerWhatAndTwoArgs() local 113 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs() [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/ |
D | LOC.py | 25 def _exponent_of(what, desc): argument 28 if what // _pows[i] == 0L: 35 def _float_to_tuple(what): argument 36 if what < 0: 38 what *= -1 41 what = long(round(what * 3600000)) 42 degrees = int(what // 3600000) 43 what -= degrees * 3600000 44 minutes = int(what // 60000) 45 what -= minutes * 60000 [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/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/toybox/toys/pending/ |
D | file.c | 173 char *what = 0; in do_regular_file() local 178 for (what = s; (s-toybuf)<len && !isspace(*s); s++); in do_regular_file() 187 if (!what) what = "UTF-8 text"; in do_regular_file() 189 what = "data"; in do_regular_file() 194 xputs(what ? what : "ASCII text"); in do_regular_file() 201 char *what = "unknown"; in do_file() local 205 if (!fstat(fd, &sb)) what = "cannot open"; in do_file() 207 if (sb.st_size == 0) what = "empty"; in do_file() 212 } else if (S_ISBLK(sb.st_mode)) what = "block special"; in do_file() 213 else if (S_ISCHR(sb.st_mode)) what = "character special"; in do_file() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 60 // Minimum search size no matter what the passed in value. in vp9_init_search_range() 833 const struct buf_2d *const what = &x->plane[0].src; in calc_int_cost_list() local 844 cost_list[0] = fn_ptr->vf(what->buf, what->stride, in calc_int_cost_list() 852 cost_list[i + 1] = fn_ptr->vf(what->buf, what->stride, in calc_int_cost_list() 866 cost_list[i + 1] = fn_ptr->vf(what->buf, what->stride, in calc_int_cost_list() 899 const struct buf_2d *const what = &x->plane[0].src; in vp9_pattern_search() local 913 bestsad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() 929 thissad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() 940 thissad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() 972 thissad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() [all …]
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | alice_in_wonderland.txt | 20 pictures or conversations in it, `and what is the use of a book,' 52 wonder what was going to happen next. First, she tried to look 53 down and make out what she was coming to, but it was too dark to 77 that's about the right distance--but then I wonder what Latitude 78 or Longitude I've got to?' (Alice had no idea what Latitude was, 87 have to ask them what the name of the country is, you know. 90 through the air! Do you think you could manage it?) `And what 183 `What a curious feeling!' said Alice; `I must be shutting up 192 going out altogether, like a candle. I wonder what I should be 193 like then?' And she tried to fancy what the flame of a candle is [all …]
|
/external/autotest/cli/ |
D | action_common.py | 204 def _add_remove_uh_to_topic(self, item, what): argument 205 """Adds the 'what' (such as users or hosts) to the 'item'""" 206 uhs = getattr(self, what) 210 op = '%s_%s_%s' % (self.topic, self.op_action, what) 213 **{'id': item, what: uhs}) # The data 214 setattr(self, 'good_%s' % what, uhs) 220 **{'id': item, what: good_uhs}) 221 setattr(self, 'good_%s' % what, good_uhs) 248 for what in plurals: 250 self._add_remove_uh_to_topic(item, what) [all …]
|
/external/valgrind/drd/tests/ |
D | thread_name_xml.stderr.exp | 38 <what>The object at address 0x........ is not a mutex.</what> 74 <what>The object at address 0x........ is not a mutex.</what> 110 <what>The object at address 0x........ is not a mutex.</what> 146 <what>The object at address 0x........ is not a mutex.</what> 182 <what>The object at address 0x........ is not a mutex.</what> 218 <what>The object at address 0x........ is not a mutex.</what> 254 <what>The object at address 0x........ is not a mutex.</what> 290 <what>The object at address 0x........ is not a mutex.</what> 326 <what>The object at address 0x........ is not a mutex.</what> 362 <what>The object at address 0x........ is not a mutex.</what>
|
/external/curl/docs/ |
D | BUGS | 12 1.3 What to report 45 1.3 What to report 48 understand what's wrong, what you expected to happen and how to repeat the 53 - what version of curl you're using (curl -V is fine) 57 - what URL you were working with (if possible), at least which protocol 59 and anything and everything else you think matters. Tell us what you 60 expected to happen, tell use what did happen, tell us how you could make it 86 you're using and what name resolving your libcurl uses. If you use SFTP or 111 feedback and help to understand what you've experienced and how to repeat a 142 what you can do to help them fix the problem.
|
/external/icu/icu4c/source/layout/ |
D | OpenTypeUtilities.cpp | 208 …eReference(const char *f, int l, const char *msg, const LETableReference *what, const void *ptr, s… in _debug_LETableReference() argument 211 fprintf(stderr, "%s:%d: LETableReference@0x%p: ", f, l, what); in _debug_LETableReference() 215 for(int depth=0;depth<10&&(what!=NULL);depth++) { in _debug_LETableReference() 219 if(!what->isValid()) { in _debug_LETableReference() 222 …stderr, "@%p: tag (%s) font (0x%p), [0x%p+0x%lx]\n", what, letagToStr(what->getTag(), tagbuf), wha… in _debug_LETableReference() 223 what->getAlias(), what->getLength()); in _debug_LETableReference() 225 what = what->getParent(); in _debug_LETableReference()
|
/external/curl/tests/libtest/ |
D | lib586.c | 42 const char *what; in my_lock() local 50 what = "share"; in my_lock() 53 what = "dns"; in my_lock() 56 what = "cookie"; in my_lock() 59 what = "ssl_session"; in my_lock() 65 printf("lock: %-6s [%s]: %d\n", what, user->text, user->counter); in my_lock() 72 const char *what; in my_unlock() local 77 what = "share"; in my_unlock() 80 what = "dns"; in my_unlock() 83 what = "cookie"; in my_unlock() [all …]
|
/external/libweave/examples/provider/ |
D | event_task_runner.cc | 29 int16_t what, in AddIoCompletionTask() argument 32 flags |= (what & kReadable) ? EV_READ : 0; in AddIoCompletionTask() 33 flags |= (what & kWriteable) ? EV_WRITE : 0; in AddIoCompletionTask() 35 flags |= (what & kClosed) ? EV_CLOSED : 0; in AddIoCompletionTask() 71 int16_t /* what */, in EventHandler() 94 void EventTaskRunner::FdEventHandler(int fd, int16_t what, void* runner) { in FdEventHandler() argument 95 static_cast<EventTaskRunner*>(runner)->ProcessFd(fd, what); in FdEventHandler() 98 void EventTaskRunner::ProcessFd(int fd, int16_t what) { in ProcessFd() argument 102 callback.Run(fd, what, this); in ProcessFd()
|
/external/opencv3/samples/android/face-detection/jni/ |
D | DetectionBasedTracker_jni.cpp | 93 LOGD("nativeCreateObject caught cv::Exception: %s", e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 97 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 126 LOGD("nativeestroyObject caught cv::Exception: %s", e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() 130 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() 152 LOGD("nativeStart caught cv::Exception: %s", e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart() 156 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart() 178 LOGD("nativeStop caught cv::Exception: %s", e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop() 182 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop() 208 LOGD("nativeStop caught cv::Exception: %s", e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize() 212 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize() [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ |
D | sigbase.py | 29 def sigtime_to_posixtime(what): argument 30 if len(what) != 14: 32 year = int(what[0:4]) 33 month = int(what[4:6]) 34 day = int(what[6:8]) 35 hour = int(what[8:10]) 36 minute = int(what[10:12]) 37 second = int(what[12:14]) 41 def posixtime_to_sigtime(what): argument 42 return time.strftime('%Y%m%d%H%M%S', time.gmtime(what))
|
/external/tlsdate/src/ |
D | tlsdate.h | 209 void action_check_continuity (int fd, short what, void *arg); 210 void action_kickoff_time_sync (int fd, short what, void *arg); 211 void action_invalidate_time (int fd, short what, void *arg); 212 void action_stdin_wakeup (int fd, short what, void *arg); 213 void action_netlink_ready (int fd, short what, void *arg); 214 void action_run_tlsdate (int fd, short what, void *arg); 215 void action_sigterm (int fd, short what, void *arg); 216 void action_sync_and_save (int fd, short what, void *arg); 217 void action_time_set (int fd, short what, void *arg); 218 void action_tlsdate_status (int fd, short what, void *arg);
|
/external/harfbuzz_ng/src/ |
D | hb-private.hh | 634 #define DEBUG_LEVEL_ENABLED(WHAT, LEVEL) (_hb_debug ((LEVEL), HB_DEBUG_##WHAT)) argument 635 #define DEBUG_ENABLED(WHAT) (DEBUG_LEVEL_ENABLED (WHAT, 0)) argument 662 _hb_debug_msg_va (const char *what, 671 _hb_debug_msg_va (const char *what, in _hb_debug_msg_va() argument 683 fprintf (stderr, "%-10s", what ? what : ""); in _hb_debug_msg_va() 717 _hb_debug_msg_va<0> (const char *what HB_UNUSED, in _hb_debug_msg_va() 727 _hb_debug_msg (const char *what, 736 _hb_debug_msg (const char *what, in _hb_debug_msg() argument 747 _hb_debug_msg_va<max_level> (what, obj, func, indented, level, level_dir, message, ap); in _hb_debug_msg() 751 _hb_debug_msg<0> (const char *what HB_UNUSED, [all …]
|