/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
flavors | 60 $answer = "hi\necho there\nthere\nHello\n"; 61 &compare_output($answer, &get_logfile(1)); 67 $answer = "later foo bar\n"; 68 &compare_output($answer, &get_logfile(1)); 74 $answer = "$makefile:24: *** empty variable name. Stop.\n"; 75 &compare_output($answer, &get_logfile(1)); 81 $answer = "A = B\n"; 82 &compare_output($answer, &get_logfile(1));
|
MAKE | 24 # Create the answer to what should be produced by this Makefile 25 $answer = "$mkpath\n$mkpath -f $makefile foo\n" 33 &compare_output($answer,&get_logfile(1));
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
strip | 46 $answer = "\"Is this TERMINAL fun? What makes you believe is this terminal fun? JAPAN is a WONDERFUL planet -- I wonder if we will ever reach their level of COMPARATIVE SHOPPING...\" 50 &compare_output($answer,&get_logfile(1)); 54 $answer = " \n"; 55 &compare_output($answer,&get_logfile(1));
|
addprefix | 26 # Create the answer to what should be produced by this Makefile 27 $answer = "src${pathsep}a.b.z.foo src${pathsep}hacks\n"; 35 &compare_output($answer,&get_logfile(1));
|
dir | 26 # Create the answer to what should be produced by this Makefile 27 $answer = "src${pathsep} .${pathsep}\n"; 35 &compare_output($answer,&get_logfile(1));
|
findstring | 29 # Create the answer to what should be produced by this Makefile 30 $answer = "port\n"; 38 &compare_output($answer,&get_logfile(1));
|
join | 26 # Create the answer to what should be produced by this Makefile 27 $answer = "afoo bhacks c.pl1\n"; 35 &compare_output($answer,&get_logfile(1));
|
notdir | 26 # Create the answer to what should be produced by this Makefile 27 $answer = "foo.c hacks\n"; 35 &compare_output($answer,&get_logfile(1));
|
basename | 26 # Create the answer to what should be produced by this Makefile 27 $answer = "src${pathsep}a.b.z.foo src${pathsep}hacks src.bar${pathsep}a.b.z.foo src.bar${pathsep}hacks hacks\n"; 35 &compare_output($answer,&get_logfile(1));
|
/external/easymock/src/org/easymock/ |
IExpectationSetters.java | 46 * Sets an object that will be used to calculate the answer for the expected
49 * @param answer
50 * the object used to answer the invocation.
53 IExpectationSetters<T> andAnswer(IAnswer<? extends T> answer);
57 * method call will be delegated to it with the actual arguments. The answer
58 * returned by this call will then be the answer returned by the mock
85 * Sets a stub object that will be used to calculate the answer for the
88 * @param answer
89 * the object used to answer the invocation.
91 void andStubAnswer(IAnswer<? extends T> answer);
[all...] |
/external/easymock/src/org/easymock/internal/ |
IMocksControlState.java | 30 void andAnswer(IAnswer<?> answer);
32 void andDelegateTo(Object answer);
38 void andStubAnswer(IAnswer<?> answer);
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
DNSTask.java | 99 * Add an answer if it is not suppressed. 106 * DNS record answer 107 * @return outgoing message for the next answer 131 * Add an answer to the message. 136 * DNS record answer 138 * @return outgoing message for the next answer 162 * Add an authoritative answer to the message. 167 * DNS record answer 168 * @return outgoing message for the next answer 192 * Add an additional answer to the record. Omit if there is no room [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
comments | 30 # Create the answer to what should be produced by this Makefile 31 $answer = "There should be no errors for this makefile.\n"; 35 &compare_output($answer,&get_logfile(1))
|
vpath2 | 31 # Create the answer to what should be produced by this Makefile 32 $answer = "ALL IS WELL\n"; 34 &compare_output($answer,&get_logfile(1));
|
echoing | 48 $answer = "echo This makefile did not clean the dir... good\n" 50 &compare_output($answer,&get_logfile(1)); 66 $answer = "$delete_command $example\n"; 67 &compare_output($answer,&get_logfile(1)); 74 $answer = "This makefile did not clean the dir... good\n"; 75 &compare_output($answer,&get_logfile(1));
|
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/ |
DEFAULT | 37 # Create the answer to what should be produced by this Makefile 38 $answer = "${make_name}[1]: Entering directory `$pwd'\n" 44 &compare_output($answer,&get_logfile(1));
|
/external/mdnsresponder/mDNSPosix/ |
Identify.c | 67 static volatile int StopNow; // 0 means running, 1 means stop because we got an answer, 2 means stop because of Ctrl-C 107 mDNSlocal void NameCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord) 113 if (answer->rrtype == kDNSType_PTR || answer->rrtype == kDNSType_CNAME) 115 ConvertDomainNameToCString(&answer->rdata->u.name, hostname); 117 mprintf("%##s %s %##s\n", answer->name->c, DNSTypeName(answer->rrtype), answer->rdata->u.name.c); 121 mDNSlocal void InfoCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord) 126 if (answer->rrtype == kDNSType_A [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...] |
/bionic/libc/netbsd/resolv/ |
res_query.c | 117 * Formulate a normal query, send, and await answer. 118 * Returned answer is placed in supplied buffer "answer". 119 * Perform preliminary check of answer, returning success only 120 * if no error is indicated and the answer count is nonzero. 124 * Caller must parse answer and determine whether it answers the question. 130 u_char *answer, /* buffer to put answer */ 131 int anslen) /* size of answer buffer */ 134 HEADER *hp = (HEADER *)(void *)answer; [all...] |
res_data.c | 208 u_char *answer, /* buffer to put answer */ 209 int anslen) /* size of answer buffer */ 215 return (res_nquery(&_nres, name, class, type, answer, anslen)); 277 u_char *answer, /* buffer to put answer */ 278 int anslen) /* size of answer */ 285 return (res_nsearch(&_nres, name, class, type, answer, anslen)); 292 u_char *answer, /* buffer to put answer */ [all...] |
/frameworks/base/docs/html/distribute/googleplay/publish/ |
register.jd | 8 <li><a href="http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=113468">Developer Registration</a></li> 9 <li><a href="http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=138294&topic=2365624&ctx=topic">Supported Locations for Distributing Apps</a></li> 43 <li>Review the <a href="https://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=138294">developer countries</a> and <a href="https://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=150324">merchant countries</a> where you can distribute and sell apps.</li> 59 <p>If you want to sell products on Google Play — priced apps, in-app products, or subscriptions — you will also need to set up a Google Checkout <a href="http://checkout.google.com/sell">Merchant Account</a>. You can do that at any time, but make sure to first review the list of <a href="https://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=150324">merchant countries</a>.</p [all...] |
/external/dbus/doc/ |
dbus-faq.xml | 39 <answer> 50 </answer> 59 <answer> 69 </answer> 79 <answer> 81 The short answer is yes, you can use it in proprietary applications. 93 </answer> 103 <answer> 135 </answer> 145 <answer> [all...] |
/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...] |
/dalvik/dx/tests/034-dex-minimal/ |
info.txt | 5 is exactly correct. (There is arguably only one "right" answer.)
|
/external/chromium/chrome/browser/translate/ |
options_menu_model.cc | 21 "https://www.google.com/support/chromeos/bin/answer.py?answer=173424"; 23 "https://www.google.com/support/chrome/bin/answer.py?answer=173424";
|