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

1 2 3

  /external/swiftshader/third_party/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...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata.go 20 // a Content-Disposition of "form-data".
23 func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
27 func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
28 form := &Form{make(map[string][]string), make(map[string][]*FileHeader)}
31 form.RemoveAll()
63 form.Value[name] = append(form.Value[name], b.String())
95 form.File[name] = append(form.File[name], fh
    [all...]
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata.go 20 // a Content-Disposition of "form-data".
23 func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
27 func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
28 form := &Form{make(map[string][]string), make(map[string][]*FileHeader)}
31 form.RemoveAll()
63 form.Value[name] = append(form.Value[name], b.String())
95 form.File[name] = append(form.File[name], fh
    [all...]
  /external/icu/icu4c/source/i18n/
standardplural.h 26 * Standard CLDR plural form/category constants.
31 enum Form {
42 * @return the lowercase CLDR keyword string for the plural form
44 static const char *getKeyword(Form p);
48 * @return the plural form corresponding to the keyword, or OTHER
50 static Form orOtherFromString(const char *keyword) {
51 return static_cast<Form>(indexOrOtherIndexFromString(keyword));
56 * @return the plural form corresponding to the keyword, or OTHER
58 static Form orOtherFromString(const UnicodeString &keyword) {
59 return static_cast<Form>(indexOrOtherIndexFromString(keyword))
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp 47 uint16_t Form = Data.getULEB128(OffsetPtr);
52 if (Attr == 0 && Form == 0)
54 AttributeSpecs.push_back(AttributeSpec(Attr, Form));
80 const char *formString = FormEncodingString(Spec.Form);
84 OS << format("DW_FORM_Unknown_%x", Spec.Form);
  /libcore/ojluni/src/main/java/java/text/
Normalizer.java 43 * text into an equivalent composed or decomposed form, allowing for easier
52 * In Unicode, this can be encoded as a single character (the "composed" form):
57 * or as two separate characters (the "decomposed" form):
121 public enum Form {
145 Form(android.icu.text.Normalizer.Mode icuMode) {
156 * @param form The normalization form; one of
157 * {@link java.text.Normalizer.Form#NFC},
158 * {@link java.text.Normalizer.Form#NFD},
159 * {@link java.text.Normalizer.Form#NFKC}
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
25 uint16_t Form;
43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
DWARFAcceleratorTable.h 33 typedef uint16_t Form;
35 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
DWARFFormValue.h 51 uint16_t Form; // Form for this value.
52 ValueType Value; // Contains all data for the form.
55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {}
56 uint16_t getForm() const { return Form; }
74 /// DWARFFormValue has form class is suitable for representing Foo.
85 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
87 static bool skipValue(uint16_t form, DataExtractor debug_info_data
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrDefault.c 2 Function and Macro defintions for to extract default values from UEFI Form package.
179 Extract the default values from all questions in the input Form,
182 @param Form The Form which to be reset.
192 IN FORM_BROWSER_FORM *Form,
202 Link = GetFirstNode (&Form->StatementListHead);
203 while (!IsNull (&Form->StatementListHead, Link)) {
213 Link = GetNextNode (&Form->StatementListHead, Link);
246 @param FormSet The Form Set.
262 FORM_BROWSER_FORM *Form;
    [all...]
ConfigAccess.c 62 @param FormSet The Form Set.
65 @retval NULL If the Form Set does not have EFI_IFR_VARSTORE.
91 @param FormSet The Form Set.
95 @retval NULL If the Form Set does not have EFI_IFR_VARSTORE.
105 FORM_BROWSER_FORM *Form;
111 Form = FORM_BROWSER_FORM_FROM_LINK (FormList);
113 StatementList = GetFirstNode (&Form->StatementListHead);
115 while (!IsNull (&Form->StatementListHead, StatementList)) {
124 StatementList = GetNextNode (&Form->StatementListHead, StatementList);
137 @param FormSet The Form Set.
    [all...]
OpcodeCreation.c 86 FORM_BROWSER_FORM *Form;
99 Form = FORM_BROWSER_FORM_FROM_LINK (FormList);
101 StatementList = GetFirstNode (&Form->StatementListHead);
103 while (!IsNull (&Form->StatementListHead, StatementList)) {
119 // One possible solution is to remove the one of the duplicated questions in this Form Set.
125 // Continue the search to check if the Form Set contains more than one questins that has the 3 attributes
132 StatementList = GetNextNode (&Form->StatementListHead, StatementList);
    [all...]
UefiIfrParser.c 101 @param Form Pointer of the current Form.
110 IN OUT FORM_BROWSER_FORM *Form
116 if (Form == NULL) {
118 // We are currently not in a Form Scope, so just skip this Statement
140 // Insert this Statement into current Form
142 InsertTailList (&Form->StatementListHead, &Statement->Link);
152 @param Form Pointer of the current Form.
161 IN OUT FORM_BROWSER_FORM *Form
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UserCredential.h 59 This function returns information about the form used when interacting with the user during user
60 identification. The form is the first enabled form in the form-set class
62 the user credential provider does not require a form to identify the user, then this function should
67 @param[out] FormSetId On return, holds the identifier of the form set which contains
68 the form used during user identification.
69 @param[out] FormId On return, holds the identifier of the form used during user
72 @retval EFI_SUCCESS Form returned successfully.
73 @retval EFI_NOT_FOUND Form not returned.
    [all...]
UserCredential2.h 57 This function returns information about the form used when interacting with the user during user
58 identification. The form is the first enabled form in the form-set class
60 the user credential provider does not require a form to identify the user, then this function should
65 @param[out] FormSetId On return, holds the identifier of the form set which contains
66 the form used during user identification.
67 @param[out] FormId On return, holds the identifier of the form used during user
70 @retval EFI_SUCCESS Form returned successfully.
71 @retval EFI_NOT_FOUND Form not returned.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/
IfrOnTheFly.c 127 // Copy the formset/endformset data to the form buffer
153 Create a form
157 FormTitle - Title of the form
159 FormId - Id of the form
161 FormBuffer - Pointer of the form created
167 EFI_SUCCESS - Form successfully created
172 EFI_IFR_FORM Form;
188 Form.Header.OpCode = EFI_IFR_FORM_OP;
189 Form.Header.Length = sizeof (EFI_IFR_FORM);
190 Form.FormId = FormId;
    [all...]
  /external/curl/lib/
formdata.h 26 FORM_DATA, /* form metadata (convert to network encoding if necessary) */
27 FORM_CONTENT, /* form content (never convert) */
31 to create the form data (never convert) */
42 struct Form {
43 struct FormData *data; /* current form line to send */
71 int Curl_FormInit(struct Form *form, struct FormData *formdata);
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 46 /// The form field from the record
47 uint8_t Form;
  /external/pdfium/xfa/fwl/
cfwl_widget.h 29 Form,
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.h 47 /// The form field from the record
48 uint8_t Form;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 17 // A Form denotes a canonical representation of Unicode code points.
20 // NFC Unicode Normalization Form C
21 // NFD Unicode Normalization Form D
22 // NFKC Unicode Normalization Form KC
23 // NFKD Unicode Normalization Form KD
25 // For a Form f, this documentation uses the notation f(x) to mean
26 // the bytes or string x converted to the given form.
27 // A position n in x is called a boundary if conversion to the form can
33 type Form int
36 NFC Form = iot
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 17 // A Form denotes a canonical representation of Unicode code points.
20 // NFC Unicode Normalization Form C
21 // NFD Unicode Normalization Form D
22 // NFKC Unicode Normalization Form KC
23 // NFKD Unicode Normalization Form KD
25 // For a Form f, this documentation uses the notation f(x) to mean
26 // the bytes or string x converted to the given form.
27 // A position n in x is called a boundary if conversion to the form can
33 type Form int
36 NFC Form = iot
    [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...]

Completed in 469 milliseconds

1 2 3