Home
last modified time | relevance | path

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

12345678910>>...282

/external/mesa3d/src/gallium/state_trackers/clover/core/
Derror.hpp56 error(cl_int code, std::string what = "") : in error() argument
57 std::runtime_error(what), code(code) { in error()
70 invalid_build_options_error(const std::string &what = "") : in invalid_build_options_error() argument
71 error(CL_INVALID_BUILD_OPTIONS, what) {} in invalid_build_options_error()
76 build_error(const std::string &what = "") : in build_error() argument
77 error(CL_BUILD_PROGRAM_FAILURE, what) {} in build_error()
86 invalid_object_error(std::string what = "") : in invalid_object_error() argument
87 error(CL_INVALID_COMMAND_QUEUE, what) {} in invalid_object_error()
93 invalid_object_error(std::string what = "") : in invalid_object_error() argument
94 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/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/eigen/bench/perf_monitoring/gemm/
Dmake_plot.sh6 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/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/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/python/cpython2/Lib/test/
Dtest_imghdr.py41 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 …]
Dtest_string.py241 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/libcxx/test/std/re/re.badexp/
Dregex_error.pass.cpp30 … 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/valgrind/drd/tests/
Dbar_bad_xml.stderr.exp-solaris37 <what>pthread_barrier_init: 'count' argument is zero: barrier 0x........</what>
64 <what>Barrier reinitialization: barrier 0x........</what>
84 <what>barrier</what>
113 <what>Barrier reinitialization: barrier 0x........</what>
133 <what>barrier</what>
162 <what>Destruction of a barrier with active waiters: barrier 0x........</what>
182 <what>barrier</what>
211 <what>Not a barrier</what>
236 <what>Destruction of barrier that is being waited upon: barrier 0x........</what>
256 <what>barrier</what>
Dbar_bad_xml.stderr.exp-nohang37 <what>pthread_barrier_init: 'count' argument is zero: barrier 0x........</what>
64 <what>Barrier reinitialization: barrier 0x........</what>
84 <what>barrier</what>
113 <what>Barrier reinitialization: barrier 0x........</what>
133 <what>barrier</what>
162 <what>Destruction of a barrier with active waiters: barrier 0x........</what>
182 <what>barrier</what>
211 <what>Not a barrier</what>
Dbar_bad_xml.stderr.exp37 <what>pthread_barrier_init: 'count' argument is zero: barrier 0x........</what>
64 <what>Barrier reinitialization: barrier 0x........</what>
84 <what>barrier</what>
113 <what>Barrier reinitialization: barrier 0x........</what>
133 <what>barrier</what>
162 <what>Destruction of a barrier with active waiters: barrier 0x........</what>
182 <what>barrier</what>
/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/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c76 // Minimum search size no matter what the passed in value. in vp9_init_search_range()
816 const struct buf_2d *const what = &x->plane[0].src; in calc_int_cost_list() local
828 fn_ptr->vf(what->buf, what->stride, get_buf_from_mv(in_what, &this_mv), in calc_int_cost_list()
834 cost_list[i + 1] = fn_ptr->vf(what->buf, what->stride, in calc_int_cost_list()
846 cost_list[i + 1] = fn_ptr->vf(what->buf, what->stride, in calc_int_cost_list()
871 const struct buf_2d *const what = &x->plane[0].src; in vp9_pattern_search() local
886 bestsad = vfp->sdf(what->buf, what->stride, get_buf_from_mv(in_what, ref_mv), in vp9_pattern_search()
903 vfp->sdf(what->buf, what->stride, in vp9_pattern_search()
913 vfp->sdf(what->buf, what->stride, in vp9_pattern_search()
945 vfp->sdf(what->buf, what->stride, in vp9_pattern_search()
[all …]
/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/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/python/cpython2/Demo/metaclasses/
Dmeta-vladimir.txt40 of type <class>. We can check this by asking Python: "what is A?"
42 >>> A # What is A?
53 >>> a # What is 'a'?
57 >>> b # What is 'b'?
70 >>> a.__class__ # What is the class of 'a'?
72 >>> b.__class__ # What is the class of 'b'?
95 >>> B # What is B?
131 Hence, what they want is the following:
147 And here we go for another round of what I said in section 1 -- Classes.
172 >>> M # What is M?
[all …]
/external/python/cpython2/Lib/hotshot/
Dlog.py98 what, tdelta, fileno, lineno = self._nextitem()
102 if what == WHAT_ENTER:
106 return what, t, tdelta
108 if what == WHAT_EXIT:
110 return what, self._pop(), tdelta
114 if what == WHAT_LINENO:
116 return what, (filename, lineno, funcname), tdelta
118 if what == WHAT_DEFINE_FILE:
121 elif what == WHAT_DEFINE_FUNC:
124 elif what == WHAT_ADD_INFO:
/external/pcre/dist2/doc/
Dpcre2_pattern_info.310 .B int pcre2_pattern_info(const pcre2 *\fIcode\fP, uint32_t \fIwhat\fP, void *\fIwhere\fP);
19 \fIwhat\fP What information is required
22 The recognized values for the \fIwhat\fP argument, and the information they
28 PCRE2_INFO_BSR What \eR matches:
70 following \fIwhat\fP values, when it must point to a variable of the type
82 PCRE2_ERROR_BADOPTION the value of \fIwhat\fP is invalid

12345678910>>...282