HomeSort by relevance Sort by last modified time
    Searched full:answer (Results 426 - 450 of 2491) sorted by null

<<11121314151617181920>>

  /bionic/tests/libs/
Android.build.dlopen_2_parents_reloc.mk 23 # ..._child.so - correct answer
32 # ..._parent1.so - correct answer
43 # ..._parent2.so - incorrect answer
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbydns.c 198 gethostanswer(const querybuf *answer, int anslen, const char *qname, int qtype)
214 eom = answer->buf + anslen;
228 * find first satisfactory answer
230 hp = &answer->hdr;
235 cp = answer->buf;
241 n = dn_expand(answer->buf, eom, cp, bp, buflen);
273 n = dn_expand(answer->buf, eom, cp, bp, buflen);
299 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
331 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
373 n = dn_expand(answer->buf, eom, cp, bp, buflen);
    [all...]
  /docs/source.android.com/src-intl/ko_ALL/security/advisory/
2016-03-18.jd 35 ?? <a href="https://support.google.com/accounts/answer/2812853">? ??</a>? ???? Google Play? Google Play ?? ????
81 <li> <a href="https://support.google.com/nexus/answer/4457705">Linux ?? ?? 3.18</a> ???
174 <a href="https://support.google.com/nexus/answer/4457705">? ???</a>? ?????.</p>
  /docs/source.android.com/src-intl/ru_ALL/security/advisory/
2016-03-18.jd 37 ? ??????? <a href="https://support.google.com/accounts/answer/2812853">??????????? ????????</a>.</p>
79 <li> ?? ????????? ? ????????? Android ? <a href="https://support.google.com/nexus/answer/4457705">????? Linux ?????? 3.18 ???
168 ?? 18 ????? ??? 2 ?????? 2016 ????. ???????, <a href="https://support.google.com/nexus/answer/4457705">??? ?????????? ????</a>
  /external/autotest/client/cros/cellular/wardmodem/state_machines/
network_identity_machine.py 85 answer = '0000000'
86 answer += str(len(self._mnc))
87 self._check_length_and_respond(answer, length_str)
  /external/c-ares/
ares_parse_a_reply.c 80 /* Fetch the question and answer count from the header. */
125 /* Examine each answer resource record (RR) in turn. */
213 /* We got our answer. */
ares_parse_aaaa_reply.c 82 /* Fetch the question and answer count from the header. */
125 /* Examine each answer resource record (RR) in turn. */
211 /* We got our answer. */
ares_parse_ns_reply.c 68 /* Fetch the question and answer count from the header. */
95 /* Examine each answer resource record (RR) in turn. */
156 /* We got our answer. Allocate memory to build the host entry. */
ares_parse_ptr_reply.c 67 /* Fetch the question and answer count from the header. */
85 /* Examine each answer resource record (RR) in turn. */
174 /* We got our answer. Allocate memory to build the host entry. */
ares_parse_txt_reply.c 75 /* Fetch the question and answer count from the header. */
96 /* Examine each answer resource record (RR) in turn. */
119 /* Allocate storage for this TXT answer appending it to the list */
  /external/mdnsresponder/mDNSPosix/
Client.c 39 static void BrowseCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
55 assert(answer->rrtype == kDNSType_PTR);
57 DeconstructServiceName(&answer->rdata->u.name, &name, &type, &domain);
  /external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
