1 // Do not edit. Bootstrap copy of /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/internal/obj/fmt.go 2 3 //line /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/internal/obj/fmt.go:1 4 /* 5 * The authors of this software are Rob Pike and Ken Thompson. 6 * Copyright (c) 2002 by Lucent Technologies. 7 * Permission to use, copy, modify, and distribute this software for any 8 * purpose without fee is hereby granted, provided that this entire notice 9 * is included in all copies of any software which is or includes a copy 10 * or modification of this software and in all copies of the supporting 11 * documentation for such software. 12 * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED 13 * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY 14 * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY 15 * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. 16 */ 17 18 package obj 19 20 const ( 21 FmtWidth = 1 << iota 22 FmtLeft 23 FmtPrec 24 FmtSharp 25 FmtSpace 26 FmtSign 27 FmtApost 28 FmtZero 29 FmtUnsigned 30 FmtShort 31 FmtLong 32 FmtVLong 33 FmtComma 34 FmtByte 35 FmtLDouble 36 FmtFlag 37 ) 38