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

12 3 4 5 6 7

  /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...]
  /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...]
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...]
  /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...]
transform.go 14 func (Form) Reset() {}
20 func (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
55 func (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
forminfo.go 7 // This file contains Form-specific logic and wrappers for data in tables.go.
9 // Rune info is stored in a separate trie per composing form. A composing form
10 // and its corresponding decomposing form share the same trie. Each trie maps
18 // has the form:
48 // functions dispatchable per form
51 // formInfo holds Form-specific functions and tables.
53 form Form
54 composing, compatibility bool // form typ
    [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...]
transform.go 14 func (Form) Reset() {}
20 func (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
55 func (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
forminfo.go 7 // This file contains Form-specific logic and wrappers for data in tables.go.
9 // Rune info is stored in a separate trie per composing form. A composing form
10 // and its corresponding decomposing form share the same trie. Each trie maps
18 // has the form:
48 // functions dispatchable per form
51 // formInfo holds Form-specific functions and tables.
53 form Form
54 composing, compatibility bool // form typ
    [all...]
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 115 getIndexedString(uint32_t Form, DataExtractor InfoData, uint32_t &InfoOffset,
117 if (Form == dwarf::DW_FORM_string)
119 if (Form != dwarf::DW_FORM_GNU_str_index)
151 uint32_t Form;
154 (Form = AbbrevData.getULEB128(&AbbrevOffset)) &&
155 (Name != 0 || Form != 0)) {
159 getIndexedString(Form, InfoData, Offset, StrOffsets, Str);
167 getIndexedString(Form, InfoData, Offset, StrOffsets, Str);
177 DWARFFormValue::skipValue(Form, InfoData, &Offset, Version, AddrSize);
  /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)
  /art/compiler/debug/dwarf/
debug_abbrev_writer.h 59 void AddAbbrevAttribute(Attribute name, Form type) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Expression.c 430 @param Level Which type this expression belong to. Form,
458 @param Level Which type this expression belong to. Form,
487 @param Level Which type this expression belong to. Form,
531 @param Level Which type this expression belong to. Form,
777 Get Form given its FormId.
779 @param FormSet The formset which contains this form.
780 @param FormId Id of this form.
782 @retval Pointer The form.
783 @retval NULL Specified Form is not found in the formset.
793 FORM_BROWSER_FORM *Form;
    [all...]
Setup.h 156 // <RequestElement> includes all fields which is used by current form sets.
403 UINT16 FormId; // FormId of normal form or formmap form.
404 EFI_STRING_ID FormTitle; // FormTile of normal form, or FormMapMethod title of formmap form.
405 UINT16 FormType; // Specific form type for the different form.
409 BOOLEAN ModalForm; // Whether this is a modal form.
410 BOOLEAN Locked; // Whether this form is locked.
411 EFI_GUID RefreshGuid; // Form refresh event guid.
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugInfoEntry.cpp 60 dumpAttribute(OS, u, &offset, AttrSpec.Attr, AttrSpec.Form, indent);
114 uint16_t attr, uint16_t form,
125 const char *formString = FormEncodingString(form);
129 OS << format(" [DW_FORM_Unknown_%x]", form);
131 DWARFFormValue formValue(form);
209 uint16_t Form = AttrSpec.Form;
212 (Form < FixedFormSizes.size()) ? FixedFormSizes[Form] : 0;
215 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, U))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
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...]
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutTest.java 670 private List<CharSequence> buildTestCharSequences(String testString, Normalizer.Form[] forms) {
674 for (Normalizer.Form form: forms) {
675 normalizedStrings.add(Normalizer.normalize(testString, form));
690 if (Normalizer.isNormalized(seq, Normalizer.Form.NFC)) {
692 } else if (Normalizer.isNormalized(seq, Normalizer.Form.NFD)) {
694 } else if (Normalizer.isNormalized(seq, Normalizer.Form.NFKC)) {
696 } else if (Normalizer.isNormalized(seq, Normalizer.Form.NFKD)) {
699 throw new IllegalStateException("Normalized form is not NFC/NFD/NFKC/NFKD");
717 for (CharSequence seq: buildTestCharSequences(testString, Normalizer.Form.values()))
    [all...]
  /art/test/092-locale/src/
Main.java 126 res = Normalizer.normalize(composed, Normalizer.Form.NFD);
132 res = Normalizer.normalize(decomposed, Normalizer.Form.NFC);
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
DisplayProtocol.h 2 FormDiplay protocol to show Form
105 @param Form Form where Statement is in.
115 IN FORM_DISPLAY_ENGINE_FORM *Form,
125 @param Form Form where Password Statement is in.
136 IN FORM_DISPLAY_ENGINE_FORM *Form,
144 // Attribute for Statement and Form
160 // link to all the statement which will show in the display form.
239 // Statement List inside of Form
    [all...]
  /external/chromium-libpac/test/js-unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 194 Optional<dwarf::Form> Form, uint64_t Integer) {
195 if (!Form)
196 Form = DIEInteger::BestForm(false, Integer);
197 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
200 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form,
202 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
206 Optional<dwarf::Form> Form, int64_t Integer)
    [all...]
  /external/icu/icu4c/source/i18n/
standardplural.cpp 29 const char *StandardPlural::getKeyword(Form p) {
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 46 /// The form field from the record
47 uint8_t Form;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.h 47 /// The form field from the record
48 uint8_t Form;

Completed in 264 milliseconds

12 3 4 5 6 7