HomeSort by relevance Sort by last modified time
    Searched refs:question (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
create_hit_test.py 3 from boto.mturk.question import QuestionForm
10 question=self.get_question(),
create_hit_external.py 4 from boto.mturk.question import ExternalQuestion
17 create_hit_rs = conn.create_hit(question=q, lifetime=60*65, max_assignments=2, title="Boto External Question Test", keywords=keywords, reward = 0.05, duration=60*6, approval_delay=60*60, annotation='An annotation from boto external question test', response_groups=['Minimal', 'HITDetail', 'HITQuestion', 'HITAssignmentSummary',])
create_hit_with_qualifications.py 2 from boto.mturk.question import ExternalQuestion
11 create_hit_rs = conn.create_hit(question=q, lifetime=60*65, max_assignments=2, title="Boto External Question Test", keywords=keywords, reward = 0.05, duration=60*6, approval_delay=60*60, annotation='An annotation from boto external question test', qualifications=qualifications)
hit_persistence.py 9 question=self.get_question(), **self.get_hit_params()
common.py 5 from boto.mturk.question import (
6 Question, QuestionContent, AnswerSpecification, FreeTextAnswer,
17 # create content for a question
19 qn_content.append_field('Title', 'Boto no hit type question content')
22 # create the question specification
23 qn = Question(identifier=str(uuid.uuid4()),
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 74 for (DNSQuestion question : _in.getQuestions()) {
76 logger.finest(this.getName() + "start() question=" + question);
78 iAmTheOnlyOne = question.iAmTheOnlyOne(this.getDns());
106 for (DNSQuestion question : _in.getQuestions()) {
108 logger.finer(this.getName() + "run() JmDNS responding to: " + question);
110 // for unicast responses the question must be included
113 questions.add(question);
116 question.addAnswers(this.getDns(), answers);
137 for (DNSQuestion question : questions)
    [all...]
  /external/e2fsprogs/e2fsck/
problemP.h 24 problem_t question; member in struct:latch_descr
37 #define PR_AFTER_CODE 0x002000 /* After asking the first question, */
  /hardware/libhardware_legacy/
qemu.h 77 /* sends a question to the hw-control channel, then receive an answer in
81 * 'question' *must* have been formatted through qemu_command_format
83 extern int qemu_control_query( const char* question, int questionlen,
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10);
212 private static class Question implements Comparable<Question> {
214 private String question; field in class:MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers,
221 this.question = question;
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
268 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
279 String question = questionEditText.getText().toString(); local
    [all...]
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10);
212 private static class Question implements Comparable<Question> {
214 private String question; field in class:MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers,
221 this.question = question;
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
268 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
279 String question = questionEditText.getText().toString(); local
    [all...]
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
MainActivity.java 25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10);
212 private static class Question implements Comparable<Question> {
214 private String question; field in class:MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers,
221 this.question = question;
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
268 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
279 String question = questionEditText.getText().toString(); local
    [all...]
  /external/mdnsresponder/mDNSPosix/
Client.c 39 static void BrowseCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
53 (void)question; // Unused
180 DNSQuestion question; local
199 status = mDNS_StartBrowse(&mDNSStorage, &question, &type, &domain, mDNSInterface_Any, mDNSfalse, BrowseCallback, NULL);
208 mDNS_StopQuery(&mDNSStorage, &question);
Identify.c 107 mDNSlocal void NameCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
110 (void)question; // Unused
121 mDNSlocal void InfoCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
124 (void)question; // Unused
163 mDNSlocal void ServicesCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
166 (void)question; // Unused
  /external/mdnsresponder/mDNSCore/
mDNS.c 150 // Depending on whether this is a multicast or unicast question we want to set either:
384 LogInfo("GenerateNegativeResponse: Generating negative response for question %##s (%s)", q->qname.c, DNSTypeName(q->qtype));
388 if (m->CurrentQuestion == q) { q->ThisQInterval = 0; } // Deactivate this question
389 // Don't touch the question after this
405 // A and B, and when we stop question A, UpdateQuestionDuplicates copies the value of CNAMEReferrals
407 // the target name is still the same), and then when we stop question B, UpdateQuestionDuplicates
410 // those cases the newly re-appended question A has a different target name and therefore cannot be
411 // a duplicate of any other question ('B') which was itself a duplicate of the previous question A.
441 // Note: All the callers should use the m->CurrentQuestion to see if the question is still valid or no
    [all...]
uDNS.h 81 extern mStatus mDNS_StartQuery_internal(mDNS *const m, DNSQuestion *const question);
82 extern mStatus mDNS_StopQuery_internal(mDNS *const m, DNSQuestion *const question);
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 57 "WHY DO YOU ASK?", "DOES THAT QUESTION INTEREST YOU?",
155 String question = QUESTIONS[responseCurrentIndices[keywordIndex] - 1]; local
160 result += question;
  /developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 57 "WHY DO YOU ASK?", "DOES THAT QUESTION INTEREST YOU?",
155 String question = QUESTIONS[responseCurrentIndices[keywordIndex] - 1]; local
160 result += question;
  /development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
ElizaResponder.java 57 "WHY DO YOU ASK?", "DOES THAT QUESTION INTEREST YOU?",
155 String question = QUESTIONS[responseCurrentIndices[keywordIndex] - 1]; local
160 result += question;
  /system/netd/tests/
dns_responder.cpp 468 for (const DNSQuestion& question : questions) {
469 buffer_cur = question.write(buffer_cur, buffer_end);
755 for (const DNSQuestion& question : header.questions) {
756 queries_.push_back(make_pair(question.qname.name,
757 ns_type(question.qtype)));
769 for (const DNSQuestion& question : header.questions) {
770 if (question.qclass != ns_class::ns_c_in &&
771 question.qclass != ns_class::ns_c_any) {
772 ALOGI("unsupported question class %u", question.qclass)
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 148 void writeQuestion(DNSQuestion question) {
149 writeName(question.getName());
150 writeShort(question.getRecordType().indexValue());
151 writeShort(question.getRecordClass().indexValue());
237 * Add a question to the message.
343 for (DNSQuestion question : _questions) {
344 message.writeQuestion(question);
412 for (DNSQuestion question : _questions) {
414 buf.append(question);
DNSMessage.java 227 for (DNSQuestion question : _questions) {
229 buf.append(question);
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 2925 DNSQuestion *question = &request->u.queryrecord.q; local
2948 DNSQuestion *question = request->u.queryrecord.q2; local
    [all...]
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 54 case tok::question: return prec::Conditional;
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
message.py 73 @ivar question: The question section.
74 @type question: list of dns.rrset.RRset objects
144 self.question = []
202 print >> s, ';QUESTION'
203 for rrset in self.question:
229 header, question, answer, and authority sections.
237 for n in self.question:
238 if n not in other.question:
240 for n in other.question
    [all...]
  /external/libunwind/doc/
unw_regname.tex 21 unrecognized register number, a string consisting of three question

Completed in 1294 milliseconds

1 2 3 4