HomeSort by relevance Sort by last modified time
    Searched refs:Form (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /external/smack/src/org/jivesoftware/smackx/search/
UserSearch.java 27 import org.jivesoftware.smackx.Form;
60 * Returns the form for all search fields supported by the search service.
64 * @return the search form received by the server.
68 public Form getSearchForm(Connection con, String searchService) throws XMPPException {
86 return Form.getFormFrom(response);
90 * Sends the filled out answer form to be sent and queried by the search service.
93 * @param searchForm the <code>Form</code> to send for querying.
99 public ReportedData sendSearchForm(Connection con, Form searchForm, String searchService) throws XMPPException {
125 * Sends the filled out answer form to be sent and queried by the search service.
128 * @param searchForm the <code>Form</code> to send for querying
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 24 import org.jivesoftware.smackx.Form;
33 * Represents a form that could be use for gathering data as well as for reporting data
52 * Returns the meaning of the data within the context. The data could be part of a form
53 * to fill out, a form submission or data results.<p>
55 * Possible form types are:
57 * <li>form -> This packet contains a form to fill out. Display it to the user (if your
59 * <li>submit -> The form is filled out, and this is the data that is being returned from
60 * the form.</li>
61 * <li>cancel -> The form was cancelled. Tell the asker that piece of information.</li
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
SubscribeForm.java 25 import org.jivesoftware.smackx.Form;
30 * A decorator for a {@link Form} to easily enable reading and updating
33 * <p>Unlike the {@link Form}.setAnswer(XXX)} methods, which throw an exception if the field does not
34 * exist, all <b>SubscribeForm.setXXX</b> methods will create the field in the wrapped form
39 public class SubscribeForm extends Form
46 public SubscribeForm(Form subscribeOptionsForm)
ConfigureForm.java 20 import org.jivesoftware.smackx.Form;
25 * A decorator for a {@link Form} to easily enable reading and updating
28 * <p>Unlike the {@link Form}.setAnswer(XXX)} methods, which throw an exception if the field does not
29 * exist, all <b>ConfigureForm.setXXX</b> methods will create the field in the wrapped form
34 public class ConfigureForm extends Form
48 * Create a decorator from an existing {@link Form} for node configuration.
49 * Typically, this can be used to create a decorator for an answer form
54 public ConfigureForm(Form nodeConfigForm)
60 * Create a new form for configuring a node. This would typically only be used
61 * when creating and configuring a node at the same time via {@link PubSubManager#createNode(String, Form)}, since
    [all...]
  /external/chromium_org/tools/stats_viewer/
OpenDialog.cs 15 public partial class OpenDialog : Form
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
StreamNegotiator.java 30 import org.jivesoftware.smackx.Form;
65 DataForm form = new DataForm(Form.TYPE_SUBMIT); local
71 form.addField(field);
73 response.setFeatureNegotiationForm(form);
  /external/chromium_org/net/android/java/src/org/chromium/net/
NetStringUtil.java 56 return Normalizer.normalize(unicodeString, Normalizer.Form.NFC);
  /external/smack/src/org/jivesoftware/smackx/workgroup/user/
Workgroup.java 32 import org.jivesoftware.smackx.Form;
227 * join the queue. In that case, the {@link #joinQueue(Form)} method should be
235 * passed in by using the {@link #joinQueue(Form, String)} method. When specified,
271 * passed in by using the {@link #joinQueue(Form, String)} method. When specified,
276 * @param answerForm the completed form the send for the join request.
281 public void joinQueue(Form answerForm) throws XMPPException {
311 * @param answerForm the completed form associated with the join reqest.
318 public void joinQueue(Form answerForm, String userID) throws XMPPException {
386 Form form = new Form(Form.TYPE_SUBMIT); local
591 private DataForm form; field in class:Workgroup.JoinQueuePacket
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 45 dumpAttribute(OS, u, &offset, AttrSpec.Attr, AttrSpec.Form, indent);
68 uint16_t attr, uint16_t form,
77 const char *formString = FormEncodingString(form);
81 OS << format(" [DW_FORM_Unknown_%x]", form);
83 DWARFFormValue formValue(form);
118 uint16_t Form = AttrSpec.Form;
121 (Form < FixedFormSizes.size()) ? FixedFormSizes[Form] : 0;
124 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, U))
    [all...]
  /art/test/092-locale/src/
Main.java 126 res = Normalizer.normalize(composed, Normalizer.Form.NFD);
132 res = Normalizer.normalize(decomposed, Normalizer.Form.NFC);
  /external/chromium-libpac/test/js-unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFFormValue.h 47 DWARFFormValue(dw_form_t form = 0);
48 dw_form_t Form() const { return m_form; }
49 void SetForm(dw_form_t form) { m_form = form; }
67 static bool SkipValue(const dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu);
68 // static bool TransferValue(dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu, BinaryStreamBuf& out_buff);
70 // static bool PutUnsigned(dw_form_t form, dw_offset_t offset, uint64_t value, BinaryStreamBuf& out_buff, const DWARFCompileUnit* cu, bool fixup_cu_relative_refs);
71 static bool IsBlockForm(const dw_form_t form);
72 static bool IsDataForm(const dw_form_t form);
76 dw_form_t m_form; // Form for this valu
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 47 /// The form field from the record
48 uint8_t Form;
X86RecognizableInstr.cpp 124 /// isRegFormat - Indicates whether a particular form requires the Mod field of
127 /// @param form - The form of the instruction.
128 /// @return - true if the form implies that Mod must be 0b11, false
130 static bool isRegFormat(uint8_t form) {
131 return (form == X86Local::MRMDestReg ||
132 form == X86Local::MRMSrcReg ||
133 form == X86Local::MRMXr ||
134 (form >= X86Local::MRM0r && form <= X86Local::MRM7r))
    [all...]
  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 176 uint64_t Form = TSFlags & MipsII::FormMask;
177 if (Form == MipsII::FrmJ)
179 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI)
182 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi)
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 175 Optional<dwarf::Form> Form, uint64_t Integer) {
176 if (!Form)
177 Form = DIEInteger::BestForm(false, Integer);
180 Die.addValue(Attribute, *Form, Value);
183 void DwarfUnit::addUInt(DIE &Block, dwarf::Form Form, uint64_t Integer) {
184 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
190 Optional<dwarf::Form> Form, int64_t Integer)
    [all...]
  /external/eigen/lapack/
clarfb.f 256 * Form H * C or H**H * C where C = ( C1 )
315 * Form C * H or C * H**H where C = ( C1 C2 )
381 * Form H * C or H**H * C where C = ( C1 )
444 * Form C * H or C * H**H where C = ( C1 C2 )
514 * Form H * C or H**H * C where C = ( C1 )
575 * Form C * H or C * H**H where C = ( C1 C2 )
640 * Form H * C or H**H * C where C = ( C1 )
703 * Form C * H or C * H**H where C = ( C1 C2 )
dlarfb.f 253 * Form H * C or H**T * C where C = ( C1 )
313 * Form C * H or C * H**T where C = ( C1 C2 )
379 * Form H * C or H**T * C where C = ( C1 )
440 * Form C * H or C * H**T where C = ( C1 C2 )
508 * Form H * C or H**T * C where C = ( C1 )
568 * Form C * H or C * H**T where C = ( C1 C2 )
634 * Form H * C or H**T * C where C = ( C1 )
695 * Form C * H or C * H**T where C = ( C1 C2 )
slarfb.f 253 * Form H * C or H**T * C where C = ( C1 )
313 * Form C * H or C * H**T where C = ( C1 C2 )
379 * Form H * C or H**T * C where C = ( C1 )
440 * Form C * H or C * H**T where C = ( C1 C2 )
508 * Form H * C or H**T * C where C = ( C1 )
568 * Form C * H or C * H**T where C = ( C1 C2 )
634 * Form H * C or H**T * C where C = ( C1 )
695 * Form C * H or C * H**T where C = ( C1 C2 )
zlarfb.f 256 * Form H * C or H**H * C where C = ( C1 )
316 * Form C * H or C * H**H where C = ( C1 C2 )
382 * Form H * C or H**H * C where C = ( C1 )
447 * Form C * H or C * H**H where C = ( C1 C2 )
517 * Form H * C or H**H * C where C = ( C1 )
578 * Form C * H or C * H**H where C = ( C1 C2 )
643 * Form H * C or H**H * C where C = ( C1 )
706 * Form C * H or C * H**H where C = ( C1 C2 )
clarf.f 40 *> form
58 *> = 'L': form H * C
59 *> = 'R': form C * H
199 * Form H * C
214 * Form C * H
dlarf.f 39 *> C, from either the left or the right. H is represented in the form
54 *> = 'L': form H * C
55 *> = 'R': form C * H
194 * Form H * C
209 * Form C * H
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageManager.java 94 Form extendedInfo = Form.getFormFrom(info);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 29 document.createElement('form')['__proto__']
1173 contentType: 'application/x-www-form-urlencoded',
    [all...]

Completed in 3387 milliseconds

12 3 4 5