Home
last modified time | relevance | path

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

12345678910>>...250

/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/valgrind/none/tests/s390x/
Dicm.c35 #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/
DShadowHandler.java66 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 …]
DShadowMessage.java55 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()
DShadowSpannableString.java28 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/
DMessageTest.java56 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/
DLOC.py25 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/
Dtpm_bootmode_tests.c63 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/
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 …]
Ddefault-synthesize.m9 @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/
Dregex_error.pass.cpp29 … 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/
Dfile.c173 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/
Dvp9_mcomp.c60 // 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/
Dalice_in_wonderland.txt20 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/
Daction_common.py204 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/
Dthread_name_xml.stderr.exp38 <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/
DBUGS12 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/
DOpenTypeUtilities.cpp208 …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/
Dlib586.c42 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/
Devent_task_runner.cc29 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/
DDetectionBasedTracker_jni.cpp93 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/
Dsigbase.py29 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/
Dtlsdate.h209 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/
Dhb-private.hh634 #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 …]

12345678910>>...250