Home
last modified time | relevance | path

Searched refs:form (Results 1 – 25 of 2115) sorted by relevance

12345678910>>...85

/external/elfutils/src/tests/
Drun-show-abbrev.sh25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
33 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
34 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
35 abbrev[19]: attr[2]: code = 3, form = 8, offset = 23
[all …]
/external/vixl/src/vixl/a64/
Ddisasm-a64.cc67 const char *form = "'Rds, 'Rns, 'IAddSub"; in VisitAddSubImmediate() local
77 form = form_mov; in VisitAddSubImmediate()
86 form = form_cmp; in VisitAddSubImmediate()
97 form = form_cmp; in VisitAddSubImmediate()
103 Format(instr, mnemonic, form); in VisitAddSubImmediate()
111 const char *form = "'Rd, 'Rn, 'Rm'NDP"; in VisitAddSubShifted() local
123 form = form_cmp; in VisitAddSubShifted()
132 form = form_neg; in VisitAddSubShifted()
141 form = form_cmp; in VisitAddSubShifted()
144 form = form_neg; in VisitAddSubShifted()
[all …]
/external/v8/src/arm64/
Ddisasm-arm64.cc57 const char *form = "'Rds, 'Rns, 'IAddSub"; in VisitAddSubImmediate() local
67 form = form_mov; in VisitAddSubImmediate()
76 form = form_cmp; in VisitAddSubImmediate()
87 form = form_cmp; in VisitAddSubImmediate()
93 Format(instr, mnemonic, form); in VisitAddSubImmediate()
101 const char *form = "'Rd, 'Rn, 'Rm'HDP"; in VisitAddSubShifted() local
113 form = form_cmp; in VisitAddSubShifted()
122 form = form_neg; in VisitAddSubShifted()
131 form = form_cmp; in VisitAddSubShifted()
134 form = form_neg; in VisitAddSubShifted()
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
DAttributeCertificateIssuer.java20 final ASN1Encodable form; field in AttributeCertificateIssuer
29 form = issuer.getIssuer(); in AttributeCertificateIssuer()
34 form = new V2Form(new GeneralNames(new GeneralName(principal))); in AttributeCertificateIssuer()
41 if (form instanceof V2Form) in getNames()
43 name = ((V2Form)form).getIssuerName(); in getNames()
47 name = (GeneralNames)form; in getNames()
87 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form)); in clone()
104 return this.form.equals(other.form); in equals()
109 return this.form.hashCode(); in hashCode()
121 if (form instanceof V2Form) in match()
[all …]
/external/google-breakpad/src/common/dwarf/
Ddwarf2diehandler.h199 enum DwarfForm form, in ProcessAttributeUnsigned() argument
202 enum DwarfForm form, in ProcessAttributeSigned() argument
205 enum DwarfForm form, in ProcessAttributeReference() argument
208 enum DwarfForm form, in ProcessAttributeBuffer() argument
212 enum DwarfForm form, in ProcessAttributeString() argument
215 enum DwarfForm form, in ProcessAttributeSignature() argument
299 enum DwarfForm form,
303 enum DwarfForm form,
307 enum DwarfForm form,
311 enum DwarfForm form,
[all …]
Ddwarf2diehandler.cc139 enum DwarfForm form, in ProcessAttributeUnsigned() argument
144 current.handler_->ProcessAttributeUnsigned(attr, form, data); in ProcessAttributeUnsigned()
149 enum DwarfForm form, in ProcessAttributeSigned() argument
154 current.handler_->ProcessAttributeSigned(attr, form, data); in ProcessAttributeSigned()
159 enum DwarfForm form, in ProcessAttributeReference() argument
164 current.handler_->ProcessAttributeReference(attr, form, data); in ProcessAttributeReference()
169 enum DwarfForm form, in ProcessAttributeBuffer() argument
175 current.handler_->ProcessAttributeBuffer(attr, form, data, len); in ProcessAttributeBuffer()
180 enum DwarfForm form, in ProcessAttributeString() argument
185 current.handler_->ProcessAttributeString(attr, form, data); in ProcessAttributeString()
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFAbbreviationDeclaration.cpp53 dw_form_t form = data.GetULEB128(offset_ptr); in Extract() local
55 if (attr && form) in Extract()
56 m_attributes.push_back(DWARFAttribute(attr, form)); in Extract()
106 dw_form_t form; in CopyExcludingAddressAttributes() local
111 attributes[i].get(attr, form); in CopyExcludingAddressAttributes()
119 if (DWARFFormValue::IsBlockForm(form)) in CopyExcludingAddressAttributes()
120 m_attributes.push_back(DWARFAttribute(attr, form)); in CopyExcludingAddressAttributes()
133 m_attributes.push_back(DWARFAttribute(attr, form)); in CopyExcludingAddressAttributes()
156 dw_form_t form; in CopyChangingStringToStrp() local
162 attributes[i].get(attr, form); in CopyChangingStringToStrp()
[all …]
DDWARFAttribute.h19 DWARFAttribute(dw_attr_t attr, dw_form_t form) : in DWARFAttribute() argument
20 m_attr_form ( attr << 16 | form ) in DWARFAttribute()
24 void set(dw_attr_t attr, dw_form_t form) { m_attr_form = (attr << 16) | form; } in set() argument
26 void set_form(dw_form_t form) { m_attr_form = (m_attr_form & 0xffff0000u) | form; } in set_form() argument
29 void get(dw_attr_t& attr, dw_form_t& form) const in get() argument
33 form = (dw_form_t)attr_form; in get()
DDWARFFormValue.h47 DWARFFormValue(dw_form_t form = 0);
49 void SetForm(dw_form_t form) { m_form = form; } in SetForm() argument
67 …static bool SkipValue(const dw_form_t form, const lldb_private::DataExtractor& debug_info_…
71 static bool IsBlockForm(const dw_form_t form);
72 static bool IsDataForm(const dw_form_t form);
DDWARFAbbreviationDeclaration.h38 bool GetAttrAndFormByIndex(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const in GetAttrAndFormByIndex() argument
42 m_attributes[idx].get(attr, form); in GetAttrAndFormByIndex()
45 attr = form = 0; in GetAttrAndFormByIndex()
50 …void GetAttrAndFormByIndexUnchecked(uint32_t idx, dw_attr_t& attr, dw_form_t& form) con… in GetAttrAndFormByIndexUnchecked() argument
52 m_attributes[idx].get(attr, form); in GetAttrAndFormByIndexUnchecked()
/external/boringssl/src/crypto/ec/
Doct.c78 point_conversion_form_t form, in ec_GFp_simple_point2oct() argument
86 if ((form != POINT_CONVERSION_COMPRESSED) && in ec_GFp_simple_point2oct()
87 (form != POINT_CONVERSION_UNCOMPRESSED)) { in ec_GFp_simple_point2oct()
108 (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2 * field_len; in ec_GFp_simple_point2oct()
136 if ((form == POINT_CONVERSION_COMPRESSED) && in ec_GFp_simple_point2oct()
138 buf[0] = form + 1; in ec_GFp_simple_point2oct()
140 buf[0] = form; in ec_GFp_simple_point2oct()
150 if (form == POINT_CONVERSION_UNCOMPRESSED) { in ec_GFp_simple_point2oct()
182 point_conversion_form_t form; in ec_GFp_simple_oct2point() local
193 form = buf[0]; in ec_GFp_simple_oct2point()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DAttributeCertificateIssuer.java29 final ASN1Encodable form; field in AttributeCertificateIssuer
38 form = issuer.getIssuer(); in AttributeCertificateIssuer()
49 form = new V2Form(GeneralNames.getInstance(new DERSequence(new GeneralName(principal)))); in AttributeCertificateIssuer()
56 if (form instanceof V2Form) in getNames()
58 name = ((V2Form)form).getIssuerName(); in getNames()
62 name = (GeneralNames)form; in getNames()
138 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form)); in clone()
150 if (form instanceof V2Form) in match()
152 V2Form issuer = (V2Form)form; in match()
167 GeneralNames name = (GeneralNames)form; in match()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DPeriodFormatterData.java195 int form = computeForm(unit, count, cv, multiple && last); in appendUnit() local
196 if (form == FORM_SINGULAR_SPELLED) { in appendUnit()
198 form = FORM_SINGULAR; in appendUnit()
199 name = dr.pluralNames[px][form]; in appendUnit()
203 } else if (form == FORM_SINGULAR_NO_OMIT) { in appendUnit()
205 } else if (form == FORM_HALF_SPELLED) { in appendUnit()
209 name = dr.pluralNames[px][form]; in appendUnit()
211 …ointer in PeriodFormatterData["+localeName+"].au px: " + px + " form: " + form + " pn: " + Arrays.… in appendUnit()
216 form = FORM_PLURAL; in appendUnit()
217 name = dr.pluralNames[px][form]; in appendUnit()
[all …]
/external/elfutils/src/libdw/
Ddwarf_getabbrevattr.c54 unsigned int form; local
63 get_uleb128 (form, attrp, attrp + len_leb128 (form));
66 if (name == 0 && form == 0)
75 *formp = form;
Ddwarf_formudata.c53 if (attr->form == DW_FORM_sec_offset) in __libdw_formptr()
63 switch (attr->form) in __libdw_formptr()
70 attr->form == DW_FORM_data4 ? 4 : 8, in __libdw_formptr()
107 switch (attr->form)
132 if (attr->form == DW_FORM_sec_offset
188 if (attr->form == DW_FORM_sec_offset)
197 attr->form == DW_FORM_data4 ? 4 : 8,
208 attr->form == DW_FORM_data4 ? 4 : 8,
Ddwarf_formref_die.c49 if (attr->form == DW_FORM_ref_addr || attr->form == DW_FORM_GNU_ref_alt)
53 uint8_t ref_size = (cu->version == 2 && attr->form == DW_FORM_ref_addr
57 Dwarf *dbg_ret = (attr->form == DW_FORM_GNU_ref_alt
75 if (attr->form == DW_FORM_ref_sig8)
Ddwarf_formstring.c47 if (attrp->form == DW_FORM_string)
52 Dwarf *dbg_ret = attrp->form == DW_FORM_GNU_strp_alt ? dbg->alt_dwarf : dbg;
61 if (unlikely (attrp->form != DW_FORM_strp
62 && attrp->form != DW_FORM_GNU_strp_alt)
/external/llvm/lib/Target/AArch64/
DAArch64SchedA57.td339 // D form - v8i8, v4i16, v2i32
340 // Q form - v16i8, v8i16, v4i32
341 // D form - v1i8, v1i16, v1i32, v1i64
342 // Q form - v16i8, v8i16, v4i32, v2i64
343 // D form - v8i8_v8i16, v4i16_v4i32, v2i32_v2i64
344 // Q form - v16i8_v8i16, v8i16_v4i32, v4i32_v2i64
346 // ASIMD absolute diff accum, D-form
348 // ASIMD absolute diff accum, Q-form
367 // ASIMD multiply, D-form
369 // ASIMD multiply, Q-form
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/cgiapp_data/
Dform.cgi8 form = cgi.FieldStorage() variable
10 print('Filename: %s' % form['up'].filename)
11 print('Name: %s' % form['name'].value)
12 print('Content: %s' % form['up'].file.read())
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/tutorials/gettingstarted/
Dhandlingforms.rst6 process information submitted by the user with a web form. The ``webapp2``
7 framework makes processing form data easy.
24 <form action="/sign" method="post">
27 </form>
48 Reload the page to see the form, then try submitting a message.
51 a web form. ``Guestbook``, mapped to the URL ``/sign``, displays the data
52 submitted by the web form.
55 method. This is because the form displayed by ``MainPage`` uses the HTTP POST
56 method (``method="post"``) to submit the form data. If for some reason you
60 The code for the ``post()`` method gets the form data from ``self.request``.
/external/lldb/test/pexpect-2.4/examples/
Dcgishell.cgi238 form = cgi.FieldStorage()
239 if form.has_key('ajax'):
241 ajax_cmd = form['ajax'].value
242 SID=form['sid'].value
245 arg = form['arg'].value.encode('hex')
264 elif not form.has_key('sid'):
268 SID=form['sid'].value
269 if form.has_key('start_server'):
270 USERNAME = form['username'].value
271 PASSWORD = form['password'].value
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tree_construction/
Disindex.dat8 | <form>
23 | <form>
34 <form><isindex>
40 | <form>
Dtests20.dat122 <!doctype html><p><button><form>
131 | <form>
297 <!doctype html><form><table><form>
304 | <form>
308 <!doctype html><table><form><form>
316 | <form>
319 <!doctype html><table><form></table><form>
327 | <form>
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
DPySourceColor.py696 form = None
719 form = 'external'
751 footer=footer, form=form)
763 form=form)
767 linenumbers=linenumbers, form=form)
781 footer=footer, linenumbers=linenumbers, form=form)
817 linenumbers=1, form='external')
884 linenumbers=0, form=None): argument
892 linenumbers=linenumbers).format(form)
896 linenumbers=0, form=None): argument
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DUnicodeNormalizer.java27 public UnicodeNormalizer(byte form, boolean fullData) { in UnicodeNormalizer() argument
28 this.form = form; in UnicodeNormalizer()
61 if ((form & COMPOSITION_MASK) != 0) { in normalize()
84 private byte form; field in UnicodeNormalizer
98 boolean canonical = (form & COMPATIBILITY_MASK) == 0; in internalDecompose()

12345678910>>...85