SYMBOL INDEX (577 symbols across 35 files) FILE: cmd/grate2tsv/main.go type output (line 54) | type output struct function main (line 59) | func main() { function runProcessor (line 136) | func runProcessor(from chan string, mu *sync.Mutex) { type stats (line 166) | type stats struct function processFile (line 175) | func processFile(fn string) ([]stats, error) { FILE: cmd/grater/main.go function main (line 16) | func main() { FILE: commonxl/cell.go type CellType (line 13) | type CellType method String (line 29) | func (c CellType) String() string { constant BlankCell (line 17) | BlankCell CellType = iota constant IntegerCell (line 18) | IntegerCell constant FloatCell (line 19) | FloatCell constant StringCell (line 20) | StringCell constant BooleanCell (line 21) | BooleanCell constant DateCell (line 22) | DateCell constant HyperlinkStringCell (line 24) | HyperlinkStringCell constant StaticCell (line 25) | StaticCell type Cell (line 51) | type Cell method Value (line 58) | func (c Cell) Value() interface{} { method SetURL (line 66) | func (c *Cell) SetURL(link string) { method URL (line 76) | func (c Cell) URL() (*url.URL, bool) { method Type (line 85) | func (c Cell) Type() CellType { method FormatNo (line 93) | func (c Cell) FormatNo() uint16 { method Clone (line 101) | func (c Cell) Clone() Cell { method SetFormatNumber (line 306) | func (c *Cell) SetFormatNumber(f uint16) { method Equal (line 319) | func (c Cell) Equal(other Cell) bool { method Less (line 346) | func (c Cell) Less(other Cell) bool { function NewCellWithType (line 119) | func NewCellWithType(value interface{}, t CellType, f *Formatter) Cell { function NewCell (line 199) | func NewCell(value interface{}) Cell { FILE: commonxl/dates.go method ConvertToDate (line 10) | func (x *Formatter) ConvertToDate(val float64) time.Time { function timeFmtFunc (line 47) | func timeFmtFunc(f string) FmtFunc { function cnTimeFmtFunc (line 64) | func cnTimeFmtFunc(f string) FmtFunc { FILE: commonxl/fmt.go type FmtFunc (line 10) | type FmtFunc function staticFmtFunc (line 12) | func staticFmtFunc(s string) FmtFunc { function surround (line 18) | func surround(pre string, ff FmtFunc, post string) FmtFunc { function addNegParens (line 24) | func addNegParens(ff FmtFunc) FmtFunc { function addCommas (line 34) | func addCommas(ff FmtFunc) FmtFunc { function identFunc (line 57) | func identFunc(x *Formatter, v interface{}) string { function sprintfFunc (line 86) | func sprintfFunc(fs string, mul int) FmtFunc { function convertToInt64 (line 105) | func convertToInt64(v interface{}) (int64, bool) { function convertToFloat64 (line 110) | func convertToFloat64(v interface{}) (float64, bool) { function zeroDashFunc (line 150) | func zeroDashFunc(ff FmtFunc) FmtFunc { function fracFmtFunc (line 164) | func fracFmtFunc(n int) FmtFunc { function switchFmtFunc (line 186) | func switchFmtFunc(pos FmtFunc, others ...FmtFunc) FmtFunc { FILE: commonxl/fmt_test.go type testcaseNums (line 9) | type testcaseNums struct function TestCommas (line 73) | func TestCommas(t *testing.T) { function TestDateFormats (line 84) | func TestDateFormats(t *testing.T) { function TestBoolFormats (line 110) | func TestBoolFormats(t *testing.T) { FILE: commonxl/formats.go type Formatter (line 11) | type Formatter struct method Mode1904 (line 23) | func (x *Formatter) Mode1904(enabled bool) { method Add (line 32) | func (x *Formatter) Add(fmtID uint16, formatCode string) error { method getCellType (line 55) | func (x *Formatter) getCellType(fmtID uint16) (CellType, bool) { method Get (line 200) | func (x *Formatter) Get(fmtID uint16) (FmtFunc, bool) { method Apply (line 215) | func (x *Formatter) Apply(fmtID uint16, val interface{}) (string, bool) { constant fMode1904 (line 18) | fMode1904 uint64 = 1 function makeFormatter (line 76) | func makeFormatter(s string) (FmtFunc, CellType) { FILE: commonxl/frac_test.go type testcaseFrac (line 8) | type testcaseFrac struct function TestFractions (line 59) | func TestFractions(t *testing.T) { FILE: commonxl/numbers.go function DecimalToWholeFraction (line 10) | func DecimalToWholeFraction(val float64, nn, nd int) (whole, num, den in... function DecimalToFraction (line 26) | func DecimalToFraction(val float64, nn, nd int) (num, den int) { FILE: commonxl/sheet.go type Sheet (line 12) | type Sheet struct method Resize (line 23) | func (s *Sheet) Resize(rows, cols int) { method Put (line 51) | func (s *Sheet) Put(row, col int, value interface{}, fmtNum uint16) { method Set (line 89) | func (s *Sheet) Set(row, col int, value interface{}) { method SetURL (line 100) | func (s *Sheet) SetURL(row, col int, link string) { method Next (line 111) | func (s *Sheet) Next() bool { method Raw (line 120) | func (s *Sheet) Raw() []Cell { method Strings (line 129) | func (s *Sheet) Strings() []string { method Types (line 153) | func (s *Sheet) Types() []string { method Formats (line 162) | func (s *Sheet) Formats() []string { method Scan (line 178) | func (s *Sheet) Scan(args ...interface{}) error { method IsEmpty (line 225) | func (s *Sheet) IsEmpty() bool { method Err (line 230) | func (s *Sheet) Err() error { FILE: errs.go type errx (line 24) | type errx struct method Error (line 28) | func (e errx) Error() string { method Unwrap (line 31) | func (e errx) Unwrap() error { function WrapErr (line 39) | func WrapErr(e ...error) error { FILE: grate.go type Source (line 12) | type Source interface type Collection (line 24) | type Collection interface type OpenFunc (line 55) | type OpenFunc function Open (line 58) | func Open(filename string) (Source, error) { type srcOpenTab (line 74) | type srcOpenTab struct function Register (line 83) | func Register(name string, priority int, opener OpenFunc) error { constant ContinueColumnMerged (line 96) | ContinueColumnMerged = "→" constant EndColumnMerged (line 98) | EndColumnMerged = "⇥" constant ContinueRowMerged (line 101) | ContinueRowMerged = "↓" constant EndRowMerged (line 103) | EndRowMerged = "⤓" FILE: simple/csv.go function OpenCSV (line 14) | func OpenCSV(filename string) (grate.Source, error) { FILE: simple/simple.go type simpleFile (line 15) | type simpleFile struct method List (line 22) | func (t *simpleFile) List() ([]string, error) { method Close (line 26) | func (t *simpleFile) Close() error { method Get (line 31) | func (t *simpleFile) Get(name string) (grate.Collection, error) { method Next (line 37) | func (t *simpleFile) Next() bool { method Strings (line 43) | func (t *simpleFile) Strings() []string { method Formats (line 48) | func (t *simpleFile) Formats() []string { method Types (line 59) | func (t *simpleFile) Types() []string { method Scan (line 74) | func (t *simpleFile) Scan(args ...interface{}) error { method IsEmpty (line 111) | func (t *simpleFile) IsEmpty() bool { method Err (line 116) | func (t *simpleFile) Err() error { FILE: simple/tsv.go function OpenTSV (line 15) | func OpenTSV(filename string) (grate.Source, error) { FILE: xls/cfb/cfb.go constant fullAssertions (line 21) | fullAssertions = true constant secFree (line 24) | secFree uint32 = 0xFFFFFFFF constant secEndOfChain (line 25) | secEndOfChain uint32 = 0xFFFFFFFE constant secFAT (line 26) | secFAT uint32 = 0xFFFFFFFD constant secDIFAT (line 27) | secDIFAT uint32 = 0xFFFFFFFC constant secReserved (line 28) | secReserved uint32 = 0xFFFFFFFB constant secMaxRegular (line 29) | secMaxRegular uint32 = 0xFFFFFFFA type header (line 33) | type header struct type objectType (line 54) | type objectType constant typeUnknown (line 57) | typeUnknown objectType = 0x00 constant typeStorage (line 58) | typeStorage objectType = 0x01 constant typeStream (line 59) | typeStream objectType = 0x02 constant typeRootStorage (line 60) | typeRootStorage objectType = 0x05 type directory (line 63) | type directory struct method String (line 79) | func (d *directory) String() string { type Document (line 89) | type Document struct method load (line 105) | func (d *Document) load(rx io.ReadSeeker) error { method buildDirs (line 242) | func (d *Document) buildDirs(br *bytes.Reader) error { method getStreamReader (line 283) | func (d *Document) getStreamReader(sid uint32, size uint64) (io.ReadSe... method getMiniStreamReader (line 316) | func (d *Document) getMiniStreamReader(sid uint32, size uint64) (io.Re... FILE: xls/cfb/interface.go function Open (line 10) | func Open(filename string) (*Document, error) { method List (line 24) | func (d *Document) List() ([]string, error) { method Open (line 35) | func (d *Document) Open(name string) (io.ReadSeeker, error) { FILE: xls/cfb/simple_test.go function TestHeader (line 11) | func TestHeader(t *testing.T) { function TestHeader2 (line 20) | func TestHeader2(t *testing.T) { function TestHeader3 (line 29) | func TestHeader3(t *testing.T) { function TestHeader4 (line 38) | func TestHeader4(t *testing.T) { function TestSliceReader (line 77) | func TestSliceReader(t *testing.T) { FILE: xls/cfb/slicereader.go type SliceReader (line 10) | type SliceReader struct method Read (line 18) | func (s *SliceReader) Read(b []byte) (int, error) { method Seek (line 38) | func (s *SliceReader) Seek(offset int64, whence int) (int64, error) { FILE: xls/comp_test.go function TestAllFiles (line 10) | func TestAllFiles(t *testing.T) { FILE: xls/crypto/crypto.go type Decryptor (line 13) | type Decryptor interface type basicRC4Encryption (line 72) | type basicRC4Encryption struct function NewBasicRC4 (line 81) | func NewBasicRC4(data []byte) (Decryptor, error) { FILE: xls/crypto/rc4.go type rc4Writer (line 75) | type rc4Writer struct method Write (line 13) | func (d *rc4Writer) Write(data []byte) (n int, err error) { method Read (line 29) | func (d *rc4Writer) Read(data []byte) (n int, err error) { method Reset (line 34) | func (d *rc4Writer) Reset() { method Flush (line 41) | func (d *rc4Writer) Flush() { method SetPassword (line 63) | func (d *rc4Writer) SetPassword(password []byte) { method Bytes (line 95) | func (d *rc4Writer) Bytes() []byte { method Verify (line 99) | func (d *rc4Writer) Verify(everifier, everifierHash []byte) error { method startBlock (line 119) | func (d *rc4Writer) startBlock() { function generateStd97Key (line 131) | func generateStd97Key(passData []rune, salt []byte) []byte { FILE: xls/hyperlinks.go function decodeHyperlinks (line 11) | func decodeHyperlinks(raw []byte) (displayText, linkText string, err err... function parseHyperlinkMoniker (line 76) | func parseHyperlinkMoniker(raw []byte) (string, int, error) { constant hlstmfHasMoniker (line 136) | hlstmfHasMoniker = uint32(0x001) constant hlstmfIsAbsolute (line 137) | hlstmfIsAbsolute = uint32(0x002) constant hlstmfSiteGaveDisplayName (line 138) | hlstmfSiteGaveDisplayName = uint32(0x004) constant hlstmfHasLocationStr (line 139) | hlstmfHasLocationStr = uint32(0x008) constant hlstmfHasDisplayName (line 140) | hlstmfHasDisplayName = uint32(0x010) constant hlstmfHasGUID (line 141) | hlstmfHasGUID = uint32(0x020) constant hlstmfHasCreationTime (line 142) | hlstmfHasCreationTime = uint32(0x040) constant hlstmfHasFrameName (line 143) | hlstmfHasFrameName = uint32(0x080) constant hlstmfMonikerSavedAsStr (line 144) | hlstmfMonikerSavedAsStr = uint32(0x100) constant hlstmfAbsFromGetdataRel (line 145) | hlstmfAbsFromGetdataRel = uint32(0x200) FILE: xls/records.go type recordType (line 5) | type recordType method String (line 366) | func (r recordType) String() string { constant RecTypeFormula (line 10) | RecTypeFormula recordType = 6 constant RecTypeEOF (line 11) | RecTypeEOF recordType = 10 constant RecTypeCalcCount (line 12) | RecTypeCalcCount recordType = 12 constant RecTypeCalcMode (line 13) | RecTypeCalcMode recordType = 13 constant RecTypeCalcPrecision (line 14) | RecTypeCalcPrecision recordType = 14 constant RecTypeCalcRefMode (line 15) | RecTypeCalcRefMode recordType = 15 constant RecTypeCalcDelta (line 16) | RecTypeCalcDelta recordType = 16 constant RecTypeCalcIter (line 17) | RecTypeCalcIter recordType = 17 constant RecTypeProtect (line 18) | RecTypeProtect recordType = 18 constant RecTypePassword (line 19) | RecTypePassword recordType = 19 constant RecTypeHeader (line 20) | RecTypeHeader recordType = 20 constant RecTypeFooter (line 21) | RecTypeFooter recordType = 21 constant RecTypeExternSheet (line 22) | RecTypeExternSheet recordType = 23 constant RecTypeLbl (line 23) | RecTypeLbl recordType = 24 constant RecTypeWinProtect (line 24) | RecTypeWinProtect recordType = 25 constant RecTypeVerticalPageBreaks (line 25) | RecTypeVerticalPageBreaks recordType = 26 constant RecTypeHorizontalPageBreaks (line 26) | RecTypeHorizontalPageBreaks recordType = 27 constant RecTypeNote (line 27) | RecTypeNote recordType = 28 constant RecTypeSelection (line 28) | RecTypeSelection recordType = 29 constant RecTypeDate1904 (line 29) | RecTypeDate1904 recordType = 34 constant RecTypeExternName (line 30) | RecTypeExternName recordType = 35 constant RecTypeLeftMargin (line 31) | RecTypeLeftMargin recordType = 38 constant RecTypeRightMargin (line 32) | RecTypeRightMargin recordType = 39 constant RecTypeTopMargin (line 33) | RecTypeTopMargin recordType = 40 constant RecTypeBottomMargin (line 34) | RecTypeBottomMargin recordType = 41 constant RecTypePrintRowCol (line 35) | RecTypePrintRowCol recordType = 42 constant RecTypePrintGrid (line 36) | RecTypePrintGrid recordType = 43 constant RecTypeFilePass (line 37) | RecTypeFilePass recordType = 47 constant RecTypeFont (line 38) | RecTypeFont recordType = 49 constant RecTypePrintSize (line 39) | RecTypePrintSize recordType = 51 constant RecTypeContinue (line 40) | RecTypeContinue recordType = 60 constant RecTypeWindow1 (line 41) | RecTypeWindow1 recordType = 61 constant RecTypeBackup (line 42) | RecTypeBackup recordType = 64 constant RecTypePane (line 43) | RecTypePane recordType = 65 constant RecTypeCodePage (line 44) | RecTypeCodePage recordType = 66 constant RecTypePls (line 45) | RecTypePls recordType = 77 constant RecTypeDCon (line 46) | RecTypeDCon recordType = 80 constant RecTypeDConRef (line 47) | RecTypeDConRef recordType = 81 constant RecTypeDConName (line 48) | RecTypeDConName recordType = 82 constant RecTypeDefColWidth (line 49) | RecTypeDefColWidth recordType = 85 constant RecTypeXCT (line 50) | RecTypeXCT recordType = 89 constant RecTypeCRN (line 51) | RecTypeCRN recordType = 90 constant RecTypeFileSharing (line 52) | RecTypeFileSharing recordType = 91 constant RecTypeWriteAccess (line 53) | RecTypeWriteAccess recordType = 92 constant RecTypeObj (line 54) | RecTypeObj recordType = 93 constant RecTypeUncalced (line 55) | RecTypeUncalced recordType = 94 constant RecTypeCalcSaveRecalc (line 56) | RecTypeCalcSaveRecalc recordType = 95 constant RecTypeTemplate (line 57) | RecTypeTemplate recordType = 96 constant RecTypeIntl (line 58) | RecTypeIntl recordType = 97 constant RecTypeObjProtect (line 59) | RecTypeObjProtect recordType = 99 constant RecTypeColInfo (line 60) | RecTypeColInfo recordType = 125 constant RecTypeGuts (line 61) | RecTypeGuts recordType = 128 constant RecTypeWsBool (line 62) | RecTypeWsBool recordType = 129 constant RecTypeGridSet (line 63) | RecTypeGridSet recordType = 130 constant RecTypeHCenter (line 64) | RecTypeHCenter recordType = 131 constant RecTypeVCenter (line 65) | RecTypeVCenter recordType = 132 constant RecTypeBoundSheet8 (line 66) | RecTypeBoundSheet8 recordType = 133 constant RecTypeWriteProtect (line 67) | RecTypeWriteProtect recordType = 134 constant RecTypeCountry (line 68) | RecTypeCountry recordType = 140 constant RecTypeHideObj (line 69) | RecTypeHideObj recordType = 141 constant RecTypeSort (line 70) | RecTypeSort recordType = 144 constant RecTypePalette (line 71) | RecTypePalette recordType = 146 constant RecTypeSync (line 72) | RecTypeSync recordType = 151 constant RecTypeLPr (line 73) | RecTypeLPr recordType = 152 constant RecTypeDxGCol (line 74) | RecTypeDxGCol recordType = 153 constant RecTypeFnGroupName (line 75) | RecTypeFnGroupName recordType = 154 constant RecTypeFilterMode (line 76) | RecTypeFilterMode recordType = 155 constant RecTypeBuiltInFnGroupCount (line 77) | RecTypeBuiltInFnGroupCount recordType = 156 constant RecTypeAutoFilterInfo (line 78) | RecTypeAutoFilterInfo recordType = 157 constant RecTypeAutoFilter (line 79) | RecTypeAutoFilter recordType = 158 constant RecTypeScl (line 80) | RecTypeScl recordType = 160 constant RecTypeSetup (line 81) | RecTypeSetup recordType = 161 constant RecTypeScenMan (line 82) | RecTypeScenMan recordType = 174 constant RecTypeSCENARIO (line 83) | RecTypeSCENARIO recordType = 175 constant RecTypeSxView (line 84) | RecTypeSxView recordType = 176 constant RecTypeSxvd (line 85) | RecTypeSxvd recordType = 177 constant RecTypeSXVI (line 86) | RecTypeSXVI recordType = 178 constant RecTypeSxIvd (line 87) | RecTypeSxIvd recordType = 180 constant RecTypeSXLI (line 88) | RecTypeSXLI recordType = 181 constant RecTypeSXPI (line 89) | RecTypeSXPI recordType = 182 constant RecTypeDocRoute (line 90) | RecTypeDocRoute recordType = 184 constant RecTypeRecipName (line 91) | RecTypeRecipName recordType = 185 constant RecTypeMulRk (line 92) | RecTypeMulRk recordType = 189 constant RecTypeMulBlank (line 93) | RecTypeMulBlank recordType = 190 constant RecTypeMms (line 94) | RecTypeMms recordType = 193 constant RecTypeSXDI (line 95) | RecTypeSXDI recordType = 197 constant RecTypeSXDB (line 96) | RecTypeSXDB recordType = 198 constant RecTypeSXFDB (line 97) | RecTypeSXFDB recordType = 199 constant RecTypeSXDBB (line 98) | RecTypeSXDBB recordType = 200 constant RecTypeSXNum (line 99) | RecTypeSXNum recordType = 201 constant RecTypeSxBool (line 100) | RecTypeSxBool recordType = 202 constant RecTypeSxErr (line 101) | RecTypeSxErr recordType = 203 constant RecTypeSXInt (line 102) | RecTypeSXInt recordType = 204 constant RecTypeSXString (line 103) | RecTypeSXString recordType = 205 constant RecTypeSXDtr (line 104) | RecTypeSXDtr recordType = 206 constant RecTypeSxNil (line 105) | RecTypeSxNil recordType = 207 constant RecTypeSXTbl (line 106) | RecTypeSXTbl recordType = 208 constant RecTypeSXTBRGIITM (line 107) | RecTypeSXTBRGIITM recordType = 209 constant RecTypeSxTbpg (line 108) | RecTypeSxTbpg recordType = 210 constant RecTypeObProj (line 109) | RecTypeObProj recordType = 211 constant RecTypeSXStreamID (line 110) | RecTypeSXStreamID recordType = 213 constant RecTypeDBCell (line 111) | RecTypeDBCell recordType = 215 constant RecTypeSXRng (line 112) | RecTypeSXRng recordType = 216 constant RecTypeSxIsxoper (line 113) | RecTypeSxIsxoper recordType = 217 constant RecTypeBookBool (line 114) | RecTypeBookBool recordType = 218 constant RecTypeDbOrParamQry (line 115) | RecTypeDbOrParamQry recordType = 220 constant RecTypeScenarioProtect (line 116) | RecTypeScenarioProtect recordType = 221 constant RecTypeOleObjectSize (line 117) | RecTypeOleObjectSize recordType = 222 constant RecTypeXF (line 118) | RecTypeXF recordType = 224 constant RecTypeInterfaceHdr (line 119) | RecTypeInterfaceHdr recordType = 225 constant RecTypeInterfaceEnd (line 120) | RecTypeInterfaceEnd recordType = 226 constant RecTypeSXVS (line 121) | RecTypeSXVS recordType = 227 constant RecTypeMergeCells (line 122) | RecTypeMergeCells recordType = 229 constant RecTypeBkHim (line 123) | RecTypeBkHim recordType = 233 constant RecTypeMsoDrawingGroup (line 124) | RecTypeMsoDrawingGroup recordType = 235 constant RecTypeMsoDrawing (line 125) | RecTypeMsoDrawing recordType = 236 constant RecTypeMsoDrawingSelection (line 126) | RecTypeMsoDrawingSelection recordType = 237 constant RecTypePhoneticInfo (line 127) | RecTypePhoneticInfo recordType = 239 constant RecTypeSxRule (line 128) | RecTypeSxRule recordType = 240 constant RecTypeSXEx (line 129) | RecTypeSXEx recordType = 241 constant RecTypeSxFilt (line 130) | RecTypeSxFilt recordType = 242 constant RecTypeSxDXF (line 131) | RecTypeSxDXF recordType = 244 constant RecTypeSxItm (line 132) | RecTypeSxItm recordType = 245 constant RecTypeSxName (line 133) | RecTypeSxName recordType = 246 constant RecTypeSxSelect (line 134) | RecTypeSxSelect recordType = 247 constant RecTypeSXPair (line 135) | RecTypeSXPair recordType = 248 constant RecTypeSxFmla (line 136) | RecTypeSxFmla recordType = 249 constant RecTypeSxFormat (line 137) | RecTypeSxFormat recordType = 251 constant RecTypeSST (line 138) | RecTypeSST recordType = 252 constant RecTypeLabelSst (line 139) | RecTypeLabelSst recordType = 253 constant RecTypeExtSST (line 140) | RecTypeExtSST recordType = 255 constant RecTypeSXVDEx (line 141) | RecTypeSXVDEx recordType = 256 constant RecTypeSXFormula (line 142) | RecTypeSXFormula recordType = 259 constant RecTypeSXDBEx (line 143) | RecTypeSXDBEx recordType = 290 constant RecTypeRRDInsDel (line 144) | RecTypeRRDInsDel recordType = 311 constant RecTypeRRDHead (line 145) | RecTypeRRDHead recordType = 312 constant RecTypeRRDChgCell (line 146) | RecTypeRRDChgCell recordType = 315 constant RecTypeRRTabID (line 147) | RecTypeRRTabID recordType = 317 constant RecTypeRRDRenSheet (line 148) | RecTypeRRDRenSheet recordType = 318 constant RecTypeRRSort (line 149) | RecTypeRRSort recordType = 319 constant RecTypeRRDMove (line 150) | RecTypeRRDMove recordType = 320 constant RecTypeRRFormat (line 151) | RecTypeRRFormat recordType = 330 constant RecTypeRRAutoFmt (line 152) | RecTypeRRAutoFmt recordType = 331 constant RecTypeRRInsertSh (line 153) | RecTypeRRInsertSh recordType = 333 constant RecTypeRRDMoveBegin (line 154) | RecTypeRRDMoveBegin recordType = 334 constant RecTypeRRDMoveEnd (line 155) | RecTypeRRDMoveEnd recordType = 335 constant RecTypeRRDInsDelBegin (line 156) | RecTypeRRDInsDelBegin recordType = 336 constant RecTypeRRDInsDelEnd (line 157) | RecTypeRRDInsDelEnd recordType = 337 constant RecTypeRRDConflict (line 158) | RecTypeRRDConflict recordType = 338 constant RecTypeRRDDefName (line 159) | RecTypeRRDDefName recordType = 339 constant RecTypeRRDRstEtxp (line 160) | RecTypeRRDRstEtxp recordType = 340 constant RecTypeLRng (line 161) | RecTypeLRng recordType = 351 constant RecTypeUsesELFs (line 162) | RecTypeUsesELFs recordType = 352 constant RecTypeDSF (line 163) | RecTypeDSF recordType = 353 constant RecTypeCUsr (line 164) | RecTypeCUsr recordType = 401 constant RecTypeCbUsr (line 165) | RecTypeCbUsr recordType = 402 constant RecTypeUsrInfo (line 166) | RecTypeUsrInfo recordType = 403 constant RecTypeUsrExcl (line 167) | RecTypeUsrExcl recordType = 404 constant RecTypeFileLock (line 168) | RecTypeFileLock recordType = 405 constant RecTypeRRDInfo (line 169) | RecTypeRRDInfo recordType = 406 constant RecTypeBCUsrs (line 170) | RecTypeBCUsrs recordType = 407 constant RecTypeUsrChk (line 171) | RecTypeUsrChk recordType = 408 constant RecTypeUserBView (line 172) | RecTypeUserBView recordType = 425 constant RecTypeUserSViewBegin (line 173) | RecTypeUserSViewBegin recordType = 426 constant RecTypeUserSViewBeginChart (line 174) | RecTypeUserSViewBeginChart recordType = 426 constant RecTypeUserSViewEnd (line 175) | RecTypeUserSViewEnd recordType = 427 constant RecTypeRRDUserView (line 176) | RecTypeRRDUserView recordType = 428 constant RecTypeQsi (line 177) | RecTypeQsi recordType = 429 constant RecTypeSupBook (line 178) | RecTypeSupBook recordType = 430 constant RecTypeProt4Rev (line 179) | RecTypeProt4Rev recordType = 431 constant RecTypeCondFmt (line 180) | RecTypeCondFmt recordType = 432 constant RecTypeCF (line 181) | RecTypeCF recordType = 433 constant RecTypeDVal (line 182) | RecTypeDVal recordType = 434 constant RecTypeDConBin (line 183) | RecTypeDConBin recordType = 437 constant RecTypeTxO (line 184) | RecTypeTxO recordType = 438 constant RecTypeRefreshAll (line 185) | RecTypeRefreshAll recordType = 439 constant RecTypeHLink (line 186) | RecTypeHLink recordType = 440 constant RecTypeLel (line 187) | RecTypeLel recordType = 441 constant RecTypeCodeName (line 188) | RecTypeCodeName recordType = 442 constant RecTypeSXFDBType (line 189) | RecTypeSXFDBType recordType = 443 constant RecTypeProt4RevPass (line 190) | RecTypeProt4RevPass recordType = 444 constant RecTypeObNoMacros (line 191) | RecTypeObNoMacros recordType = 445 constant RecTypeDv (line 192) | RecTypeDv recordType = 446 constant RecTypeExcel9File (line 193) | RecTypeExcel9File recordType = 448 constant RecTypeRecalcID (line 194) | RecTypeRecalcID recordType = 449 constant RecTypeEntExU2 (line 195) | RecTypeEntExU2 recordType = 450 constant RecTypeDimensions (line 196) | RecTypeDimensions recordType = 512 constant RecTypeBlank (line 197) | RecTypeBlank recordType = 513 constant RecTypeNumber (line 198) | RecTypeNumber recordType = 515 constant RecTypeLabel (line 199) | RecTypeLabel recordType = 516 constant RecTypeBoolErr (line 200) | RecTypeBoolErr recordType = 517 constant RecTypeString (line 201) | RecTypeString recordType = 519 constant RecTypeRow (line 202) | RecTypeRow recordType = 520 constant RecTypeIndex (line 203) | RecTypeIndex recordType = 523 constant RecTypeArray (line 204) | RecTypeArray recordType = 545 constant RecTypeDefaultRowHeight (line 205) | RecTypeDefaultRowHeight recordType = 549 constant RecTypeTable (line 206) | RecTypeTable recordType = 566 constant RecTypeWindow2 (line 207) | RecTypeWindow2 recordType = 574 constant RecTypeRK (line 208) | RecTypeRK recordType = 638 constant RecTypeStyle (line 209) | RecTypeStyle recordType = 659 constant RecTypeBigName (line 210) | RecTypeBigName recordType = 1048 constant RecTypeFormat (line 211) | RecTypeFormat recordType = 1054 constant RecTypeContinueBigName (line 212) | RecTypeContinueBigName recordType = 1084 constant RecTypeShrFmla (line 213) | RecTypeShrFmla recordType = 1212 constant RecTypeHLinkTooltip (line 214) | RecTypeHLinkTooltip recordType = 2048 constant RecTypeWebPub (line 215) | RecTypeWebPub recordType = 2049 constant RecTypeQsiSXTag (line 216) | RecTypeQsiSXTag recordType = 2050 constant RecTypeDBQueryExt (line 217) | RecTypeDBQueryExt recordType = 2051 constant RecTypeExtString (line 218) | RecTypeExtString recordType = 2052 constant RecTypeTxtQry (line 219) | RecTypeTxtQry recordType = 2053 constant RecTypeQsir (line 220) | RecTypeQsir recordType = 2054 constant RecTypeQsif (line 221) | RecTypeQsif recordType = 2055 constant RecTypeRRDTQSIF (line 222) | RecTypeRRDTQSIF recordType = 2056 constant RecTypeBOF (line 223) | RecTypeBOF recordType = 2057 constant RecTypeOleDbConn (line 224) | RecTypeOleDbConn recordType = 2058 constant RecTypeWOpt (line 225) | RecTypeWOpt recordType = 2059 constant RecTypeSXViewEx (line 226) | RecTypeSXViewEx recordType = 2060 constant RecTypeSXTH (line 227) | RecTypeSXTH recordType = 2061 constant RecTypeSXPIEx (line 228) | RecTypeSXPIEx recordType = 2062 constant RecTypeSXVDTEx (line 229) | RecTypeSXVDTEx recordType = 2063 constant RecTypeSXViewEx9 (line 230) | RecTypeSXViewEx9 recordType = 2064 constant RecTypeContinueFrt (line 231) | RecTypeContinueFrt recordType = 2066 constant RecTypeRealTimeData (line 232) | RecTypeRealTimeData recordType = 2067 constant RecTypeChartFrtInfo (line 233) | RecTypeChartFrtInfo recordType = 2128 constant RecTypeFrtWrapper (line 234) | RecTypeFrtWrapper recordType = 2129 constant RecTypeStartBlock (line 235) | RecTypeStartBlock recordType = 2130 constant RecTypeEndBlock (line 236) | RecTypeEndBlock recordType = 2131 constant RecTypeStartObject (line 237) | RecTypeStartObject recordType = 2132 constant RecTypeEndObject (line 238) | RecTypeEndObject recordType = 2133 constant RecTypeCatLab (line 239) | RecTypeCatLab recordType = 2134 constant RecTypeYMult (line 240) | RecTypeYMult recordType = 2135 constant RecTypeSXViewLink (line 241) | RecTypeSXViewLink recordType = 2136 constant RecTypePivotChartBits (line 242) | RecTypePivotChartBits recordType = 2137 constant RecTypeFrtFontList (line 243) | RecTypeFrtFontList recordType = 2138 constant RecTypeSheetExt (line 244) | RecTypeSheetExt recordType = 2146 constant RecTypeBookExt (line 245) | RecTypeBookExt recordType = 2147 constant RecTypeSXAddl (line 246) | RecTypeSXAddl recordType = 2148 constant RecTypeCrErr (line 247) | RecTypeCrErr recordType = 2149 constant RecTypeHFPicture (line 248) | RecTypeHFPicture recordType = 2150 constant RecTypeFeatHdr (line 249) | RecTypeFeatHdr recordType = 2151 constant RecTypeFeat (line 250) | RecTypeFeat recordType = 2152 constant RecTypeDataLabExt (line 251) | RecTypeDataLabExt recordType = 2154 constant RecTypeDataLabExtContents (line 252) | RecTypeDataLabExtContents recordType = 2155 constant RecTypeCellWatch (line 253) | RecTypeCellWatch recordType = 2156 constant RecTypeFeatHdr11 (line 254) | RecTypeFeatHdr11 recordType = 2161 constant RecTypeFeature11 (line 255) | RecTypeFeature11 recordType = 2162 constant RecTypeDropDownObjIds (line 256) | RecTypeDropDownObjIds recordType = 2164 constant RecTypeContinueFrt11 (line 257) | RecTypeContinueFrt11 recordType = 2165 constant RecTypeDConn (line 258) | RecTypeDConn recordType = 2166 constant RecTypeList12 (line 259) | RecTypeList12 recordType = 2167 constant RecTypeFeature12 (line 260) | RecTypeFeature12 recordType = 2168 constant RecTypeCondFmt12 (line 261) | RecTypeCondFmt12 recordType = 2169 constant RecTypeCF12 (line 262) | RecTypeCF12 recordType = 2170 constant RecTypeCFEx (line 263) | RecTypeCFEx recordType = 2171 constant RecTypeXFCRC (line 264) | RecTypeXFCRC recordType = 2172 constant RecTypeXFExt (line 265) | RecTypeXFExt recordType = 2173 constant RecTypeAutoFilter12 (line 266) | RecTypeAutoFilter12 recordType = 2174 constant RecTypeContinueFrt12 (line 267) | RecTypeContinueFrt12 recordType = 2175 constant RecTypeMDTInfo (line 268) | RecTypeMDTInfo recordType = 2180 constant RecTypeMDXStr (line 269) | RecTypeMDXStr recordType = 2181 constant RecTypeMDXTuple (line 270) | RecTypeMDXTuple recordType = 2182 constant RecTypeMDXSet (line 271) | RecTypeMDXSet recordType = 2183 constant RecTypeMDXProp (line 272) | RecTypeMDXProp recordType = 2184 constant RecTypeMDXKPI (line 273) | RecTypeMDXKPI recordType = 2185 constant RecTypeMDB (line 274) | RecTypeMDB recordType = 2186 constant RecTypePLV (line 275) | RecTypePLV recordType = 2187 constant RecTypeCompat12 (line 276) | RecTypeCompat12 recordType = 2188 constant RecTypeDXF (line 277) | RecTypeDXF recordType = 2189 constant RecTypeTableStyles (line 278) | RecTypeTableStyles recordType = 2190 constant RecTypeTableStyle (line 279) | RecTypeTableStyle recordType = 2191 constant RecTypeTableStyleElement (line 280) | RecTypeTableStyleElement recordType = 2192 constant RecTypeStyleExt (line 281) | RecTypeStyleExt recordType = 2194 constant RecTypeNamePublish (line 282) | RecTypeNamePublish recordType = 2195 constant RecTypeNameCmt (line 283) | RecTypeNameCmt recordType = 2196 constant RecTypeSortData (line 284) | RecTypeSortData recordType = 2197 constant RecTypeTheme (line 285) | RecTypeTheme recordType = 2198 constant RecTypeGUIDTypeLib (line 286) | RecTypeGUIDTypeLib recordType = 2199 constant RecTypeFnGrp12 (line 287) | RecTypeFnGrp12 recordType = 2200 constant RecTypeNameFnGrp12 (line 288) | RecTypeNameFnGrp12 recordType = 2201 constant RecTypeMTRSettings (line 289) | RecTypeMTRSettings recordType = 2202 constant RecTypeCompressPictures (line 290) | RecTypeCompressPictures recordType = 2203 constant RecTypeHeaderFooter (line 291) | RecTypeHeaderFooter recordType = 2204 constant RecTypeCrtLayout12 (line 292) | RecTypeCrtLayout12 recordType = 2205 constant RecTypeCrtMlFrt (line 293) | RecTypeCrtMlFrt recordType = 2206 constant RecTypeCrtMlFrtContinue (line 294) | RecTypeCrtMlFrtContinue recordType = 2207 constant RecTypeForceFullCalculation (line 295) | RecTypeForceFullCalculation recordType = 2211 constant RecTypeShapePropsStream (line 296) | RecTypeShapePropsStream recordType = 2212 constant RecTypeTextPropsStream (line 297) | RecTypeTextPropsStream recordType = 2213 constant RecTypeRichTextStream (line 298) | RecTypeRichTextStream recordType = 2214 constant RecTypeCrtLayout12A (line 299) | RecTypeCrtLayout12A recordType = 2215 constant RecTypeUnits (line 300) | RecTypeUnits recordType = 4097 constant RecTypeChart (line 301) | RecTypeChart recordType = 4098 constant RecTypeSeries (line 302) | RecTypeSeries recordType = 4099 constant RecTypeDataFormat (line 303) | RecTypeDataFormat recordType = 4102 constant RecTypeLineFormat (line 304) | RecTypeLineFormat recordType = 4103 constant RecTypeMarkerFormat (line 305) | RecTypeMarkerFormat recordType = 4105 constant RecTypeAreaFormat (line 306) | RecTypeAreaFormat recordType = 4106 constant RecTypePieFormat (line 307) | RecTypePieFormat recordType = 4107 constant RecTypeAttachedLabel (line 308) | RecTypeAttachedLabel recordType = 4108 constant RecTypeSeriesText (line 309) | RecTypeSeriesText recordType = 4109 constant RecTypeChartFormat (line 310) | RecTypeChartFormat recordType = 4116 constant RecTypeLegend (line 311) | RecTypeLegend recordType = 4117 constant RecTypeSeriesList (line 312) | RecTypeSeriesList recordType = 4118 constant RecTypeBar (line 313) | RecTypeBar recordType = 4119 constant RecTypeLine (line 314) | RecTypeLine recordType = 4120 constant RecTypePie (line 315) | RecTypePie recordType = 4121 constant RecTypeArea (line 316) | RecTypeArea recordType = 4122 constant RecTypeScatter (line 317) | RecTypeScatter recordType = 4123 constant RecTypeCrtLine (line 318) | RecTypeCrtLine recordType = 4124 constant RecTypeAxis (line 319) | RecTypeAxis recordType = 4125 constant RecTypeTick (line 320) | RecTypeTick recordType = 4126 constant RecTypeValueRange (line 321) | RecTypeValueRange recordType = 4127 constant RecTypeCatSerRange (line 322) | RecTypeCatSerRange recordType = 4128 constant RecTypeAxisLine (line 323) | RecTypeAxisLine recordType = 4129 constant RecTypeCrtLink (line 324) | RecTypeCrtLink recordType = 4130 constant RecTypeDefaultText (line 325) | RecTypeDefaultText recordType = 4132 constant RecTypeText (line 326) | RecTypeText recordType = 4133 constant RecTypeFontX (line 327) | RecTypeFontX recordType = 4134 constant RecTypeObjectLink (line 328) | RecTypeObjectLink recordType = 4135 constant RecTypeFrame (line 329) | RecTypeFrame recordType = 4146 constant RecTypeBegin (line 330) | RecTypeBegin recordType = 4147 constant RecTypeEnd (line 331) | RecTypeEnd recordType = 4148 constant RecTypePlotArea (line 332) | RecTypePlotArea recordType = 4149 constant RecTypeChart3d (line 333) | RecTypeChart3d recordType = 4154 constant RecTypePicF (line 334) | RecTypePicF recordType = 4156 constant RecTypeDropBar (line 335) | RecTypeDropBar recordType = 4157 constant RecTypeRadar (line 336) | RecTypeRadar recordType = 4158 constant RecTypeSurf (line 337) | RecTypeSurf recordType = 4159 constant RecTypeRadarArea (line 338) | RecTypeRadarArea recordType = 4160 constant RecTypeAxisParent (line 339) | RecTypeAxisParent recordType = 4161 constant RecTypeLegendException (line 340) | RecTypeLegendException recordType = 4163 constant RecTypeShtProps (line 341) | RecTypeShtProps recordType = 4164 constant RecTypeSerToCrt (line 342) | RecTypeSerToCrt recordType = 4165 constant RecTypeAxesUsed (line 343) | RecTypeAxesUsed recordType = 4166 constant RecTypeSBaseRef (line 344) | RecTypeSBaseRef recordType = 4168 constant RecTypeSerParent (line 345) | RecTypeSerParent recordType = 4170 constant RecTypeSerAuxTrend (line 346) | RecTypeSerAuxTrend recordType = 4171 constant RecTypeIFmtRecord (line 347) | RecTypeIFmtRecord recordType = 4174 constant RecTypePos (line 348) | RecTypePos recordType = 4175 constant RecTypeAlRuns (line 349) | RecTypeAlRuns recordType = 4176 constant RecTypeBRAI (line 350) | RecTypeBRAI recordType = 4177 constant RecTypeSerAuxErrBar (line 351) | RecTypeSerAuxErrBar recordType = 4187 constant RecTypeClrtClient (line 352) | RecTypeClrtClient recordType = 4188 constant RecTypeSerFmt (line 353) | RecTypeSerFmt recordType = 4189 constant RecTypeChart3DBarShape (line 354) | RecTypeChart3DBarShape recordType = 4191 constant RecTypeFbi (line 355) | RecTypeFbi recordType = 4192 constant RecTypeBopPop (line 356) | RecTypeBopPop recordType = 4193 constant RecTypeAxcExt (line 357) | RecTypeAxcExt recordType = 4194 constant RecTypeDat (line 358) | RecTypeDat recordType = 4195 constant RecTypePlotGrowth (line 359) | RecTypePlotGrowth recordType = 4196 constant RecTypeSIIndex (line 360) | RecTypeSIIndex recordType = 4197 constant RecTypeGelFrame (line 361) | RecTypeGelFrame recordType = 4198 constant RecTypeBopPopCustom (line 362) | RecTypeBopPopCustom recordType = 4199 constant RecTypeFbi2 (line 363) | RecTypeFbi2 recordType = 4200 FILE: xls/sheets.go method List (line 15) | func (b *WorkBook) List() ([]string, error) { method ListHidden (line 26) | func (b *WorkBook) ListHidden() ([]string, error) { method Get (line 37) | func (b *WorkBook) Get(sheetName string) (grate.Collection, error) { method parseSheet (line 47) | func (b *WorkBook) parseSheet(s *boundSheet, ss int) (*commonxl.Sheet, e... FILE: xls/simple_test.go function loadTestData (line 24) | func loadTestData(fn string, ff *commonxl.Formatter) (*commonxl.Sheet, e... function TestBasic (line 45) | func TestBasic(t *testing.T) { FILE: xls/strings.go function decodeShortXLUnicodeString (line 12) | func decodeShortXLUnicodeString(raw []byte) (string, int, error) { function decodeXLUnicodeString (line 38) | func decodeXLUnicodeString(raw []byte) (string, int, error) { function decodeXLUnicodeRichExtendedString (line 64) | func decodeXLUnicodeRichExtendedString(r io.Reader) (string, error) { function parseSST (line 137) | func parseSST(recs []*rec) ([]string, error) { FILE: xls/structs.go type header (line 8) | type header struct type rec (line 17) | type rec struct type boundSheet (line 23) | type boundSheet struct type shRow (line 31) | type shRow struct type shRef8 (line 40) | type shRef8 struct type shMulRK (line 46) | type shMulRK struct type RkRec (line 52) | type RkRec struct type shRK (line 57) | type shRK struct type RKNumber (line 64) | type RKNumber method IsInteger (line 66) | func (r RKNumber) IsInteger() bool { method Int (line 78) | func (r RKNumber) Int() int { method Float64 (line 89) | func (r RKNumber) Float64() float64 { method String (line 102) | func (r RKNumber) String() string { FILE: xls/xls.go type WorkBook (line 26) | type WorkBook struct method IsProtected (line 48) | func (b *WorkBook) IsProtected() bool { method loadFromStream (line 79) | func (b *WorkBook) loadFromStream(raw []byte) error { method loadFromStreamWithDecryptor (line 83) | func (b *WorkBook) loadFromStreamWithDecryptor(raw []byte, dec crypto.... method Close (line 162) | func (b *WorkBook) Close() error { method loadFromStream2 (line 175) | func (b *WorkBook) loadFromStream2(raw []byte, isDecrypted bool) error { method nextRecord (line 346) | func (b *WorkBook) nextRecord(raw []byte) (*rec, int, error) { function Open (line 52) | func Open(filename string) (grate.Source, error) { FILE: xlsx/comp_test.go function TestAllFiles (line 10) | func TestAllFiles(t *testing.T) { FILE: xlsx/sheets.go type Sheet (line 16) | type Sheet struct method parseSheet (line 29) | func (s *Sheet) parseSheet() error { FILE: xlsx/simple_test.go function loadTestData (line 23) | func loadTestData(fn string, ff *commonxl.Formatter) (*commonxl.Sheet, e... function TestBasic (line 44) | func TestBasic(t *testing.T) { FILE: xlsx/types.go type CellType (line 9) | type CellType constant BlankCellType (line 13) | BlankCellType CellType = "" constant BooleanCellType (line 14) | BooleanCellType CellType = "b" constant DateCellType (line 15) | DateCellType CellType = "d" constant ErrorCellType (line 16) | ErrorCellType CellType = "e" constant NumberCellType (line 17) | NumberCellType CellType = "n" constant SharedStringCellType (line 18) | SharedStringCellType CellType = "s" constant FormulaStringCellType (line 19) | FormulaStringCellType CellType = "str" constant InlineStringCellType (line 20) | InlineStringCellType CellType = "inlineStr" type staticCellType (line 23) | type staticCellType method String (line 39) | func (s staticCellType) String() string { constant staticBlank (line 26) | staticBlank staticCellType = 0 constant continueColumnMerged (line 29) | continueColumnMerged staticCellType = '→' constant endColumnMerged (line 31) | endColumnMerged staticCellType = '⇥' constant continueRowMerged (line 34) | continueRowMerged staticCellType = '↓' constant endRowMerged (line 36) | endRowMerged staticCellType = '⤓' function col2int (line 48) | func col2int(col string) int { function refToIndexes (line 57) | func refToIndexes(r string) (column, row int) { function getAttrs (line 82) | func getAttrs(attrs []xml.Attr, keys ...string) []string { FILE: xlsx/workbook.go method parseRels (line 15) | func (d *Document) parseRels(dec *xml.Decoder, basedir string) error { method parseWorkbook (line 59) | func (d *Document) parseWorkbook(dec *xml.Decoder) error { method parseStyles (line 104) | func (d *Document) parseStyles(dec *xml.Decoder) error { method parseSharedStrings (line 184) | func (d *Document) parseSharedStrings(dec *xml.Decoder) error { FILE: xlsx/xlsx.go type Document (line 20) | type Document struct method Close (line 34) | func (d *Document) Close() error { method openXML (line 135) | func (d *Document) openXML(name string) (*xml.Decoder, io.Closer, erro... method List (line 152) | func (d *Document) List() ([]string, error) { method Get (line 160) | func (d *Document) Get(sheetName string) (grate.Collection, error) { function Open (line 44) | func Open(filename string) (grate.Source, error) {