HomeSort by relevance Sort by last modified time
    Searched refs:answer (Results 226 - 250 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/tools/releasetools/
common.py 717 answer = raw_input("try to edit again? [y]> ").strip()
718 if answer and answer[0] not in 'yY':
    [all...]
  /external/chromium_org/third_party/skia/tests/
ClipStackTest.cpp 1191 SkRect answer; local
    [all...]
  /external/chromium_org/v8/src/
utils.h 808 int answer = 10; local
809 for (int i = 1; i < exponent; i++) answer *= 10;
810 return answer;
    [all...]
debug.cc 2905 Handle<String> answer; local
    [all...]
string.js 254 var answer = %StringReplaceGlobalRegExpWithString(
261 return answer;
  /external/skia/tests/
ClipStackTest.cpp 1191 SkRect answer; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.cc 66 "Offer and answer descriptions m-lines are not matching. Rejecting answer.";
78 // Compares |answer| against |offer|. Comparision is done
79 // for number of m-lines in answer against offer. If matches true will be
82 const SessionDescription* answer, const SessionDescription* offer) {
83 if (offer->contents().size() != answer->contents().size())
87 if ((offer->contents()[i].name) != answer->contents()[i].name) {
95 answer->contents()[i].description);
    [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.
  /frameworks/base/telecomm/java/android/telecom/
Call.java 402 * Instructs this {@link #STATE_RINGING} {@code Call} to answer.
403 * @param videoState The video state in which to answer the call.
405 public void answer(int videoState) { method in class:Call
  /packages/services/Telecomm/src/com/android/server/telecom/
TelecomServiceImpl.java 511 call.answer(call.getVideoState());
Call.java 797 * @param videoState The video state in which to answer the call.
799 void answer(int videoState) { method in class:Call
803 // between the time the user hits 'answer' and Telecom receives the command.
804 if (isRinging("answer")) {
805 // At this point, we are asking the connection service to answer but we don't assume
809 mConnectionService.answer(this, videoState);
    [all...]
CallsManager.java 515 * Instructs Telecom to answer the specified call. Intended to be invoked by the in-call
517 * the user opting to answer said call.
519 * @param call The call to answer.
520 * @param videoState The video state in which to answer the call.
524 Log.i(this, "Request to answer a non-existent call %s", call);
552 // We do not update the UI until we get confirmation of the answer() through
554 call.answer(videoState);
812 ringingCall.answer(ringingCall.getVideoState());
    [all...]
ConnectionServiceWrapper.java 730 /** @see ConnectionService#answer(String,int) */
731 void answer(Call call, int videoState) { method in class:ConnectionServiceWrapper
733 if (callId != null && isServiceValid("answer")) {
735 logOutgoing("answer %s %d", callId, videoState);
737 mServiceInterface.answer(callId);
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 53 unsigned answer = 0; local
55 if (FLAG_enable_armv7) answer |= 1u << ARMv7;
58 if (FLAG_enable_vfp3) answer |= 1u << VFP3 | 1u << ARMv7;
61 if (FLAG_enable_32dregs) answer |= 1u << VFP32DREGS;
64 if (FLAG_enable_neon) answer |= 1u << NEON;
66 if ((answer & (1u << ARMv7)) && FLAG_enable_unaligned_accesses) {
67 answer |= 1u << UNALIGNED_ACCESSES;
70 return answer;
    [all...]
  /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) {
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part1.c 1548 int i, answer = 0; local
    [all...]
  /external/chromium_org/third_party/libevent/
evdns.c 271 int n_answer; /* how many answer RRs have been set? */
275 struct server_reply_item *answer; /* linked list of answer RRs */ member in struct:server_request
840 /* If it's not an answer, it doesn't correspond to any request. */
841 if (!(flags & 0x8000)) return -1; /* must be an answer */
846 /* if (!answers) return; */ /* must have an answer of some form */
878 /* now we have the answer section which looks like
975 if (flags & 0x8000) return -1; /* Must not be an answer. */
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
boundary4.tcl 140 proc maketest {tnum sql answer} {
145 puts "\175 {$answer}"
  /external/chromium_org/v8/src/mips/
assembler-mips.cc 51 unsigned answer = 0; local
53 answer |= 1u << FPU;
60 answer |= 1u << FPU;
63 return answer;
    [all...]
  /external/chromium_org/v8/test/mjsunit/
instanceof-2.js 296 var answer = (x instanceof func);
297 assertEquals(correct_answers[correct_answer_index], answer);
  /external/qemu/slirp/
udp.c 488 nmsg->answer = 0;
  /external/chromium_org/testing/gtest/scripts/
upload.py 395 help="Assume that the answer to yes/no questions is 'yes'.")
621 answer = raw_input(prompt).strip()
622 if answer != "y":
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
call.cc 148 const SessionDescription* answer = session_client_->CreateAnswer( local
150 it->second.session->Accept(answer);
243 // Callee didn't answer - terminate call
    [all...]

Completed in 1318 milliseconds

1 2 3 4 5 6 7 8 91011>>