/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...] |
/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...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/ |
IfrParse.c | 26 @param Form Pointer of the current Form.
35 IN OUT FORM_BROWSER_FORM *Form
42 if (Form == NULL) {
44 // Only guid op may out side the form level.
70 // Form is inside of suppressif
82 // Insert this Statement into current Form
84 if (Form == NULL) {
87 InsertTailList (&Form->StatementListHead, &Statement->Link);
167 @param Form Pointer of the current Form. [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
request_test.go | 35 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value") 49 if qs := req.Form["q"]; !reflect.DeepEqual(qs, []string{"foo", "bar"}) { 50 t.Errorf(`req.Form["q"] = %q, want ["foo", "bar"]`, qs) 52 if both := req.Form["both"]; !reflect.DeepEqual(both, []string{"y", "x"}) { 53 t.Errorf(`req.Form["both"] = %q, want ["y", "x"]`, both) 58 if orphan := req.Form["orphan"]; !reflect.DeepEqual(orphan, []string{"", "nope"}) { 61 if empty := req.Form["empty"]; !reflect.DeepEqual(empty, []string{"", "not"}) { 64 if nokey := req.Form[""]; !reflect.DeepEqual(nokey, []string{"nokey"}) { 69 // Tests that we only parse the form automatically for certain methods. 74 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value" [all...] |
request.go | 67 // request's Content-Type is not multipart/form-data. 68 ErrNotMultipart = &ProtocolError{"request Content-Type isn't multipart/form-data"} 211 // It may be of the form "host:port". For international domain 212 // names, Host may be in Punycode or Unicode form. Use 222 // Form contains the parsed form data, including both the URL 223 // field's query parameters and the POST or PUT form data. 225 // The HTTP client ignores Form and uses Body instead. 226 Form url.Values 228 // PostForm contains the parsed form data from POST, PATCH [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
request_test.go | 35 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value") 49 if qs := req.Form["q"]; !reflect.DeepEqual(qs, []string{"foo", "bar"}) { 50 t.Errorf(`req.Form["q"] = %q, want ["foo", "bar"]`, qs) 52 if both := req.Form["both"]; !reflect.DeepEqual(both, []string{"y", "x"}) { 53 t.Errorf(`req.Form["both"] = %q, want ["y", "x"]`, both) 58 if orphan := req.Form["orphan"]; !reflect.DeepEqual(orphan, []string{"", "nope"}) { 61 if empty := req.Form["empty"]; !reflect.DeepEqual(empty, []string{"", "not"}) { 64 if nokey := req.Form[""]; !reflect.DeepEqual(nokey, []string{"nokey"}) { 69 // Tests that we only parse the form automatically for certain methods. 74 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value" [all...] |
request.go | 67 // request's Content-Type is not multipart/form-data. 68 ErrNotMultipart = &ProtocolError{"request Content-Type isn't multipart/form-data"} 211 // It may be of the form "host:port". For international domain 212 // names, Host may be in Punycode or Unicode form. Use 222 // Form contains the parsed form data, including both the URL 223 // field's query parameters and the POST or PUT form data. 225 // The HTTP client ignores Form and uses Body instead. 226 Form url.Values 228 // PostForm contains the parsed form data from POST, PATCH [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...] |
/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...] |
/external/eigen/lapack/ |
clarfb.f | 256 * Form H * C or H**H * C where C = ( C1 ) 315 * Form C * H or C * H**H where C = ( C1 C2 ) 381 * Form H * C or H**H * C where C = ( C1 ) 444 * Form C * H or C * H**H where C = ( C1 C2 ) 514 * Form H * C or H**H * C where C = ( C1 ) 575 * Form C * H or C * H**H where C = ( C1 C2 ) 640 * Form H * C or H**H * C where C = ( C1 ) 703 * Form C * H or C * H**H where C = ( C1 C2 )
|
dlarfb.f | 253 * Form H * C or H**T * C where C = ( C1 ) 313 * Form C * H or C * H**T where C = ( C1 C2 ) 379 * Form H * C or H**T * C where C = ( C1 ) 440 * Form C * H or C * H**T where C = ( C1 C2 ) 508 * Form H * C or H**T * C where C = ( C1 ) 568 * Form C * H or C * H**T where C = ( C1 C2 ) 634 * Form H * C or H**T * C where C = ( C1 ) 695 * Form C * H or C * H**T where C = ( C1 C2 )
|
slarfb.f | 253 * Form H * C or H**T * C where C = ( C1 ) 313 * Form C * H or C * H**T where C = ( C1 C2 ) 379 * Form H * C or H**T * C where C = ( C1 ) 440 * Form C * H or C * H**T where C = ( C1 C2 ) 508 * Form H * C or H**T * C where C = ( C1 ) 568 * Form C * H or C * H**T where C = ( C1 C2 ) 634 * Form H * C or H**T * C where C = ( C1 ) 695 * Form C * H or C * H**T where C = ( C1 C2 )
|
zlarfb.f | 256 * Form H * C or H**H * C where C = ( C1 ) 316 * Form C * H or C * H**H where C = ( C1 C2 ) 382 * Form H * C or H**H * C where C = ( C1 ) 447 * Form C * H or C * H**H where C = ( C1 C2 ) 517 * Form H * C or H**H * C where C = ( C1 ) 578 * Form C * H or C * H**H where C = ( C1 C2 ) 643 * Form H * C or H**H * C where C = ( C1 ) 706 * Form C * H or C * H**H where C = ( C1 C2 )
|
clarf.f | 40 *> form 58 *> = 'L': form H * C 59 *> = 'R': form C * H 199 * Form H * C 214 * Form C * H
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/ |
readwriter.go | 66 func (f Form) Writer(w io.Writer) io.WriteCloser { 119 func (f Form) Reader(r io.Reader) io.Reader {
|
iter.go | 17 // to a given Form. 22 next iterFunc // implementation of next depends on form 31 // Init initializes i to iterate over src after normalizing it to Form f. 32 func (i *Iter) Init(f Form, src []byte) { 46 // InitString initializes i to iterate over src after normalizing it to Form f. 47 func (i *Iter) InitString(f Form, src string) {
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/ |
readwriter.go | 66 func (f Form) Writer(w io.Writer) io.WriteCloser { 119 func (f Form) Reader(r io.Reader) io.Reader {
|
iter.go | 17 // to a given Form. 22 next iterFunc // implementation of next depends on form 31 // Init initializes i to iterate over src after normalizing it to Form f. 32 func (i *Iter) Init(f Form, src []byte) { 46 // InitString initializes i to iterate over src after normalizing it to Form f. 47 func (i *Iter) InitString(f Form, src string) {
|
/external/curl/lib/ |
formdata.c | 49 static size_t readfromfile(struct Form *form, char *buffer, size_t size); 255 * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form 271 FormInfo *first_form, *current_form, *form = NULL; local 426 form = AddFormInfo(fname, NULL, current_form); 427 if(!form) { 432 form->value_alloc = TRUE; 433 current_form = form; 434 form = NULL; 497 accepted as a fine form part * 924 struct FormData *next, *form; local 1145 struct FormData *form = NULL; local 1480 struct Form *form; local 1535 struct Form *form=(struct Form *)formp; local [all...] |
http.h | 137 /* For FORM posting */ 138 struct Form form; member in struct:HTTP
|
/external/icu/icu4c/source/i18n/ |
quantityformatter.cpp | 123 StandardPlural::Form p = selectPlural(number, fmt, rules, formattedNumber, pos, status); 141 StandardPlural::Form QuantityFormatter::selectPlural(
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfCompileUnit.h | 245 void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
|
/external/llvm/utils/TableGen/ |
X86RecognizableInstr.cpp | 141 /// isRegFormat - Indicates whether a particular form requires the Mod field of 144 /// @param form - The form of the instruction. 145 /// @return - true if the form implies that Mod must be 0b11, false 147 static bool isRegFormat(uint8_t form) { 148 return (form == X86Local::MRMDestReg || 149 form == X86Local::MRMSrcReg || 150 form == X86Local::MRMXr || 151 (form >= X86Local::MRM0r && form <= X86Local::MRM7r)) [all...] |
/external/llvm/tools/dsymutil/ |
DwarfLinker.cpp | [all...] |