HomeSort by relevance Sort by last modified time
    Searched refs:answer (Results 276 - 300 of 444) sorted by null

<<1112131415161718

  /toolchain/binutils/binutils-2.25/bfd/
coffgen.c 383 struct bfd_section *answer = abfd->sections; local
392 while (answer)
394 if (answer->target_index == section_index)
395 return answer;
396 answer = answer->next;
    [all...]
  /external/opencv3/modules/core/misc/java/test/
MatTest.java 188 Mat answer = new Mat(1, 3, CvType.CV_32F); local
189 answer.put(0, 0, 7.0, 1.0, -5.0);
192 assertMatEqual(answer, cross, EPS);
  /external/skia/tests/
ClipStackTest.cpp 1191 SkRect answer; local
    [all...]
  /external/v8/src/
utils.h 836 int answer = 10; local
837 for (int i = 1; i < exponent; i++) answer *= 10;
838 return answer;
    [all...]
assembler.h 1036 void* answer = local
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
ConnectionService.java 72 * receives call-commands such as answer, reject, hold and disconnect.
166 public void answer(String callId) {
325 answer((String) msg.obj);
802 findConnectionForAction(callId, "answer").onAnswer(videoState);
805 private void answer(String callId) { method in class:ConnectionService
806 Log.d(this, "answer %s", callId);
807 findConnectionForAction(callId, "answer").onAnswer();
    [all...]
  /system/connectivity/shill/net/
netlink_manager_unittest.cc 300 int operator()(struct timeval* answer) {
301 if (answer) {
302 *answer = return_value_;
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 342 * If an incoming package which needs an answer is truncated, we store it here. We add more incoming DNSRecords to it, until the JmDNS.Responder timer picks it up.<br/>
748 // Check if the answer is in the cache.
757 // Check if the answer is in the cache.
    [all...]
DNSRecord.java 87 * Adds this as an answer to the provided outgoing datagram.
96 for (DNSRecord answer : msg.getAllAnswers()) {
97 if (suppressedBy(answer)) {
110 * True if this record would be suppressed by an answer. This is the case if this record would not have a significantly longer TTL.
187 // If we have a type A records we should answer with a IPv4 address
229 // If we have a type AAAA records we should answer with a IPv6 address
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 294 * to the start of the answer 4-tuple in the statetable.
  /external/webrtc/talk/app/webrtc/
peerconnection_unittest.cc 791 rtc::scoped_ptr<SessionDescriptionInterface> answer; local
792 EXPECT_TRUE(DoCreateAnswer(answer.use()));
794 EXPECT_TRUE(answer->ToString(&sdp));
795 EXPECT_TRUE(DoSetLocalDescription(answer.release()));
805 webrtc::CreateSessionDescription("answer", msg, nullptr));
    [all...]
webrtcsession.cc 79 "Offer and answer descriptions m-lines are not matching. Rejecting answer.";
154 // Compares |answer| against |offer|. Comparision is done
155 // for number of m-lines in answer against offer. If matches true will be
158 const SessionDescription* answer, const SessionDescription* offer) {
159 if (offer->contents().size() != answer->contents().size())
163 if ((offer->contents()[i].name) != answer->contents()[i].name) {
171 answer->contents()[i].description);
500 // Local Answer will be created with new ufrag and pwd.
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SubscriptionInfoUpdaterTest.java 48 import org.mockito.stubbing.Answer;
321 doAnswer(new Answer<Void>() {
323 public Void answer(InvocationOnMock invocation) throws Throwable {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DoubleTest.java 198 private void test_toString(double dd, String answer) {
199 assertEquals(answer, Double.toString(dd));
201 assertEquals(answer, Double.toString(d.doubleValue()));
202 assertEquals(answer, d.toString());
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
VideoProviderTest.java 26 import org.mockito.stubbing.Answer;
85 private Answer mVerification = new Answer() {
87 public Object answer(InvocationOnMock i) {
TelecomSystemTest.java 84 import org.mockito.stubbing.Answer;
397 doAnswer(new Answer() {
399 public Object answer(InvocationOnMock i) {
725 .answer(ids.mConnectionId);
    [all...]
  /external/v8/src/regexp/
jsregexp.cc 2320 int answer = Length(); local
5179 RegExpNode* answer = ToNode( local
5195 RegExpNode* answer = on_success; local
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 54 unsigned answer = 0; local
57 answer |= 1u << ARMv8;
59 answer |= 1u << ARMv7 | 1u << VFP3 | 1u << NEON | 1u << VFP32DREGS;
60 answer |= 1u << SUDIV | 1u << MLS;
64 if (FLAG_enable_armv7) answer |= 1u << ARMv7;
67 if (FLAG_enable_vfp3) answer |= 1u << VFP3 | 1u << ARMv7;
70 if (FLAG_enable_32dregs) answer |= 1u << VFP32DREGS;
73 if (FLAG_enable_neon) answer |= 1u << NEON;
75 if ((answer & (1u << ARMv7)) && FLAG_enable_unaligned_accesses) {
76 answer |= 1u << UNALIGNED_ACCESSES
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
ConnectionServiceWrapper.java 829 void answer(Call call, int videoState) { method in class:ConnectionServiceWrapper
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.0-beta-1103/
kotlin-annotation-processing-1.0.0-beta-1103.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 443 int answer = dialog.open();
444 if (answer == 0) {
  /system/netd/tests/
dns_responder.cpp 472 for (const DNSRecord& answer : answers) {
473 buffer_cur = answer.write(buffer_cur, buffer_end);
795 ALOGI("no mapping found for %s %s, lazily refusing to add an answer",
  /external/guice/extensions/persist/lib/
jaxen-1.1-beta-7.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0/
compiler-1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0-rc5/
compiler-1.0-rc5.jar 

Completed in 1991 milliseconds

<<1112131415161718