HomeSort by relevance Sort by last modified time
    Searched refs:Form (Results 76 - 100 of 238) sorted by null

1 2 34 5 6 7 8 910

  /art/compiler/debug/dwarf/
debug_abbrev_writer.h 59 void AddAbbrevAttribute(Attribute name, Form type) {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
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/
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...]
  /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...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
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...]
  /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;
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 32 public enum Form { SCIENTIFIC, COMPATIBLE, DECIMAL_FLOAT, GENERAL };
35 public static FormattedFloatingDecimal valueOf(double d, int precision, Form form){
37 FloatingDecimal.getBinaryToASCIIConverter(d, form == Form.COMPATIBLE);
38 return new FormattedFloatingDecimal(precision,form, fdConverter);
57 private FormattedFloatingDecimal(int precision, Form form, FloatingDecimal.BinaryToASCIIConverter fdConverter) {
68 switch (form) {
89 // form = Form.SCIENTIFIC
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 47 llvm::dwarf::Form Form;
282 template <> struct ScalarEnumerationTraits<dwarf::Form> {
283 static void enumeration(IO &io, dwarf::Form &value) {
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 41 AddrForm Form;
63 SystemZAddressingMode(AddrForm form, DispRange dr)
64 : Form(form), DR(dr), Base(), Disp(0), Index(),
68 bool hasIndexField() { return Form != FormBD; }
71 bool isDynAlloc() { return Form == FormBDXDynAlloc; }
174 // Try to match Addr as a FormBDX* address of form Form with
177 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
569 if (AM.Form == SystemZAddressingMode::FormBDXLA &
    [all...]

Completed in 2354 milliseconds

1 2 34 5 6 7 8 910