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

1 2 3 4

  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/history/
AgentChatSession.java 33 public String question; field in class:AgentChatSession
35 public AgentChatSession(Date date, long duration, String visitorsName, String visitorsEmail, String sessionID, String question) {
41 this.question = question;
84 public void setQuestion(String question){
85 this.question = question;
89 return question;
AgentChatHistory.java 124 String question = null; local
145 else if ((eventType == XmlPullParser.START_TAG) && ("question".equals(parser.getName()))) {
146 question = parser.nextText();
152 return new AgentChatSession(date, duration, visitorsName, visitorsEmail, sessionID, question);
  /external/chromium_org/net/dns/
dns_query_unittest.cc 24 0x00, 0x01, // Set QDCOUNT (question count) to 1, all the
30 // Question
48 base::StringPiece question(reinterpret_cast<const char*>(query_data) + 12,
50 EXPECT_EQ(question, q1.question());
64 EXPECT_EQ(q1.question(), q2->question());
dns_query.h 34 // Returns the Question section of the query. Used when matching the
36 base::StringPiece question() const;
dns_response.cc 174 // Match question count.
178 // Match the question section.
180 const base::StringPiece question = query.question(); local
181 if (question != base::StringPiece(io_buffer_->data() + hdr_size,
182 question.size())) {
189 hdr_size + question.size());
  /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/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 121 private String question; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
129 this.question = question;
182 * Returns the question the user asked.
184 * @return the question the user asked, if any.
187 return question;
209 if (question != null) {
210 buf.append(" question=\"").append(question).append("\"");
261 String question = parser.getAttributeValue("", "question"); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
popup.js 38 var question = questions[i];
39 var $question = document.createElement('li');
40 var url = ROOT + question.question_answers_url;
41 $question.innerHTML = '<a href="' + url + '" target="_blank">' +
42 question.title + '</a>';
43 results.appendChild($question);
  /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> {
213 private String question; field in class:MainActivity.Question
218 public Question(String question, int questionIndex, String[] answers,
220 this.question = question;
228 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
264 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
275 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> {
213 private String question; field in class:MainActivity.Question
218 public Question(String question, int questionIndex, String[] answers,
220 this.question = question;
228 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
264 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
275 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> {
213 private String question; field in class:MainActivity.Question
218 public Question(String question, int questionIndex, String[] answers,
220 this.question = question;
228 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); local
264 Question question = Question.fromJson(questionObject, mQuestionIndex++); local
275 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/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
example.js 19 var questionEl = document.getElementById('question');
28 var questionEl = document.getElementById('question');
  /external/srec/srec/include/
hmm_desc.h 82 question; typedef in typeref:struct:__anon14803
  /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...]
  /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/Application/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;
  /external/smack/src/org/xbill/DNS/
SimpleResolver.java 234 Record question = query.getQuestion(); local
235 if (question != null && question.getType() == Type.AXFR)
314 Record question = query.getQuestion(); local
316 if (question != null)
317 qname = question.getName().toString();
344 response.addRecord(query.getQuestion(), Section.QUESTION);
  /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);
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 2929 DNSQuestion *question = &request->u.queryrecord.q; local
2952 DNSQuestion *question = request->u.queryrecord.q2; local
    [all...]
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 54 case tok::question: return prec::Conditional;

Completed in 1070 milliseconds

1 2 3 4