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

  /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; }
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
69 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
71 static bool isBlockForm(uint16_t form);
    [all...]
  /external/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/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 148 uint64_t Form = TSFlags & MipsII::FormMask;
149 if (Form == MipsII::FrmJ)
151 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI)
154 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi)
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 47 /// The form field from the record
48 uint8_t Form;
ARMDecoderEmitter.cpp 92 static const char *stringForARMFormat(ARMFormat form) {
94 switch(form) {
162 static bool thumbInstruction(uint8_t Form) {
163 return Form == ARM_FORMAT_THUMBFRM;
745 stringForARMFormat((ARMFormat)getByteField(Def, "Form"));
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 36 /// Form - Dwarf form code.
38 unsigned Form;
40 DIEAbbrevData(unsigned A, unsigned F) : Attribute(A), Form(F) {}
44 unsigned getForm() const { return Form; }
85 void AddAttribute(unsigned Attribute, unsigned Form) {
86 Data.push_back(DIEAbbrevData(Attribute, Form));
91 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value)
    [all...]
DwarfCompileUnit.cpp 54 unsigned Form, uint64_t Integer) {
55 if (!Form) Form = DIEInteger::BestForm(false, Integer);
58 Die->addValue(Attribute, Form, Value);
64 unsigned Form, int64_t Integer) {
65 if (!Form) Form = DIEInteger::BestForm(true, Integer);
67 Die->addValue(Attribute, Form, Value);
72 void CompileUnit::addString(DIE *Die, unsigned Attribute, unsigned Form,
75 Die->addValue(Attribute, Form, Value)
510 unsigned form = 0; local
    [all...]
DwarfDebug.cpp     [all...]
  /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/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 785 // Set bit I(25) to identify this is the immediate form of <shifter_op>
803 // Set bit I(25) to identify this is the immediate form of <shifter_op>
828 // Set bit I(25) to identify this is the immediate form of <shifter_op>
    [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...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 5967 milliseconds