HomeSort by relevance Sort by last modified time
    Searched defs:Form (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/lib/DebugInfo/
DWARFAttribute.h 19 uint16_t Form;
21 DWARFAttribute(uint16_t attr, uint16_t form)
22 : Attribute(attr), Form(form) {}
25 uint16_t getForm() const { return Form; }
DWARFDebugInfoEntry.cpp 47 uint16_t form = AbbrevDecl->getFormByIndex(i); local
48 dumpAttribute(OS, cu, &offset, attr, form, indent);
72 uint16_t form,
81 const char *formString = FormEncodingString(form);
85 OS << format(" [DW_FORM_Unknown_%x]", form);
87 DWARFFormValue formValue(form);
114 uint16_t Form = AbbrevDecl->getFormByIndex(i);
120 (Form < DW_FORM_ref_sig8) ? FixedFormSizes[Form] : 0;
123 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr
    [all...]
  /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...]
  /libcore/luni/src/main/java/java/text/
Normalizer.java 35 public static enum Form {
37 * Normalization Form D - Canonical Decomposition.
42 * Normalization Form C - Canonical Decomposition, followed by Canonical Composition.
47 * Normalization Form KD - Compatibility Decomposition.
52 * Normalization Form KC - Compatibility Decomposition, followed by Canonical Composition.
59 * according to the normalization method <code>form</code>.
62 * @param form normalization form to check against
63 * @return true if normalized according to <code>form</code>
65 public static boolean isNormalized(CharSequence src, Form form)
    [all...]
  /external/chromium_org/v8/benchmarks/spinning-balls/
v.js 8 // * Redistributions in binary form must reproduce the above
428 function Form() {
432 this.form = create("form");
433 this.form.setAttribute("action", "javascript:start()");
464 this.form.appendChild(table);
465 this.form.appendChild(button);
467 document.body.appendChild(this.form);
471 Form.prototype.remove = function () {
472 document.body.removeChild(this.form);
    [all...]
  /external/v8/benchmarks/spinning-balls/
v.js 8 // * Redistributions in binary form must reproduce the above
428 function Form() {
432 this.form = create("form");
433 this.form.setAttribute("action", "javascript:start()");
464 this.form.appendChild(table);
465 this.form.appendChild(button);
467 document.body.appendChild(this.form);
471 Form.prototype.remove = function () {
472 document.body.removeChild(this.form);
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 44 uint16_t Form; // Form for this value.
45 ValueType Value; // Contains all data for the form.
48 DWARFFormValue(uint16_t form = 0) : Form(form) {}
49 uint16_t getForm() const { return Form; }
61 /// the compile unit at a later time in order to work with the form
73 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
75 static bool isBlockForm(uint16_t form);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 164 uint64_t Form = TSFlags & MipsII::FormMask;
165 if (Form == MipsII::FrmJ)
167 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI)
170 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi)
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 45 /// The form field from the record
46 uint8_t Form;
  /external/smack/src/org/jivesoftware/smackx/
Form.java 33 * Represents a Form for gathering data. The form could be of the following types:
35 * <li>form -> Indicates a form to fill out.</li>
36 * <li>submit -> The form is filled out, and this is the data that is being returned from
37 * the form.</li>
38 * <li>cancel -> The form was cancelled. Tell the asker that piece of information.</li>
42 * Depending of the form's type different operations are available. For example, it's only possible
43 * to set answers if the form is of type "submit".
49 public class Form {
527 Form form = new Form(TYPE_SUBMIT); local
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkPanose.h 308 struct Form {
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 38 /// Form - Dwarf form code.
40 uint16_t Form;
42 DIEAbbrevData(uint16_t A, uint16_t F) : Attribute(A), Form(F) {}
46 uint16_t getForm() const { return Form; }
87 void AddAttribute(uint16_t Attribute, uint16_t Form) {
88 Data.push_back(DIEAbbrevData(Attribute, Form));
161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
162 Abbrev.AddAttribute(Attribute, Form);
216 virtual void EmitValue(AsmPrinter *AP, unsigned Form) const = 0
    [all...]
DwarfCompileUnit.cpp 113 unsigned Form, uint64_t Integer) {
114 if (!Form) Form = DIEInteger::BestForm(false, Integer);
117 Die->addValue(Attribute, Form, Value);
123 unsigned Form, int64_t Integer) {
124 if (!Form) Form = DIEInteger::BestForm(true, Integer);
126 Die->addValue(Attribute, Form, Value);
136 unsigned Form;
145 Form = dwarf::DW_FORM_strp
665 unsigned form = 0; local
    [all...]
DwarfDebug.cpp     [all...]
  /external/skia/src/sfnt/
SkPanose.h 308 struct Form {
  /external/harfbuzz/src/
harfbuzz-indic.cpp 51 enum Form {
903 static inline Form form(unsigned short uc) { function
911 return (Form)indicForms[uc-0x900];
950 Form form; member in struct:IndicOrdering
965 { (Form)0, None }
977 { (Form)0, None }
987 { (Form)0, None }
994 { (Form)0, None
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-indic.cpp 51 enum Form {
903 static inline Form form(unsigned short uc) { function
911 return (Form)indicForms[uc-0x900];
950 Form form; member in struct:IndicOrdering
965 { (Form)0, None }
977 { (Form)0, None }
987 { (Form)0, None }
994 { (Form)0, None
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 797 // Set bit I(25) to identify this is the immediate form of <shifter_op>
815 // Set bit I(25) to identify this is the immediate form of <shifter_op>
840 // Set bit I(25) to identify this is the immediate form of <shifter_op>
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 39 AddrForm Form;
61 SystemZAddressingMode(AddrForm form, DispRange dr)
62 : Form(form), DR(dr), Base(), Disp(0), Index(),
66 bool hasIndexField() { return Form != FormBD; }
69 bool isDynAlloc() { return Form == FormBDXDynAlloc; }
162 // Try to match Addr as a FormBDX* address of form Form with
165 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
502 if (AM.Form == SystemZAddressingMode::FormBDXLA &
    [all...]
  /external/tcpdump/
print-snmp.c 12 * 2. Redistributions in binary form must reproduce the above copyright
248 const char *Form[] = {
341 u_char form, class; /* tag info */ member in struct:be
408 u_char form, class, id; local
428 form = (*p & 0xe0) >> 5; /* move upper 3 bits to lower 3 */
429 class = form >> 1; /* bits 7&6 -> bits 1&0, range 0-3 */
430 form &= 0x1; /* bit 5 -> bit 0, range 0-1 */
432 form = (u_char)(*p & ASN_FORM_BITS) >> ASN_FORM_SHIFT;
435 elem->form = form;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 233 class Form:
234 """The Tix Form geometry manager
242 form = config variable in class:Form
245 Form.form(self, {key: value})
278 Tkinter.Widget.__bases__ = Tkinter.Widget.__bases__ + (Form,)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 233 class Form:
234 """The Tix Form geometry manager
242 form = config variable in class:Form
245 Form.form(self, {key: value})
278 Tkinter.Widget.__bases__ = Tkinter.Widget.__bases__ + (Form,)
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 1629 milliseconds

1 2