HomeSort by relevance Sort by last modified time
    Searched defs:answer (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/easymock/src/org/easymock/
IAnswer.java 19 * Used to answer expected calls.
24 * is called by EasyMock to answer an expected call.
25 * The answer may be to return a value, or to throw an exception.
26 * The arguments of the call for which the answer is generated
33 T answer() throws Throwable; method in interface:IAnswer
  /external/proguard/examples/annotations/examples/
NativeCallBack.java 17 * Suppose this is a native method that computes an answer.
40 int answer = new NativeCallBack().computeAnswer(); local
42 System.out.println("The answer is " + answer);
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/
NativeCallBack.java 17 * Suppose this is a native method that computes an answer.
40 int answer = new NativeCallBack().computeAnswer(); local
42 System.out.println("The answer is " + answer);
  /external/skia/tests/
ClipStackTest.cpp 118 SkRect answer; local
119 answer.iset(25, 25, 75, 75);
125 REPORTER_ASSERT(reporter, *clip->fRect == answer);
  /hardware/libhardware/include/hardware/
qemud.h 68 char answer[2]; local
93 /* read answer from daemon */
94 if (qemud_fd_read(fd, answer, 2) != 2 ||
95 answer[0] != 'O' || answer[1] != 'K') {
  /bionic/libc/arch-mips/string/
mips_strlen.c 150 static char answer[1024]; local
152 sprintf (answer, "new_strlen=%d: lib_strlen=%d: %s!", mine, libs, result);
155 return answer;
  /external/easymock/src/org/easymock/internal/
Result.java 41 public Object answer() throws Throwable { method in class:Result.ThrowingAnswer
47 return "Answer throwing " + throwable;
58 public Object answer() throws Throwable { method in class:Result.ReturningAnswer
64 return "Answer returning " + value;
75 public Object answer() throws Throwable { method in class:Result.DelegatingAnswer
98 public static Result createAnswerResult(IAnswer<?> answer) {
99 return new Result(answer, false);
102 public Object answer() throws Throwable { method in class:Result
103 return value.answer();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
SupportLibraryHelper.java 112 int answer = dialog.open(); local
113 if (answer == 0) {
  /external/guava/guava-tests/test/com/google/common/collect/
SortedListsTest.java 41 void assertModelAgrees(List<Integer> list, Integer key, int answer,
46 assertEquals(list.indexOf(key), answer); local
52 assertEquals(list.lastIndexOf(key), answer); local
58 assertEquals(key, list.get(answer));
64 assertEquals(list.lastIndexOf(key) + 1, answer); local
70 assertEquals(list.indexOf(key) - 1, answer); local
84 assertEquals(nextHigherIndex - 1, answer);
87 assertEquals(nextHigherIndex, answer);
90 assertEquals(-1 - nextHigherIndex, answer);
  /external/qemu/telephony/
modem_driver.c 94 const char* answer; local
103 answer = amodem_send(android_modem, md->in_buff);
104 if (answer != NULL) {
105 D( "%s: >> %s\n", __FUNCTION__, answer );
106 len = strlen(answer);
107 if (len == 2 && answer[0] == '>' && answer[1] == ' ')
110 qemu_chr_write(md->cs, (const uint8_t*)answer, len);
113 D( "%s: -- NO ANSWER\n", __FUNCTION__ );
simulator.c 77 const char* answer; local
80 answer = amodem_send( modem, cmd );
81 if (answer == NULL) /* not an AT command, ignored */ {
82 printf( "-- NO ANSWER\n" );
86 dump_line( answer, ">> " );
87 client_append( client, answer, -1 );
  /external/valgrind/unittest/
test_utils.h 67 const char *answer = ThreadSanitizerQuery(query); local
68 if (answer == NULL) {
72 return string(answer) == expected_answer;
  /external/ipsec-tools/src/racoon/
getcertsbyname.c 208 unsigned char *answer = NULL, *p; local
229 p = realloc(answer, buflen);
237 answer = p;
239 anslen = res_query(name, C_IN, T_CERT, answer, buflen);
250 eom = answer + anslen;
252 hp = (HEADER *)answer;
265 len = dn_expand(answer, eom, cp, hostbuf, sizeof(hostbuf));
276 /* answer section */
278 len = dn_expand(answer, eom, cp, hostbuf, sizeof(hostbuf));
336 if (answer)
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 37 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL); local
38 if (answer != null) {
39 answers.add(answer);
61 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL); local
62 if (answer != null) {
63 answers.add(answer);
272 * List of previous answer to append.
309 * Checks if we are the only to be able to answer that question.
313 * @return <code>true</code> if we are the only one with the answer to the question, <code>false</code> otherwise.
  /external/ppp/pppd/plugins/pppoatm/
ans.c 43 unsigned char answer[MAX_ANSWER]; local
50 if ((answer_len = res_search(text,C_IN,wanted,answer,MAX_ANSWER)) < 0)
56 pos = answer+12;
57 if (answer[3] & 15) return TRY_OTHER; /* rcode != 0 */
58 questions = GET16(answer+4);
60 answers = GET16(answer+6);
65 if ((name_len = dn_expand(answer,answer+answer_len,pos,name,MAX_NAME)) < 0)
80 if ((name_len = dn_expand(answer,answer+answer_len,pos,name,MAX_NAME)
    [all...]
  /hardware/libhardware_legacy/qemu/
qemu.c 98 char answer[2]; local
116 /* read answer from daemon */
117 if (qemu_fd_read(fd, answer, 2) != 2 ||
118 answer[0] != 'O' || answer[1] != 'K') {
351 char* answer, int answersize )
388 /* read the answer */
389 ret = qemu_fd_read( fd, answer, len );
391 D("%s: could not read all of answer %d < %d",
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/protocols/
talkd.h 62 u_char answer; /* not used */ member in struct:__anon24513
81 u_char answer; /* response to request message, see below */ member in struct:__anon24514
95 /* answer values */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/protocols/
talkd.h 62 u_char answer; /* not used */ member in struct:__anon26103
81 u_char answer; /* response to request message, see below */ member in struct:__anon26104
95 /* answer values */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/protocols/
talkd.h 62 u_char answer; /* not used */ member in struct:__anon27615
81 u_char answer; /* response to request message, see below */ member in struct:__anon27616
95 /* answer values */
  /external/chromium/net/socket/
ssl_client_socket_pool.cc 74 bool answer = false; local
80 answer = transport_params_->getUID(uid);
87 answer = http_proxy_params_->getUID(uid);
94 answer = socks_params_->getUID(uid);
99 return answer;
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.cc 168 SessionDescription* answer = CreateAnswer(session->remote_description()); local
169 if (answer == NULL)
172 session->Accept(answer);
  /external/e2fsprogs/e2fsck/
problem.c 1688 int answer = -1; local
1749 int def_yn, answer, ans; local
    [all...]
  /external/openssh/openbsd-compat/
getrrsetbyname.c 170 struct dns_rr *answer; member in struct:dns_response
200 u_char answer[ANSWER_BUFFER_SIZE]; local
238 answer, sizeof(answer));
254 response = parse_dns_response(answer, length);
273 rrset->rri_ttl = response->answer->ttl;
282 /* copy name from answer section */
283 rrset->rri_name = strdup(response->answer->name);
290 rrset->rri_nrdatas = count_dns_rr(response->answer, rrset->rri_rdclass,
292 rrset->rri_nsigs = count_dns_rr(response->answer, rrset->rri_rdclass
    [all...]
  /external/quake/quake/src/QW/client/
mathlib.c 419 int answer=0; local
421 answer++;
422 return answer;
  /external/quake/quake/src/WinQuake/
mathlib.cpp 421 int answer=0; local
423 answer++;
424 return answer;

Completed in 1493 milliseconds

1 2 3 4