ReturnsEmptyValuesTest.java 71 Object result = values.answer(compareTo);
85 Object result = values.answer(compareTo);
123 Object result = values.answer(findAny);
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StubbingUsingDoReturnTest.java 15 import org.mockito.stubbing.Answer;
194 doAnswer(new Answer<Object>() {
195 public Object answer(InvocationOnMock invocation) throws Throwable {
  /external/v8/src/
d8-posix.cc 27 int answer = len; local
44 while (answer > 0) {
45 int c = buffer[answer - 1];
47 if ((c & kUtf8SingleByteMask) == kUtf8SingleByteValue) return answer;
51 answer--;
55 return answer + 2;
57 return answer - 1;
60 return answer + 3;
62 return answer - 1;
65 return answer + 4
    [all...]
  /external/v8/src/heap/
heap-inl.h 241 String* answer = String::cast(result); local
242 answer->set_length(str.length());
243 answer->set_hash_field(hash_field);
245 DCHECK_EQ(size, answer->Size());
248 MemCopy(answer->address() + SeqOneByteString::kHeaderSize, str.start(),
251 return answer;
271 String* answer = String::cast(result); local
272 answer->set_length(str.length());
273 answer->set_hash_field(hash_field);
275 DCHECK_EQ(size, answer->Size())
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
BaseLockSettingsServiceTests.java 40 import org.mockito.stubbing.Answer;
106 new Answer<Boolean>() {
108 public Boolean answer(InvocationOnMock invocation) throws Throwable {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CarrierServicesSmsFilterTest.java 48 import org.mockito.stubbing.Answer;
165 doAnswer(new Answer<Void>() {
167 public Void answer(InvocationOnMock invocation) throws Throwable {
  /frameworks/support/emoji/core/tests/java/android/support/text/emoji/
EmojiSpanTest.java 41 import org.mockito.stubbing.Answer;
63 when(paint.getFontMetricsInt(any(FontMetricsInt.class))).thenAnswer(new Answer<Object>() {
65 public Object answer(InvocationOnMock invocation) throws Throwable {
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
AnswerFragment.java 17 package com.android.incallui.answer.impl;
60 import com.android.incallui.answer.impl.CreateCustomSmsDialogFragment.CreateCustomSmsHolder;
61 import com.android.incallui.answer.impl.SmsBottomSheetFragment.SmsSheetHolder;
62 import com.android.incallui.answer.impl.affordance.SwipeButtonHelper.Callback;
63 import com.android.incallui.answer.impl.affordance.SwipeButtonView;
64 import com.android.incallui.answer.impl.answermethod.AnswerMethod;
65 import com.android.incallui.answer.impl.answermethod.AnswerMethodFactory;
66 import com.android.incallui.answer.impl.answermethod.AnswerMethodHolder;
67 import com.android.incallui.answer.impl.utils.Interpolators;
68 import com.android.incallui.answer.protocol.AnswerScreen
    [all...]
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/provisioning/
ProfileOwnerProvisioningControllerTest.java 51 import org.mockito.stubbing.Answer;
150 doAnswer(new Answer<Void>() {
152 public Void answer(InvocationOnMock invocationOnMock) throws Throwable {
  /packages/apps/Messaging/tests/src/com/android/messaging/ui/conversation/
ComposeMessageViewTest.java 47 import org.mockito.stubbing.Answer;
111 Mockito.doAnswer(new Answer() {
113 public Object answer(InvocationOnMock invocation) throws Throwable {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/accounts/
AutoSyncDataPreferenceControllerTest.java 53 @Mock(answer = RETURNS_DEEP_STUBS)
55 @Mock(answer = RETURNS_DEEP_STUBS)
57 @Mock(answer = RETURNS_DEEP_STUBS)
EmergencyInfoPreferenceControllerTest.java 56 @Mock(answer = RETURNS_DEEP_STUBS)
58 @Mock(answer = RETURNS_DEEP_STUBS)
60 @Mock(answer = RETURNS_DEEP_STUBS)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/enterprise/
ApplicationListPreferenceControllerTest.java 71 @Mock(answer = RETURNS_DEEP_STUBS)
73 @Mock(answer = RETURNS_DEEP_STUBS)
75 @Mock(answer = RETURNS_DEEP_STUBS)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/gestures/
GesturePreferenceControllerTest.java 49 @Mock(answer = Answers.RETURNS_DEEP_STUBS)
51 @Mock(answer = Answers.RETURNS_DEEP_STUBS)
53 @Mock(answer = Answers.RETURNS_DEEP_STUBS)

Completed in 587 milliseconds

<<11121314151617181920>>