Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 1947) sorted by relevance

12345678910>>...78

/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/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/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/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/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/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/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/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/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 …]
Dtest1013.pl10 my $what=$ARGV[2];
14 open(CURL, "$ARGV[1]") || die "Can't get curl $what list\n";
17 $curl_protocols = lc($_) if ( /$what:/i );
31 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what list\n";
47 print "Mismatch in $what lists:\n";
/external/curl/lib/
Dparsedate.c207 const char * const *what; in checkday() local
210 what = &weekday[0]; in checkday()
212 what = &Curl_wkday[0]; in checkday()
214 if(Curl_raw_equal(check, what[0])) { in checkday()
218 what++; in checkday()
226 const char * const *what; in checkmonth() local
229 what = &Curl_month[0]; in checkmonth()
231 if(Curl_raw_equal(check, what[0])) { in checkmonth()
235 what++; in checkmonth()
246 const struct tzinfo *what; in checktz() local
[all …]
/external/autotest/cli/
Daction_common.py204 def _add_remove_uh_to_topic(self, item, what): argument
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)
258 oks.setdefault(item, []).append(what)
[all …]
/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/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/clang/test/SemaCXX/
D__try.cpp19 Exception(const char* s = "Unknown"){what = strdup(s); } in Exception()
20 Exception(const Exception& e ){what = strdup(e.what); } in Exception()
21 ~Exception() {free(what); } in ~Exception()
22 const char* msg() const {return what; } in msg()
24 const char* what; member in Exception
/external/libcxx/test/std/diagnostics/std.exceptions/logic.error/
Dlogic_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/runtime.error/
Druntime_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/underflow.error/
Dunderflow_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/domain.error/
Ddomain_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/length.error/
Dlength_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/out.of.range/
Dout_of_range.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()
/external/libcxx/test/std/diagnostics/std.exceptions/range.error/
Drange_error.pass.cpp27 assert(std::strcmp(e.what(), msg) == 0); in main()
29 assert(std::strcmp(e2.what(), msg) == 0); in main()
31 assert(std::strcmp(e2.what(), msg) == 0); in main()
36 assert(e.what() == msg); in main()
38 assert(e2.what() == msg); in main()
40 assert(e2.what() == msg); in main()

12345678910>>...78