diff --git a/.gitignore b/.gitignore
index 227304d..91629f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,4 +23,6 @@ _testmain.go
*.test
*.prof
+*.db
+
config.yml
diff --git a/caching/caching.go b/caching/caching.go
index 6018988..728e513 100644
--- a/caching/caching.go
+++ b/caching/caching.go
@@ -6,7 +6,7 @@ import (
"time"
"github.com/boltdb/bolt"
- "github.com/eljuanchosf/gocafier/logging"
+ log "github.com/eljuanchosf/gocafier/logging"
"github.com/kr/pretty"
"github.com/mitchellh/go-homedir"
)
@@ -66,7 +66,7 @@ func createDatabase(cacheFilename string) error {
cacheFilename += "/.gocafier.db"
}
- logging.LogStd(fmt.Sprintf("Setting cache file to %s ", cacheFilename), true)
+ log.LogStd(fmt.Sprintf("Setting cache file to %s ", cacheFilename), true)
config := &bolt.Options{Timeout: 1 * time.Second}
appdb, err = bolt.Open(cacheFilename, 0600, config)
@@ -125,8 +125,8 @@ func ListPackages() {
appdb.View(func(tx *bolt.Tx) error {
c := tx.Bucket([]byte(bucketName)).Cursor()
for k, v := c.First(); k != nil; k, v = c.Next() {
- logging.LogStd(fmt.Sprintf("key=%s", k), true)
- logging.LogStd(fmt.Sprintf("value=%s\n", pretty.Formatter(v)), true)
+ log.LogStd(fmt.Sprintf("key=%s", k), true)
+ log.LogStd(fmt.Sprintf("value=%s\n", pretty.Formatter(v)), true)
}
return nil
})
diff --git a/caching/my.db b/caching/my.db
deleted file mode 100644
index a7f1cec..0000000
Binary files a/caching/my.db and /dev/null differ
diff --git a/email-template.html b/email-template.html
new file mode 100644
index 0000000..1b9f2de
--- /dev/null
+++ b/email-template.html
@@ -0,0 +1,14 @@
+
Envío {{.PackageNumber}}
+Hay un update del envío de referencia.
+Origen del envío
+
+ {{.From}}
+
+Ultimo(s) movimiento(s)
+
+
+ {{ range $movement := .Movements }}
+ - {{ $movement.Date }}: {{ $movement.Description }}
+ {{ end }}
+
+
diff --git a/main.go b/main.go
index c5807bc..9d05da0 100644
--- a/main.go
+++ b/main.go
@@ -3,14 +3,12 @@ package main
import (
"fmt"
- "gopkg.in/gomail.v2"
-
"github.com/eljuanchosf/gocafier/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2"
"github.com/eljuanchosf/gocafier/caching"
- "github.com/eljuanchosf/gocafier/logging"
+ log "github.com/eljuanchosf/gocafier/logging"
+ "github.com/eljuanchosf/gocafier/notifications"
"github.com/eljuanchosf/gocafier/ocaclient"
"github.com/eljuanchosf/gocafier/settings"
- "github.com/kr/pretty"
)
var (
@@ -29,63 +27,51 @@ const (
)
func main() {
- logging.LogStd(fmt.Sprintf("Starting gocafier %s ", version), true)
- logging.SetupLogging(*debug)
+ log.LogStd(fmt.Sprintf("Starting gocafier %s ", version), true)
+ log.SetupLogging(*debug)
kingpin.Version(version)
kingpin.Parse()
- config = settings.LoadConfig("config.yml")
+ settings.LoadConfig(*configPath)
caching.CreateBucket(*cachePath)
- packageType := "paquetes"
- packageNumber := "3867500000015544038"
- logging.LogPackage(packageNumber, "Verifying...")
- pastData, err := caching.GetPackage(packageNumber)
- if err != nil {
- panic(err)
- }
-
- //pastData.Data[0].Log[0] = caching.DetailLog{}
- currentData, err := ocaclient.RequestData(packageType, packageNumber)
- if err != nil {
- panic(err)
- }
-
- currentData.Data[0].Type = packageType
+ for _, packageNumber := range settings.Values.Packages {
+ log.LogPackage(packageNumber, "Verifying...")
+ pastData, err := caching.GetPackage(packageNumber)
+ if err != nil {
+ panic(err)
+ }
- if pastData == nil {
- logging.LogPackage(packageNumber, "Package does not exists in cache, saving initial data.")
- //currentData.Save()
- logging.LogPackage(packageNumber, "Sending notification...")
- err = SendNotification(currentData)
+ packageType := "paquetes"
+ //pastData.Data[0].Log[0] = caching.DetailLog{}
+ currentData, err := ocaclient.RequestData(packageType, packageNumber)
if err != nil {
panic(err)
}
- } else {
- diff, diffFound := pastData.DiffWith(currentData)
- if diffFound {
- logging.LogPackage(packageNumber, "Change detected. Sending notification.")
- fmt.Printf("%# v", pretty.Formatter(diff))
- //currentData.Save()
+
+ currentData.Data[0].Type = packageType
+
+ if pastData == nil {
+ log.LogPackage(packageNumber, "Package does not exist in cache, saving initial data.")
+ changeDetected(packageNumber, currentData, nil)
} else {
- logging.LogPackage(packageNumber, "No change.")
+ diff, diffFound := pastData.DiffWith(currentData)
+ if diffFound {
+ changeDetected(packageNumber, currentData, diff)
+ } else {
+ log.LogPackage(packageNumber, "No change.")
+ }
}
}
caching.Close()
}
-func SendNotification(currentData caching.OcaPackageDetail) error {
- packageCode := currentData.Data[0].Code
- m := gomail.NewMessage()
- m.SetHeader("From", config.Email.From)
- m.SetHeader("To", config.Email.To)
- m.SetHeader("Subject", fmt.Sprintf(config.Email.Subject, packageCode))
- m.SetBody("text/html", fmt.Sprintf(config.Email.Body, packageCode))
-
- d := gomail.NewPlainDialer(config.SMTP.Server, config.SMTP.Port, *smtpUser, *smtpPassword)
- if err := d.DialAndSend(m); err != nil {
- return err
+func changeDetected(packageNumber string, currentData caching.OcaPackageDetail, diff []caching.DetailLog) {
+ var err error
+ log.LogPackage(packageNumber, "Change detected.")
+ err = notifications.Send(currentData, diff, *smtpUser, *smtpPassword)
+ if err != nil {
+ panic(err)
}
- logging.LogPackage(packageCode, "Notification sent")
- return nil
+ //currentData.Save()
}
diff --git a/notifications/notifications.go b/notifications/notifications.go
new file mode 100644
index 0000000..306c8b4
--- /dev/null
+++ b/notifications/notifications.go
@@ -0,0 +1,62 @@
+package notifications
+
+import (
+ "bytes"
+ "fmt"
+ "strings"
+ "text/template"
+
+ "github.com/eljuanchosf/gocafier/caching"
+ log "github.com/eljuanchosf/gocafier/logging"
+ "github.com/eljuanchosf/gocafier/settings"
+ "gopkg.in/gomail.v2"
+)
+
+func loadBodyTemplate(packageNumber string, packageDetail caching.OcaPackageDetail, diff []caching.DetailLog) string {
+ var fullBody bytes.Buffer
+
+ type emailData struct {
+ PackageNumber string
+ From string
+ Movements []caching.DetailLog
+ }
+
+ originDetails := packageDetail.Data[0].Detail[0]
+
+ var packageData emailData
+ packageData.PackageNumber = packageNumber
+ packageData.From = fmt.Sprintf("%s %s, %s, %s",
+ strings.TrimSpace(originDetails.DomicilioRetiro),
+ strings.TrimSpace(originDetails.NumeroRetiro),
+ strings.TrimSpace(originDetails.LocalidadRetiro),
+ strings.TrimSpace(originDetails.PciaRetiro))
+
+ packageData.Movements = diff
+ t, _ := template.ParseFiles("email-template.html")
+ t.Execute(&fullBody, packageData)
+ return fullBody.String()
+}
+
+//Send sends the email notification
+func Send(currentData caching.OcaPackageDetail, diff []caching.DetailLog, smtpUser string, smtpPassword string) error {
+ packageNumber := currentData.Data[0].Code
+
+ if diff == nil {
+ diff = currentData.Data[0].Log
+ }
+
+ log.LogPackage(packageNumber, "Sending notification...")
+ m := gomail.NewMessage()
+ m.SetHeader("From", settings.Values.Email.From)
+ m.SetHeader("To", settings.Values.Email.To)
+ m.SetHeader("Subject", fmt.Sprintf(settings.Values.Email.Subject, packageNumber))
+ m.SetBody("text/html", loadBodyTemplate(packageNumber, currentData, diff))
+
+ d := gomail.NewPlainDialer(settings.Values.SMTP.Server, settings.Values.SMTP.Port, smtpUser, smtpPassword)
+ if err := d.DialAndSend(m); err != nil {
+ return err
+ }
+
+ log.LogPackage(packageNumber, "Notification sent")
+ return nil
+}
diff --git a/settings/settings.go b/settings/settings.go
index 36d00c9..3ffea08 100644
--- a/settings/settings.go
+++ b/settings/settings.go
@@ -9,6 +9,8 @@ import (
"gopkg.in/yaml.v2"
)
+var Values Config
+
//Config represents the config structure for the package
type Config struct {
Email struct {
@@ -26,11 +28,9 @@ type Config struct {
}
//LoadConfig reads the specified config file
-func LoadConfig(filename string) Config {
- var config Config
-
+func LoadConfig(filename string) {
if filename == "." {
- filename = "../config.yml"
+ filename = "config.yml"
}
logging.LogStd(fmt.Sprintf("Loading config from %s", filename), true)
@@ -39,9 +39,8 @@ func LoadConfig(filename string) Config {
if err != nil {
panic(err)
}
- err = yaml.Unmarshal(source, &config)
+ err = yaml.Unmarshal(source, &Values)
if err != nil {
panic(err)
}
- return config
}
diff --git a/tags b/tags
deleted file mode 100644
index e4c4b48..0000000
--- a/tags
+++ /dev/null
@@ -1,2198 +0,0 @@
-!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
-!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
-!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
-!_TAG_PROGRAM_NAME Exuberant Ctags //
-!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
-!_TAG_PROGRAM_VERSION 5.9~svn20110310 //
-Action Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Action(action Action) *Application {$/;" f
-Action Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^type Action func(*ParseContext) error$/;" t
-Action Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func (a *ArgClause) Action(action Action) *ArgClause {$/;" f
-Action Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) Action(action Action) *CmdClause {$/;" f
-Action Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Action(action Action) *FlagClause {$/;" f
-ActionNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type ActionNode struct {$/;" t
-Add Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go /^func (hooks LevelHooks) Add(hook Hook) {$/;" f
-Add Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *ChainNode) Add(field string) {$/;" f
-Add Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (s *BucketStats) Add(other BucketStats) {$/;" f
-AddHook Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func AddHook(hook Hook) {$/;" f
-AddParseTree Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) AddParseTree(name string, tree *parse.Tree) (*Template, error) {$/;" f
-Application Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^type Application struct {$/;" t
-ApplicationModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type ApplicationModel struct {$/;" t
-ApplicationValidator Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^type ApplicationValidator func(*Application) error$/;" t
-Arg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func (a *argGroup) Arg(name, help string) *ArgClause {$/;" f
-Arg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Arg(name, help string) *ArgClause {$/;" f
-ArgClause Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^type ArgClause struct {$/;" t
-ArgGroupModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type ArgGroupModel struct {$/;" t
-ArgModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type ArgModel struct {$/;" t
-ArgSummary Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (a *ArgGroupModel) ArgSummary() string {$/;" f
-Author Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Author(author string) *Application {$/;" f
-BENCH Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^BENCH=.$/;" m
-BRANCH Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^BRANCH=`git rev-parse --abbrev-ref HEAD`$/;" m
-Base2Bytes Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^type Base2Bytes int64$/;" t
-Batch Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^func (db *DB) Batch(fn func(*Tx) error) error {$/;" f
-Begin Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Begin(writable bool) (*Tx, error) {$/;" f
-Begin Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Begin func() *HttpClient$/;" v
-Begin Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Begin() *HttpClient {$/;" f
-BenchCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type BenchCommand struct {$/;" t
-BenchOptions Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type BenchOptions struct {$/;" t
-BenchResults Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type BenchResults struct {$/;" t
-BenchmarkDBBatchAutomatic Godeps/_workspace/src/github.com/boltdb/bolt/batch_benchmark_test.go /^func BenchmarkDBBatchAutomatic(b *testing.B) {$/;" f
-BenchmarkDBBatchManual10x100 Godeps/_workspace/src/github.com/boltdb/bolt/batch_benchmark_test.go /^func BenchmarkDBBatchManual10x100(b *testing.B) {$/;" f
-BenchmarkDBBatchSingle Godeps/_workspace/src/github.com/boltdb/bolt/batch_benchmark_test.go /^func BenchmarkDBBatchSingle(b *testing.B) {$/;" f
-BenchmarkDir Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go /^func BenchmarkDir(b *testing.B) {$/;" f
-BenchmarkErrorTextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkErrorTextFormatter(b *testing.B) {$/;" f
-BenchmarkLargeColoredTextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkLargeColoredTextFormatter(b *testing.B) {$/;" f
-BenchmarkLargeJSONFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkLargeJSONFormatter(b *testing.B) {$/;" f
-BenchmarkLargeTextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkLargeTextFormatter(b *testing.B) {$/;" f
-BenchmarkSmallColoredTextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkSmallColoredTextFormatter(b *testing.B) {$/;" f
-BenchmarkSmallJSONFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkSmallJSONFormatter(b *testing.B) {$/;" f
-BenchmarkSmallTextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^func BenchmarkSmallTextFormatter(b *testing.B) {$/;" f
-Benchmark_FreelistRelease10000K Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func Benchmark_FreelistRelease10000K(b *testing.B) { benchmark_FreelistRelease(b, 10000000) }$/;" f
-Benchmark_FreelistRelease1000K Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func Benchmark_FreelistRelease1000K(b *testing.B) { benchmark_FreelistRelease(b, 1000000) }$/;" f
-Benchmark_FreelistRelease100K Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func Benchmark_FreelistRelease100K(b *testing.B) { benchmark_FreelistRelease(b, 100000) }$/;" f
-Benchmark_FreelistRelease10K Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func Benchmark_FreelistRelease10K(b *testing.B) { benchmark_FreelistRelease(b, 10000) }$/;" f
-Bool Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Bool() (target *bool) {$/;" f
-Bool Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Bool() (target *bool) {$/;" f
-BoolNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type BoolNode struct {$/;" t
-BoolVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) BoolVar(target *bool) {$/;" f
-BranchNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type BranchNode struct {$/;" t
-Bucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Bucket(name []byte) *Bucket {$/;" f
-Bucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^type Bucket struct {$/;" t
-Bucket Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Bucket() *Bucket {$/;" f
-Bucket Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Bucket(name []byte) *Bucket {$/;" f
-BucketStats Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^type BucketStats struct {$/;" t
-Bytes Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Bytes() (target *units.Base2Bytes) {$/;" f
-BytesVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) BytesVar(target *units.Base2Bytes) {$/;" f
-COMMIT Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^COMMIT=`git rev-parse --short HEAD`$/;" m
-CONNECT_TIMEOUT Godeps/_workspace/src/github.com/ddliu/go-httpclient/example/main.go /^ CONNECT_TIMEOUT = 5$/;" c
-CONST Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^var CONST = map[string]int {$/;" v
-COVERPROFILE Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^COVERPROFILE=\/tmp\/c.out$/;" m
-ChainNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type ChainNode struct {$/;" t
-Check Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Check() <-chan error {$/;" f
-CheckCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type CheckCommand struct {$/;" t
-Clone Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Clone() (*Template, error) {$/;" f
-Close Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^func (db *DB) Close() error {$/;" f
-Close Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Close() error {$/;" f
-Close Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) Close() {$/;" f
-Close caching/caching.go /^func Close() {$/;" f
-CmdClause Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^type CmdClause struct {$/;" t
-CmdClauseValidator Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^type CmdClauseValidator func(*CmdClause) error$/;" t
-CmdGroupModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type CmdGroupModel struct {$/;" t
-CmdModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type CmdModel struct {$/;" t
-Command Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Command(name, help string) *CmdClause {$/;" f
-Command Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) Command(name, help string) *CmdClause {$/;" f
-Command Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Command(name, help string) *CmdClause {$/;" f
-CommandLine Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^ CommandLine = New(filepath.Base(os.Args[0]), "")$/;" v
-CommandNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type CommandNode struct {$/;" t
-Comment Godeps/Godeps.json /^ "Comment": "v0.5.0-10-gcbb50d2",$/;" f
-Comment Godeps/Godeps.json /^ "Comment": "v0.8.6-13-g84b968c",$/;" f
-Comment Godeps/Godeps.json /^ "Comment": "v1.0-119-g90fef38",$/;" f
-Comment Godeps/Godeps.json /^ "Comment": "v2.0.12",$/;" f
-Commit Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Commit() error {$/;" f
-CompactUsageTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go /^var CompactUsageTemplate = `{{define "FormatCommand"}}\\$/;" v
-Config settings/settings.go /^type Config struct {$/;" t
-Connect logging/logging.go /^func Connect() bool {$/;" f
-CookieValue Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var CookieValue func(string, string)(string)$/;" v
-CookieValue Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) CookieValue(url_ string, key string) string {$/;" f
-CookieValues Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var CookieValues func(string)(map[string]string)$/;" v
-CookieValues Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) CookieValues(url_ string) map[string]string {$/;" f
-Cookies Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Cookies func(string)([]*http.Cookie)$/;" v
-Cookies Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Cookies(url_ string) []*http.Cookie {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) Copy() *T {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (a *ActionNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BoolNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BranchNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *ChainNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *CommandNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (d *DotNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *elseNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *endNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (f *FieldNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IdentifierNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IfNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (l *ListNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NilNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NumberNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p *PipeNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (r *RangeNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (s *StringNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TemplateNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TextNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (v *VariableNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (w *WithNode) Copy() Node {$/;" f
-Copy Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) Copy() *Tree {$/;" f
-Copy Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func (db *QuickDB) Copy() *QuickDB {$/;" f
-Copy Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Copy(w io.Writer) error {$/;" f
-CopyFile Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) CopyFile(path string, mode os.FileMode) error {$/;" f
-CopyList Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (l *ListNode) CopyList() *ListNode {$/;" f
-CopyPipe Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p *PipeNode) CopyPipe() *PipeNode {$/;" f
-CopyTempFile Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) CopyTempFile() {$/;" f
-CreateBucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) CreateBucket(key []byte) (*Bucket, error) {$/;" f
-CreateBucket Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) CreateBucket(name []byte) (*Bucket, error) {$/;" f
-CreateBucket caching/caching.go /^func CreateBucket(cacheFilename string) {$/;" f
-CreateBucketIfNotExists Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) CreateBucketIfNotExists(key []byte) (*Bucket, error) {$/;" f
-CreateBucketIfNotExists Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) CreateBucketIfNotExists(name []byte) (*Bucket, error) {$/;" f
-Cursor Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Cursor() *Cursor {$/;" f
-Cursor Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^type Cursor struct {$/;" t
-Cursor Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Cursor() *Cursor {$/;" f
-DB Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^type DB struct {$/;" t
-DB Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^type DB struct {$/;" t
-DB Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) DB() *DB {$/;" f
-Debug Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Debug(args ...interface{}) {$/;" f
-Debug Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Debug(args ...interface{}) {$/;" f
-Debug Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Debug(args ...interface{}) {$/;" f
-DebugLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ DebugLevel$/;" c
-Debugf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Debugf(format string, args ...interface{}) {$/;" f
-Debugf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Debugf(format string, args ...interface{}) {$/;" f
-Debugf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Debugf(format string, args ...interface{}) {$/;" f
-Debugln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Debugln(args ...interface{}) {$/;" f
-Debugln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Debugln(args ...interface{}) {$/;" f
-Debugln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Debugln(args ...interface{}) {$/;" f
-Default Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func (a *ArgClause) Default(value string) *ArgClause {$/;" f
-Default Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Default(value string) *FlagClause {$/;" f
-DefaultFillPercent Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^const DefaultFillPercent = 0.5$/;" c
-DefaultMaxBatchDelay Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^ DefaultMaxBatchDelay = 10 * time.Millisecond$/;" c
-DefaultMaxBatchSize Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^ DefaultMaxBatchSize int = 1000$/;" c
-DefaultOptions Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^var DefaultOptions = &Options{$/;" v
-DefaultTimestampFormat Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go /^const DefaultTimestampFormat = time.RFC3339$/;" c
-DefaultUsageTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go /^var DefaultUsageTemplate = `{{define "FormatCommand"}}\\$/;" v
-Defaults Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Defaults func(Map) *HttpClient$/;" v
-Defaults Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Defaults(defaults Map) *HttpClient {$/;" f
-Delete Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Delete(key []byte) error {$/;" f
-Delete Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Delete() error {$/;" f
-Delete Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Delete func(string, map[string]string)(*Response, error)$/;" v
-Delete Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Delete(url string, params map[string]string) (*Response, $/;" f
-DeleteBucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) DeleteBucket(key []byte) error {$/;" f
-DeleteBucket Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) DeleteBucket(name []byte) error {$/;" f
-Delims Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Delims(left, right string) *Template {$/;" f
-Deps Godeps/Godeps.json /^ "Deps": [$/;" f
-DetailLog caching/caching.go /^type DetailLog struct {$/;" t
-DiffWith caching/caching.go /^func (p *OcaPackageDetail) DiffWith(packageDetails OcaPackageDetail) ([]DetailLog, bool) {$/;" f
-Dir Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go /^func Dir() (string, error) {$/;" f
-DisableCache Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go /^var DisableCache bool$/;" v
-Do Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Do func(string, string, map[string]string, io.Reader)(*Response, error)$/;" v
-Do Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Do(method string, url string, headers map[string]string, $/;" f
-DotNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type DotNode struct {$/;" t
-DumpCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type DumpCommand struct {$/;" t
-Duration Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Duration() (target *time.Duration) {$/;" f
-DurationList Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) DurationList() (target *[]time.Duration) {$/;" f
-DurationListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) DurationListVar(target *[]time.Duration) {$/;" f
-DurationVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) DurationVar(target *time.Duration) {$/;" f
-EB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ EB = Exabyte$/;" c
-EOL Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) EOL() bool {$/;" f
-ERR_DEFAULT Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^ ERR_DEFAULT$/;" c
-ERR_REDIRECT_POLICY Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^ ERR_REDIRECT_POLICY$/;" c
-ERR_TIMEOUT Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^ ERR_TIMEOUT$/;" c
-EiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ EiB = Exbibyte$/;" c
-Entry Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^type Entry struct {$/;" t
-Enum Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Enum(options ...string) (target *string) {$/;" f
-EnumVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) EnumVar(target *string, options ...string) {$/;" f
-Enums Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Enums(options ...string) (target *[]string) {$/;" f
-EnumsVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) EnumsVar(target *[]string, options ...string) {$/;" f
-Equal Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (t *Token) Equal(o *Token) bool {$/;" f
-ErrBucketExists Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrBucketExists = errors.New("bucket already exists")$/;" v
-ErrBucketNameRequired Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrBucketNameRequired = errors.New("bucket name required")$/;" v
-ErrBucketNotFound Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrBucketNotFound = errors.New("bucket not found")$/;" v
-ErrBugsnagSendFailed Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^type ErrBugsnagSendFailed struct {$/;" t
-ErrBugsnagUnconfigured Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^var ErrBugsnagUnconfigured = errors.New("bugsnag must be configured before installing this logrus hook")$/;" v
-ErrChecksum Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrChecksum = errors.New("checksum error")$/;" v
-ErrCommandNotSpecified Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^ ErrCommandNotSpecified = fmt.Errorf("command not specified")$/;" v
-ErrCorrupt Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrCorrupt = errors.New("invalid value")$/;" v
-ErrDatabaseNotOpen Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrDatabaseNotOpen = errors.New("database not open")$/;" v
-ErrDatabaseOpen Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrDatabaseOpen = errors.New("database already open")$/;" v
-ErrDatabaseReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrDatabaseReadOnly = errors.New("database is in read-only mode")$/;" v
-ErrFileNotFound Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrFileNotFound = errors.New("file not found")$/;" v
-ErrIncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrIncompatibleValue = errors.New("incompatible value")$/;" v
-ErrInvalid Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrInvalid = errors.New("invalid database")$/;" v
-ErrInvalidValue Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrInvalidValue = errors.New("invalid value")$/;" v
-ErrKeyRequired Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrKeyRequired = errors.New("key required")$/;" v
-ErrKeyTooLarge Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrKeyTooLarge = errors.New("key too large")$/;" v
-ErrNonDivisibleBatchSize Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrNonDivisibleBatchSize = errors.New("number of iterations must be divisible by the batch size")$/;" v
-ErrPageFreed Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrPageFreed = errors.New("page freed")$/;" v
-ErrPageIDRequired Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrPageIDRequired = errors.New("page id required")$/;" v
-ErrPageNotFound Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrPageNotFound = errors.New("page not found")$/;" v
-ErrPathRequired Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrPathRequired = errors.New("path required")$/;" v
-ErrTimeout Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrTimeout = errors.New("timeout")$/;" v
-ErrTxClosed Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrTxClosed = errors.New("tx closed")$/;" v
-ErrTxNotWritable Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrTxNotWritable = errors.New("tx not writable")$/;" v
-ErrUnknownCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrUnknownCommand = errors.New("unknown command")$/;" v
-ErrUsage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ ErrUsage = errors.New("usage")$/;" v
-ErrValueTooLarge Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrValueTooLarge = errors.New("value too large")$/;" v
-ErrVersionMismatch Godeps/_workspace/src/github.com/boltdb/bolt/errors.go /^ ErrVersionMismatch = errors.New("version mismatch")$/;" v
-Error Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Error(args ...interface{}) {$/;" f
-Error Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Error(args ...interface{}) {$/;" f
-Error Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^func (e *customErr) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^func (e ErrBugsnagSendFailed) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Error(args ...interface{}) {$/;" f
-Error Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (w *W) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^func (p panicked) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (e *PageError) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func (failWriterError) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^func (this Error) Error() string {$/;" f
-Error Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^type Error struct {$/;" t
-ErrorContext Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) ErrorContext(n Node) (location, context string) {$/;" f
-ErrorHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^type ErrorHook struct {$/;" t
-ErrorLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ ErrorLevel$/;" c
-Errorf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Errorf(format string, args ...interface{}) {$/;" f
-Errorf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Errorf(format string, args ...interface{}) {$/;" f
-Errorf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Errorf(format string, args ...interface{}) {$/;" f
-Errorf Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Errorf(format string, args ...interface{}) {$/;" f
-Errorf Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Errorf(format string, args ...interface{}) {$/;" f
-Errorln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Errorln(args ...interface{}) {$/;" f
-Errorln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Errorln(args ...interface{}) {$/;" f
-Errorln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Errorln(args ...interface{}) {$/;" f
-Exa Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Exa = Peta * 1000$/;" c
-Exabyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Exabyte = Petabyte * 1000$/;" c
-ExampleBucket_Delete Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func ExampleBucket_Delete() {$/;" f
-ExampleBucket_ForEach Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func ExampleBucket_ForEach() {$/;" f
-ExampleBucket_Put Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func ExampleBucket_Put() {$/;" f
-ExampleCursor Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func ExampleCursor() {$/;" f
-ExampleCursor_reverse Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func ExampleCursor_reverse() {$/;" f
-ExampleDB_Batch Godeps/_workspace/src/github.com/boltdb/bolt/batch_example_test.go /^func ExampleDB_Batch() {$/;" f
-ExampleDB_Begin_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func ExampleDB_Begin_ReadOnly() {$/;" f
-ExampleDB_Update Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func ExampleDB_Update() {$/;" f
-ExampleDB_View Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func ExampleDB_View() {$/;" f
-ExampleTemplate Godeps/_workspace/src/github.com/alecthomas/template/example_test.go /^func ExampleTemplate() {$/;" f
-ExampleTemplate_func Godeps/_workspace/src/github.com/alecthomas/template/examplefunc_test.go /^func ExampleTemplate_func() {$/;" f
-ExampleTemplate_glob Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go /^func ExampleTemplate_glob() {$/;" f
-ExampleTemplate_helpers Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go /^func ExampleTemplate_helpers() {$/;" f
-ExampleTemplate_share Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go /^func ExampleTemplate_share() {$/;" f
-ExampleTx_CopyFile Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func ExampleTx_CopyFile() {$/;" f
-ExampleTx_Rollback Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func ExampleTx_Rollback() {$/;" f
-ExampleValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go /^func ExampleValue() {$/;" f
-Exbibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Exbibyte = Pebibyte * 1024$/;" c
-Execute Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (t *Template) Execute(wr io.Writer, data interface{}) (err error) {$/;" f
-ExecuteTemplate Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error {$/;" f
-ExistingDir Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingDir() (target *string) {$/;" f
-ExistingDirVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingDirVar(target *string) {$/;" f
-ExistingDirs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingDirs() (target *[]string) {$/;" f
-ExistingDirsVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingDirsVar(target *[]string) {$/;" f
-ExistingFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingFile() (target *string) {$/;" f
-ExistingFileOrDir Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingFileOrDir() (target *string) {$/;" f
-ExistingFileOrDirVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingFileOrDirVar(target *string) {$/;" f
-ExistingFileVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) ExistingFileVar(target *string) {$/;" f
-ExistingFiles Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingFiles() (target *[]string) {$/;" f
-ExistingFilesOrDirs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingFilesOrDirs() (target *[]string) {$/;" f
-ExistingFilesOrDirsVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingFilesOrDirsVar(target *[]string) {$/;" f
-ExistingFilesVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) ExistingFilesVar(target *[]string) {$/;" f
-Expand Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go /^func Expand(path string) (string, error) {$/;" f
-ExpandArgsFromFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func ExpandArgsFromFile(filename string) (out []string, err error) {$/;" f
-Fatal Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Fatal(args ...interface{}) {$/;" f
-Fatal Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Fatal(args ...interface{}) {$/;" f
-Fatal Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Fatal(args ...interface{}) {$/;" f
-FatalIfError Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) FatalIfError(err error, format string, args ...interface{}) {$/;" f
-FatalIfError Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func FatalIfError(err error, format string, args ...interface{}) {$/;" f
-FatalLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ FatalLevel$/;" c
-FatalUsage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) FatalUsage(format string, args ...interface{}) {$/;" f
-FatalUsage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func FatalUsage(format string, args ...interface{}) {$/;" f
-FatalUsageContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) FatalUsageContext(context *ParseContext, format string, args ...interface{}) {$/;" f
-FatalUsageContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func FatalUsageContext(context *ParseContext, format string, args ...interface{}) {$/;" f
-Fatalf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Fatalf(format string, args ...interface{}) {$/;" f
-Fatalf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Fatalf(format string, args ...interface{}) {$/;" f
-Fatalf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Fatalf(format string, args ...interface{}) {$/;" f
-Fatalf Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Fatalf(format string, args ...interface{}) {$/;" f
-Fatalf Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Fatalf(format string, args ...interface{}) {$/;" f
-Fatalln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Fatalln(args ...interface{}) {$/;" f
-Fatalln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Fatalln(args ...interface{}) {$/;" f
-Fatalln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Fatalln(args ...interface{}) {$/;" f
-FieldNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type FieldNode struct {$/;" t
-Fields Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^type Fields map[string]interface{}$/;" t
-File Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) File() (target **os.File) {$/;" f
-FileVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) FileVar(target **os.File) {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *ErrorHook) Fire(entry *Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *ModifyHook) Fire(entry *Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *TestHook) Fire(entry *Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go /^func (hooks LevelHooks) Fire(level Level, entry *Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go /^func (hook *airbrakeHook) Fire(entry *logrus.Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^func (hook *bugsnagHook) Fire(entry *logrus.Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go /^func (hook *PapertrailHook) Fire(entry *logrus.Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^func (hook *SentryHook) Fire(entry *logrus.Entry) error {$/;" f
-Fire Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go /^func (hook *SyslogHook) Fire(entry *logrus.Entry) error {$/;" f
-First Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) First() (key []byte, value []byte) {$/;" f
-Flag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *flagGroup) Flag(name, help string) *FlagClause {$/;" f
-Flag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Flag(name, help string) *FlagClause {$/;" f
-FlagClause Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^type FlagClause struct {$/;" t
-FlagGroupModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type FlagGroupModel struct {$/;" t
-FlagModel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^type FlagModel struct {$/;" t
-FlagSummary Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *FlagGroupModel) FlagSummary() string {$/;" f
-FlattenedCommands Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (c *CmdGroupModel) FlattenedCommands() (out []*CmdModel) {$/;" f
-Float Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Float() (target *float64) {$/;" f
-FloatVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) FloatVar(target *float64) {$/;" f
-ForEach Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) ForEach(fn func(k, v []byte) error) error {$/;" f
-ForEach Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) ForEach(fn func(name []byte, b *Bucket) error) error {$/;" f
-Format Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go /^func (f *LogstashFormatter) Format(entry *logrus.Entry) ([]byte, error) {$/;" f
-Format Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go /^func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {$/;" f
-Format Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {$/;" f
-FormatPlaceHolder Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *FlagModel) FormatPlaceHolder() string {$/;" f
-Formatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go /^type Formatter interface {$/;" t
-FullCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) FullCommand() string {$/;" f
-FuncMap Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^type FuncMap map[string]interface{}$/;" t
-Funcs Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Funcs(funcMap FuncMap) *Template {$/;" f
-GB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ GB = Gigabyte$/;" c
-GOLDFLAGS Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"$/;" m
-Generate Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t testdata) Generate(rand *rand.Rand, size int) reflect.Value {$/;" f
-Get Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Get(key []byte) []byte {$/;" f
-Get Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func (db *QuickDB) Get(keys [][]byte) []byte {$/;" f
-Get Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Get func(string, map[string]string)(*Response, error)$/;" v
-Get Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Get(url string, params map[string]string) (*Response, $/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (b *boolValue) Get() interface{} { return bool(*b) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *bytesValue) Get() interface{} { return units.Base2Bytes(*d) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *durationValue) Get() interface{} { return time.Duration(*d) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (f *float64Value) Get() interface{} { return float64(*f) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *int64Value) Get() interface{} { return int64(*i) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *intValue) Get() interface{} { return int(*i) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uint64Value) Get() interface{} { return uint64(*i) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uintValue) Get() interface{} { return uint(*i) }$/;" f
-Get Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringValue) Get() interface{} { return string(*s) }$/;" f
-GetLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func GetLevel() Level {$/;" f
-GetPackage caching/caching.go /^func GetPackage(code string) (*OcaPackageDetail, error) {$/;" f
-GetU Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) GetU() *U {$/;" f
-Getter Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type Getter interface {$/;" t
-GiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ GiB = Gibibyte$/;" c
-Gibibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Gibibyte = Mebibyte * 1024$/;" c
-Giga Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Giga = Mega * 1000$/;" c
-Gigabyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Gigabyte = Megabyte * 1000$/;" c
-GoString Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) GoString() string {$/;" f
-GoVersion Godeps/Godeps.json /^ "GoVersion": "go1.4",$/;" f
-HTMLEscape Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func HTMLEscape(w io.Writer, b []byte) {$/;" f
-HTMLEscapeString Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func HTMLEscapeString(s string) string {$/;" f
-HTMLEscaper Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func HTMLEscaper(args ...interface{}) string {$/;" f
-HTTPHeader Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func HTTPHeader(s kingpin.Settings) (target *http.Header) {$/;" f
-HTTPHeader Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go /^func HTTPHeader(s Settings) (target *http.Header) {$/;" f
-HTTPHeaderValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^type HTTPHeaderValue http.Header$/;" t
-HTTPHeaderValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go /^type HTTPHeaderValue http.Header$/;" t
-HasTrailingArgs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) HasTrailingArgs() bool {$/;" f
-Head Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Head func(string, map[string]string)(*Response, error)$/;" v
-Head Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Head(url string, params map[string]string) (*Response,$/;" f
-Hidden Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) Hidden() *CmdClause {$/;" f
-Hidden Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Hidden() *FlagClause {$/;" f
-Hook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go /^type Hook interface {$/;" t
-HttpClient Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^type HttpClient struct {$/;" t
-I Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type I interface {$/;" t
-ID Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) ID() int {$/;" f
-IP Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) IP() (target *net.IP) {$/;" f
-IPList Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) IPList() (target *[]net.IP) {$/;" f
-IPListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) IPListVar(target *[]net.IP) {$/;" f
-IPVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) IPVar(target *net.IP) {$/;" f
-IdentifierNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type IdentifierNode struct {$/;" t
-IfNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type IfNode struct {$/;" t
-IgnoreNoSync Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^const IgnoreNoSync = runtime.GOOS == "openbsd"$/;" c
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/Sirupsen\/logrus",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/alecthomas\/template",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/alecthomas\/units",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/boltdb\/bolt",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/ddliu\/go-httpclient",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/mitchellh\/go-homedir",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "gopkg.in\/alecthomas\/kingpin.v2",$/;" f
-ImportPath Godeps/Godeps.json /^ "ImportPath": "github.com\/eljuanchosf\/gocafier",$/;" f
-Info Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Info(args ...interface{}) {$/;" f
-Info Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Info(args ...interface{}) {$/;" f
-Info Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Info(args ...interface{}) {$/;" f
-Info Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Info() *Info {$/;" f
-Info Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^type Info struct {$/;" t
-InfoCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type InfoCommand struct {$/;" t
-InfoLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ InfoLevel$/;" c
-Infof Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Infof(format string, args ...interface{}) {$/;" f
-Infof Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Infof(format string, args ...interface{}) {$/;" f
-Infof Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Infof(format string, args ...interface{}) {$/;" f
-Infoln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Infoln(args ...interface{}) {$/;" f
-Infoln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Infoln(args ...interface{}) {$/;" f
-Infoln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Infoln(args ...interface{}) {$/;" f
-Int Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Int() (target *int) {$/;" f
-Int64 Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Int64() (target *int64) {$/;" f
-Int64List Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) Int64List() (target *[]int64) {$/;" f
-Int64ListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) Int64ListVar(target *[]int64) {$/;" f
-Int64Var Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Int64Var(target *int64) {$/;" f
-IntVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) IntVar(target *int) {$/;" f
-Interspersed Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Interspersed(interspersed bool) *Application {$/;" f
-IsBoolFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *FlagModel) IsBoolFlag() bool {$/;" f
-IsBoolFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (b *boolValue) IsBoolFlag() bool { return true }$/;" f
-IsCumulative Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (a *accumulator) IsCumulative() bool {$/;" f
-IsCumulative Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *enumsValue) IsCumulative() bool {$/;" f
-IsCumulative Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringMapValue) IsCumulative() bool {$/;" f
-IsEOF Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (t *Token) IsEOF() bool {$/;" f
-IsEmptyTree Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func IsEmptyTree(n Node) bool {$/;" f
-IsFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (t *Token) IsFlag() bool {$/;" f
-IsReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) IsReadOnly() bool {$/;" f
-IsRedirectError Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^func IsRedirectError(err error) bool {$/;" f
-IsTerminal Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go /^func IsTerminal() bool {$/;" f
-IsTerminal Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go /^func IsTerminal() bool {$/;" f
-IsTimeoutError Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^func IsTimeoutError(err error) bool {$/;" f
-JSEscape Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func JSEscape(w io.Writer, b []byte) {$/;" f
-JSEscapeString Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func JSEscapeString(s string) string {$/;" f
-JSEscaper Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func JSEscaper(args ...interface{}) string {$/;" f
-JSONFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go /^type JSONFormatter struct {$/;" t
-KB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ KB = Kilobyte$/;" c
-KiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ KiB = Kibibyte$/;" c
-Kibibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Kibibyte Base2Bytes = 1024$/;" c
-Kilo Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Kilo SI = 1000$/;" c
-Kilobyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Kilobyte MetricBytes = 1000$/;" c
-Last Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Last() (key []byte, value []byte) {$/;" f
-Len Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvs) Len() int { return len(x) }$/;" f
-Len Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (s nodes) Len() int { return len(s) }$/;" f
-Len Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pages) Len() int { return len(s) }$/;" f
-Len Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pgids) Len() int { return len(s) }$/;" f
-Len Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t revtestdata) Len() int { return len(t) }$/;" f
-Len Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t testdata) Len() int { return len(t) }$/;" f
-Less Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvFloats) Less(i, j int) bool { return x.rvs[i].Float() < x.rvs[j].Float() }$/;" f
-Less Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvInts) Less(i, j int) bool { return x.rvs[i].Int() < x.rvs[j].Int() }$/;" f
-Less Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvStrings) Less(i, j int) bool { return x.rvs[i].String() < x.rvs[j].String() }$/;" f
-Less Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvUints) Less(i, j int) bool { return x.rvs[i].Uint() < x.rvs[j].Uint() }$/;" f
-Less Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (s nodes) Less(i, j int) bool { return bytes.Compare(s[i].inodes[0].key, s[j].inodes[0].key) == -1 }$/;" f
-Less Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pages) Less(i, j int) bool { return s[i].id < s[j].id }$/;" f
-Less Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pgids) Less(i, j int) bool { return s[i] < s[j] }$/;" f
-Less Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t revtestdata) Less(i, j int) bool { return bytes.Compare(t[i].Key, t[j].Key) == 1 }$/;" f
-Less Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t testdata) Less(i, j int) bool { return bytes.Compare(t[i].Key, t[j].Key) == -1 }$/;" f
-Level Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^type Level uint8$/;" t
-LevelHooks Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go /^type LevelHooks map[Level][]Hook$/;" t
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *ErrorHook) Levels() []Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *ModifyHook) Levels() []Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func (hook *TestHook) Levels() []Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go /^func (hook *airbrakeHook) Levels() []logrus.Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^func (hook *bugsnagHook) Levels() []logrus.Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go /^func (hook *PapertrailHook) Levels() []logrus.Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^func (hook *SentryHook) Levels() []logrus.Level {$/;" f
-Levels Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go /^func (hook *SyslogHook) Levels() []logrus.Level {$/;" f
-ListNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type ListNode struct {$/;" t
-ListPackages caching/caching.go /^func ListPackages() {$/;" f
-LoadConfig settings/settings.go /^func LoadConfig(filename string) Config {$/;" f
-Log logging/logging.go /^func Log(message string, force bool, isError bool, err interface{}) {$/;" f
-LogAndAssertJSON Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func LogAndAssertJSON(t *testing.T, log func(*Logger), assertions func(fields Fields)) {$/;" f
-LogAndAssertText Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func LogAndAssertText(t *testing.T, log func(*Logger), assertions func(fields map[string]string)) {$/;" f
-LogError logging/logging.go /^func LogError(message string, errMsg interface{}) {$/;" f
-LogPackage logging/logging.go /^func LogPackage(packageNumber string, message string) {$/;" f
-LogStd logging/logging.go /^func LogStd(message string, force bool) {$/;" f
-Logger Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^type Logger struct {$/;" t
-LogstashFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go /^type LogstashFormatter struct {$/;" t
-LongHelpTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go /^var LongHelpTemplate = `{{define "FormatCommand"}}\\$/;" v
-Lookup Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Lookup(name string) *Template {$/;" f
-LsCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/modular/main.go /^type LsCommand struct {$/;" t
-MAdd Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) MAdd(a int, b []int) []int {$/;" f
-MB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ MB = Megabyte$/;" c
-Main Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type Main struct {$/;" t
-Main Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^type Main struct {$/;" t
-MakeUnitMap Godeps/_workspace/src/github.com/alecthomas/units/si.go /^func MakeUnitMap(suffix, shortSuffix string, scale int64) map[string]float64 {$/;" f
-ManPageTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go /^var ManPageTemplate = `{{define "FormatFlags"}}\\$/;" v
-Map Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^type Map map[interface{}]interface{}$/;" t
-MaxKeySize Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ MaxKeySize = 32768$/;" c
-MaxValueSize Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ MaxValueSize = 4294967295$/;" c
-Mebibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Mebibyte = Kibibyte * 1024$/;" c
-Mega Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Mega = Kilo * 1000$/;" c
-Megabyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Megabyte = Kilobyte * 1000$/;" c
-Method0 Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) Method0() string {$/;" f
-Method1 Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) Method1(a int) int {$/;" f
-Method2 Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) Method2(a uint16, b string) string {$/;" f
-Method3 Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) Method3(v interface{}) string {$/;" f
-MetricBytes Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^type MetricBytes SI$/;" t
-MiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ MiB = Mebibyte$/;" c
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (a *Application) Model() *ApplicationModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (a *ArgClause) Model() *ArgModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (a *argGroup) Model() *ArgGroupModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (c *CmdClause) Model() *CmdModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (c *cmdGroup) Model() *CmdGroupModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *FlagClause) Model() *FlagModel {$/;" f
-Model Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *flagGroup) Model() *FlagGroupModel {$/;" f
-ModifyHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^type ModifyHook struct {$/;" t
-Must Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func Must(t *Template, err error) *Template {$/;" f
-MustCheck Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) MustCheck() {$/;" f
-MustCreateBucket Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) MustCreateBucket(name []byte) {$/;" f
-MustOpen Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^func MustOpen(mode os.FileMode, options *bolt.Options) *DB {$/;" f
-MustParse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func MustParse(command string, err error) string {$/;" f
-MustUpdate Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) MustUpdate(fn func(tx *bolt.Tx) error) {$/;" f
-MustView Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) MustView(fn func(tx *bolt.Tx) error) {$/;" f
-MyError Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (t *T) MyError(error bool) (bool, error) {$/;" f
-Name Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Name() string {$/;" f
-New Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func New() *Logger {$/;" f
-New Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func New(name string, funcs ...map[string]interface{}) *Tree {$/;" f
-New Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) New(name string) *Template {$/;" f
-New Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func New(name string) *Template {$/;" f
-New Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func New(name, help string) *Application {$/;" f
-NewBugsnagHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go /^func NewBugsnagHook() (*bugsnagHook, error) {$/;" f
-NewEntry Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func NewEntry(logger *Logger) *Entry {$/;" f
-NewHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go /^func NewHook(endpoint, apiKey, env string) *airbrakeHook {$/;" f
-NewHttpClient Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func NewHttpClient() *HttpClient {$/;" f
-NewIdentifier Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func NewIdentifier(ident string) *IdentifierNode {$/;" f
-NewMain Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func NewMain() *Main {$/;" f
-NewMain Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^func NewMain() *Main {$/;" f
-NewPapertrailHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go /^func NewPapertrailHook(host string, port int, appName string) (*PapertrailHook, error) {$/;" f
-NewQuickDB Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func NewQuickDB() *QuickDB {$/;" f
-NewSentryHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^func NewSentryHook(DSN string, levels []logrus.Level) (*SentryHook, error) {$/;" f
-NewSyslogHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go /^func NewSyslogHook(network, raddr string, priority syslog.Priority, tag string) (*SyslogHook, error) {$/;" f
-NewTestDB Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func NewTestDB() *TestDB {$/;" f
-NewWithClientSentryHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^func NewWithClientSentryHook(client *raven.Client, levels []logrus.Level) (*SentryHook, error) {$/;" f
-NewWithTagsSentryHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^func NewWithTagsSentryHook(DSN string, tags map[string]string, levels []logrus.Level) (*SentryHook, error) {$/;" f
-Next Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Next() (key []byte, value []byte) {$/;" f
-Next Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) Next() *Token {$/;" f
-NextSequence Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) NextSequence() (uint64, error) {$/;" f
-NilNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type NilNode struct {$/;" t
-Node Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type Node interface {$/;" t
-NodeAction Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeAction \/\/ A non-control action such as a field evaluation.$/;" c
-NodeBool Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeBool \/\/ A boolean constant.$/;" c
-NodeChain Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeChain \/\/ A sequence of field accesses.$/;" c
-NodeCommand Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeCommand \/\/ An element of a pipeline.$/;" c
-NodeDot Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeDot \/\/ The cursor, dot.$/;" c
-NodeField Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeField \/\/ A field or method name.$/;" c
-NodeIdentifier Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeIdentifier \/\/ An identifier; always a function name.$/;" c
-NodeIf Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeIf \/\/ An if action.$/;" c
-NodeList Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeList \/\/ A list of Nodes.$/;" c
-NodeNil Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeNil \/\/ An untyped nil constant.$/;" c
-NodeNumber Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeNumber \/\/ A numerical constant.$/;" c
-NodePipe Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodePipe \/\/ A pipeline of commands.$/;" c
-NodeRange Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeRange \/\/ A range action.$/;" c
-NodeString Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeString \/\/ A string constant.$/;" c
-NodeTemplate Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeTemplate \/\/ A template invocation action.$/;" c
-NodeText Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeText NodeType = iota \/\/ Plain text.$/;" c
-NodeType Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type NodeType int$/;" t
-NodeVariable Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeVariable \/\/ A $ variable.$/;" c
-NodeWith Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ NodeWith \/\/ A with action.$/;" c
-NoticeError Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^type NoticeError struct {$/;" t
-NumberNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type NumberNode struct {$/;" t
-OPT_AUTOREFERER Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_AUTOREFERER = 58$/;" c
-OPT_CONNECTTIMEOUT Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_CONNECTTIMEOUT = 78$/;" c
-OPT_CONNECTTIMEOUT_MS Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_CONNECTTIMEOUT_MS = 156$/;" c
-OPT_COOKIEJAR Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_COOKIEJAR = 10082$/;" c
-OPT_FOLLOWLOCATION Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_FOLLOWLOCATION = 52$/;" c
-OPT_INTERFACE Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_INTERFACE = 10062$/;" c
-OPT_MAXREDIRS Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_MAXREDIRS = 68$/;" c
-OPT_PROXY Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_PROXY = 10004$/;" c
-OPT_PROXYTYPE Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_PROXYTYPE = 101$/;" c
-OPT_PROXY_FUNC Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_PROXY_FUNC = 100001$/;" c
-OPT_REDIRECT_POLICY Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_REDIRECT_POLICY = 100000$/;" c
-OPT_REFERER Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_REFERER = 10016$/;" c
-OPT_TIMEOUT Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_TIMEOUT = 13$/;" c
-OPT_TIMEOUT_MS Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_TIMEOUT_MS = 155$/;" c
-OPT_USERAGENT Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ OPT_USERAGENT = 10018$/;" c
-OcaPackageDetail caching/caching.go /^type OcaPackageDetail struct {$/;" t
-OnCommit Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) OnCommit(fn func()) {$/;" f
-Open Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func Open(path string, mode os.FileMode, options *Options) (*DB, error) {$/;" f
-OpenFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) OpenFile(flag int, perm os.FileMode) (target **os.File) {$/;" f
-OpenFileVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) OpenFileVar(target **os.File, flag int, perm os.FileMode) {$/;" f
-Option Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func Option(o map[string]interface{}) map[int]interface{} {$/;" f
-Options Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^type Options struct {$/;" t
-OverrideDefaultFromEnvar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) OverrideDefaultFromEnvar(envar string) *FlagClause {$/;" f
-PB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ PB = Petabyte$/;" c
-PROXY_HTTP Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ PROXY_HTTP = 0$/;" c
-PROXY_SOCKS4 Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ PROXY_SOCKS4 = 4$/;" c
-PROXY_SOCKS4A Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ PROXY_SOCKS4A = 6$/;" c
-PROXY_SOCKS5 Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ PROXY_SOCKS5 = 5$/;" c
-Page Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Page(id int) (*PageInfo, error) {$/;" f
-PageCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type PageCommand struct {$/;" t
-PageError Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type PageError struct {$/;" t
-PageHeaderSize Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^const PageHeaderSize = 16$/;" c
-PageInfo Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^type PageInfo struct {$/;" t
-PagesCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type PagesCommand struct {$/;" t
-Panic Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Panic(args ...interface{}) {$/;" f
-Panic Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Panic(args ...interface{}) {$/;" f
-Panic Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Panic(args ...interface{}) {$/;" f
-PanicLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ PanicLevel Level = iota$/;" c
-Panicf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Panicf(format string, args ...interface{}) {$/;" f
-Panicf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Panicf(format string, args ...interface{}) {$/;" f
-Panicf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Panicf(format string, args ...interface{}) {$/;" f
-Panicln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Panicln(args ...interface{}) {$/;" f
-Panicln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Panicln(args ...interface{}) {$/;" f
-Panicln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Panicln(args ...interface{}) {$/;" f
-PapertrailHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go /^type PapertrailHook struct {$/;" t
-Parse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) Parse(text, leftDelim, rightDelim string, treeSet map[string]*Tree, funcs ...map[string]interface{}) (tree *Tree, err error) {$/;" f
-Parse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func Parse(name, text, leftDelim, rightDelim string, funcs ...map[string]interface{}) (treeSet map[string]*Tree, err error) {$/;" f
-Parse Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Parse(text string) (*Template, error) {$/;" f
-Parse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Parse(args []string) (command string, err error) {$/;" f
-Parse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Parse() string {$/;" f
-ParseBase2Bytes Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^func ParseBase2Bytes(s string) (Base2Bytes, error) {$/;" f
-ParseContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) ParseContext(args []string) (*ParseContext, error) {$/;" f
-ParseContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^type ParseContext struct {$/;" t
-ParseElement Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^type ParseElement struct {$/;" t
-ParseFiles Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func (t *Template) ParseFiles(filenames ...string) (*Template, error) {$/;" f
-ParseFiles Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func ParseFiles(filenames ...string) (*Template, error) {$/;" f
-ParseFlags Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) ParseFlags(args []string) (*BenchOptions, error) {$/;" f
-ParseGlob Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func (t *Template) ParseGlob(pattern string) (*Template, error) {$/;" f
-ParseGlob Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func ParseGlob(pattern string) (*Template, error) {$/;" f
-ParseLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^func ParseLevel(lvl string) (Level, error) {$/;" f
-ParseMetricBytes Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^func ParseMetricBytes(s string) (MetricBytes, error) {$/;" f
-ParseStrictBytes Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^func ParseStrictBytes(s string) (int64, error) {$/;" f
-ParseUnit Godeps/_workspace/src/github.com/alecthomas/units/util.go /^func ParseUnit(s string, unitMap map[string]float64) (int64, error) {$/;" f
-Path Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Path() string {$/;" f
-Pebibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Pebibyte = Tebibyte * 1024$/;" c
-Peek Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) Peek() *Token {$/;" f
-Peta Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Peta = Tera * 1000$/;" c
-Petabyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Petabyte = Terabyte * 1000$/;" c
-PiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ PiB = Pebibyte$/;" c
-PipeNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type PipeNode struct {$/;" t
-PlaceHolder Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) PlaceHolder(placeholder string) *FlagClause {$/;" f
-Pos Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type Pos int$/;" t
-Position Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p Pos) Position() Pos {$/;" f
-Post Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var Post func(string, map[string]string)(*Response, error)$/;" v
-Post Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) Post(url string, params map[string]string) (*Response, $/;" f
-PostMultipart Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var PostMultipart func(string, map[string]string)(*Response, error)$/;" v
-PostMultipart Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) PostMultipart(url string, params map[string]string) ($/;" f
-PreAction Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) PreAction(action Action) *Application {$/;" f
-PreAction Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func (a *ArgClause) PreAction(action Action) *ArgClause {$/;" f
-PreAction Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) PreAction(action Action) *CmdClause {$/;" f
-PreAction Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) PreAction(action Action) *FlagClause {$/;" f
-Prev Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Prev() (key []byte, value []byte) {$/;" f
-Print Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Print(args ...interface{}) {$/;" f
-Print Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Print(args ...interface{}) {$/;" f
-Print Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Print(args ...interface{}) {$/;" f
-PrintBranch Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) PrintBranch(w io.Writer, buf []byte) error {$/;" f
-PrintFreelist Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) PrintFreelist(w io.Writer, buf []byte) error {$/;" f
-PrintLeaf Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) PrintLeaf(w io.Writer, buf []byte) error {$/;" f
-PrintMeta Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) PrintMeta(w io.Writer, buf []byte) error {$/;" f
-PrintPage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *DumpCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error {$/;" f
-PrintPage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) PrintPage(w io.Writer, r io.ReaderAt, pageID int, pageSize int) error {$/;" f
-PrintStats Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func (db *TestDB) PrintStats() {$/;" f
-Printf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Printf(format string, args ...interface{}) {$/;" f
-Printf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Printf(format string, args ...interface{}) {$/;" f
-Printf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Printf(format string, args ...interface{}) {$/;" f
-Println Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Println(args ...interface{}) {$/;" f
-Println Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Println(args ...interface{}) {$/;" f
-Println Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Println(args ...interface{}) {$/;" f
-Put Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Put(key []byte, value []byte) error {$/;" f
-Put Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func (db *QuickDB) Put(keys [][]byte, value []byte) {$/;" f
-QuickDB Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^type QuickDB struct {$/;" t
-Rand Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func (db *QuickDB) Rand() [][]byte {$/;" f
-RangeNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type RangeNode struct {$/;" t
-ReadAll Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *Response) ReadAll() ([]byte, error) {$/;" f
-ReadOpDuration Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (r *BenchResults) ReadOpDuration() time.Duration {$/;" f
-ReadOpsPerSecond Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (r *BenchResults) ReadOpsPerSecond() int {$/;" f
-ReadPage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func ReadPage(path string, pageID int) (*page, []byte, error) {$/;" f
-ReadPageSize Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func ReadPageSize(path string) (int, error) {$/;" f
-Reader Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Reader() (*bytes.Buffer, error) {$/;" f
-Repeated Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/genrepeated/main.go /^type Repeated struct {$/;" t
-RequestData ocaclient/ocaclient.go /^func RequestData(packageType string, packageNumber string) (response caching.OcaPackageDetail, err error) {$/;" f
-Required Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func (a *ArgClause) Required() *ArgClause {$/;" f
-Required Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Required() *FlagClause {$/;" f
-Response Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^type Response struct {$/;" t
-ResponseInfo Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^type ResponseInfo struct {$/;" t
-Rev Godeps/Godeps.json /^ "Rev": "639879d6110b1b0409410c7b737ef0bb18325038"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "6b4e7dc5e3143b85ea77909c72caf89416fc2915"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "84b968cb9f82d727044973f8255489bbe15e9948"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "90fef389f98027ca55594edd7dbd6e7f3926fdad"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "b867cc6ab45cece8143cfcc6fc9c77cf3f2c23c0"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "cbb50d2bdb3253c84ee7d5d91c944c0e11143f8c"$/;" f
-Rev Godeps/Godeps.json /^ "Rev": "d682a8f0cf139663a984ff12528da460ca963de9"$/;" f
-Rollback Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Rollback() error {$/;" f
-Root Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Root() pgid {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *CheckCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *DumpCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *InfoCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PagesCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *StatsCommand) Run(args ...string) error {$/;" f
-Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (m *Main) Run(args ...string) error {$/;" f
-SERVER Godeps/_workspace/src/github.com/ddliu/go-httpclient/example/main.go /^ SERVER = "https:\/\/github.com"$/;" c
-SI Godeps/_workspace/src/github.com/alecthomas/units/si.go /^type SI int64$/;" t
-Save caching/caching.go /^func (p *OcaPackageDetail) Save() error {$/;" f
-Seek Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) Seek(seek []byte) (key []byte, value []byte) {$/;" f
-SendNotification main.go /^func SendNotification(currentData caching.OcaPackageDetail) error {$/;" f
-SentryHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^type SentryHook struct {$/;" t
-ServeHTTP Godeps/_workspace/src/github.com/boltdb/bolt/batch_example_test.go /^func (c counter) ServeHTTP(rw http.ResponseWriter, req *http.Request) {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func (h HTTPHeaderValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go /^func (h *HTTPHeaderValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (a *accumulator) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (a *enumValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (b *boolValue) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *bytesValue) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *durationValue) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (e *fileStatValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (f *fileValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (f *float64Value) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *int64Value) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *intValue) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *ipValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *tcpAddrValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uint64Value) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uintValue) Set(s string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *enumsValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringMapValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringValue) Set(val string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (u *urlListValue) Set(value string) error {$/;" f
-Set Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (u *urlValue) Set(value string) error {$/;" f
-SetAppDb caching/caching.go /^func SetAppDb(db *bolt.DB) {$/;" f
-SetFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func SetFormatter(formatter Formatter) {$/;" f
-SetLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func SetLevel(level Level) {$/;" f
-SetOutput Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func SetOutput(out io.Writer) {$/;" f
-SetPos Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IdentifierNode) SetPos(pos Pos) *IdentifierNode {$/;" f
-SetTree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IdentifierNode) SetTree(t *Tree) *IdentifierNode {$/;" f
-SetValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) SetValue(value Value) {$/;" f
-Settings Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^type Settings interface {$/;" t
-SetupLogging logging/logging.go /^func SetupLogging(debug bool) {$/;" f
-Short Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) Short(name byte) *FlagClause {$/;" f
-Size Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Size() int64 {$/;" f
-StandardLogger Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func StandardLogger() *Logger {$/;" f
-Stats Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Stats() BucketStats {$/;" f
-Stats Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Stats() Stats {$/;" f
-Stats Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^type Stats struct {$/;" t
-Stats Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Stats() TxStats {$/;" f
-StatsCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type StatsCommand struct {$/;" t
-StdLogger Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^type StdLogger interface {$/;" t
-String Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) String() (string, error) {$/;" f
-String Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^func (level Level) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (v *V) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (i item) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^func (i itemType) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (a *ActionNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BoolNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BranchNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *ChainNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *CommandNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (d *DotNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *elseNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *endNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (f *FieldNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IdentifierNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (l *ListNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NilNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NumberNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p *PipeNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (s *StringNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TemplateNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TextNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (v *VariableNode) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^func (b Base2Bytes) String() string {$/;" f
-String Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^func (m MetricBytes) String() string {$/;" f
-String Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func (h HTTPHeaderValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go /^func (h *HTTPHeaderValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (a *ArgModel) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (c *CmdModel) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go /^func (f *FlagModel) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (t *Token) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (t TokenType) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) String() (target *string) {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (a *accumulator) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (a *enumValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (b *boolValue) String() string { return fmt.Sprintf("%v", *b) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *bytesValue) String() string { return (*units.Base2Bytes)(d).String() }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (d *durationValue) String() string { return (*time.Duration)(d).String() }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (e *fileStatValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (f *fileValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (f *float64Value) String() string { return fmt.Sprintf("%v", *f) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *int64Value) String() string { return fmt.Sprintf("%v", *i) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *intValue) String() string { return fmt.Sprintf("%v", *i) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *ipValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *tcpAddrValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uint64Value) String() string { return fmt.Sprintf("%v", *i) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (i *uintValue) String() string { return fmt.Sprintf("%v", *i) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *enumsValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringMapValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (s *stringValue) String() string { return fmt.Sprintf("%s", *s) }$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (u *urlListValue) String() string {$/;" f
-String Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func (u *urlValue) String() string {$/;" f
-StringMap Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) StringMap() (target *map[string]string) {$/;" f
-StringMapVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) StringMapVar(target *map[string]string) {$/;" f
-StringNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type StringNode struct {$/;" t
-StringVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) StringVar(target *string) {$/;" f
-Strings Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) Strings() (target *[]string) {$/;" f
-StringsVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) StringsVar(target *[]string) {$/;" f
-Sub Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (s *Stats) Sub(other *Stats) Stats {$/;" f
-Sub Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (s *TxStats) Sub(other *TxStats) TxStats {$/;" f
-Swap Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (x rvs) Swap(i, j int) { x[i], x[j] = x[j], x[i] }$/;" f
-Swap Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (s nodes) Swap(i, j int) { s[i], s[j] = s[j], s[i] }$/;" f
-Swap Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pages) Swap(i, j int) { s[i], s[j] = s[j], s[i] }$/;" f
-Swap Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (s pgids) Swap(i, j int) { s[i], s[j] = s[j], s[i] }$/;" f
-Swap Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t revtestdata) Swap(i, j int) { t[i], t[j] = t[j], t[i] }$/;" f
-Swap Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func (t testdata) Swap(i, j int) { t[i], t[j] = t[j], t[i] }$/;" f
-Sync Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Sync() error { return fdatasync(db) }$/;" f
-SyslogHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go /^type SyslogHook struct {$/;" t
-T Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type T struct {$/;" t
-TB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ TB = Terabyte$/;" c
-TCP Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) TCP() (target **net.TCPAddr) {$/;" f
-TCPList Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) TCPList() (target *[]*net.TCPAddr) {$/;" f
-TCPListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) TCPListVar(target *[]*net.TCPAddr) {$/;" f
-TCPVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) TCPVar(target **net.TCPAddr) {$/;" f
-TEST Godeps/_workspace/src/github.com/boltdb/bolt/Makefile /^TEST=.$/;" m
-TIMEOUT Godeps/_workspace/src/github.com/ddliu/go-httpclient/example/main.go /^ TIMEOUT = 30$/;" c
-Tebibyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Tebibyte = Gibibyte * 1024$/;" c
-Template Godeps/_workspace/src/github.com/alecthomas/template/template.go /^type Template struct {$/;" t
-TemplateNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type TemplateNode struct {$/;" t
-Templates Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) Templates() []*Template {$/;" f
-Tera Godeps/_workspace/src/github.com/alecthomas/units/si.go /^ Tera = Giga * 1000$/;" c
-Terabyte Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ Terabyte = Gigabyte * 1000$/;" c
-Terminate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Terminate(terminate func(int)) *Application {$/;" f
-Termios Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go /^type Termios syscall.Termios$/;" t
-Termios Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go /^type Termios syscall.Termios$/;" t
-TestAccumulatorStrings Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values_test.go /^func TestAccumulatorStrings(t *testing.T) {$/;" f
-TestAddParseTree Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestAddParseTree(t *testing.T) {$/;" f
-TestAddParseTreeToUnparsedTemplate Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestAddParseTreeToUnparsedTemplate(t *testing.T) {$/;" f
-TestArgMultipleRequired Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go /^func TestArgMultipleRequired(t *testing.T) {$/;" f
-TestArgRemainder Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go /^func TestArgRemainder(t *testing.T) {$/;" f
-TestArgRemainderErrorsWhenNotLast Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go /^func TestArgRemainderErrorsWhenNotLast(t *testing.T) {$/;" f
-TestArgsLooksLikeFlagsWithConsumeRemainder Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestArgsLooksLikeFlagsWithConsumeRemainder(t *testing.T) {$/;" f
-TestArgsMultipleRequiredThenNonRequired Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestArgsMultipleRequiredThenNonRequired(t *testing.T) {$/;" f
-TestArgsRequiredAfterNonRequiredErrors Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestArgsRequiredAfterNonRequiredErrors(t *testing.T) {$/;" f
-TestBase2BytesString Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go /^func TestBase2BytesString(t *testing.T) {$/;" f
-TestBool Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestBool(t *testing.T) {$/;" f
-TestBucket_Bucket_IncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Bucket_IncompatibleValue(t *testing.T) {$/;" f
-TestBucket_CreateBucket_IncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_CreateBucket_IncompatibleValue(t *testing.T) {$/;" f
-TestBucket_Delete Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete(t *testing.T) {$/;" f
-TestBucket_DeleteBucket_IncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_DeleteBucket_IncompatibleValue(t *testing.T) {$/;" f
-TestBucket_DeleteBucket_Large Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_DeleteBucket_Large(t *testing.T) {$/;" f
-TestBucket_DeleteBucket_Nested Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_DeleteBucket_Nested(t *testing.T) {$/;" f
-TestBucket_DeleteBucket_Nested2 Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_DeleteBucket_Nested2(t *testing.T) {$/;" f
-TestBucket_Delete_Bucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_Bucket(t *testing.T) {$/;" f
-TestBucket_Delete_Closed Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_Closed(t *testing.T) {$/;" f
-TestBucket_Delete_FreelistOverflow Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_FreelistOverflow(t *testing.T) {$/;" f
-TestBucket_Delete_Large Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_Large(t *testing.T) {$/;" f
-TestBucket_Delete_Quick Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_Quick(t *testing.T) {$/;" f
-TestBucket_Delete_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Delete_ReadOnly(t *testing.T) {$/;" f
-TestBucket_ForEach Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_ForEach(t *testing.T) {$/;" f
-TestBucket_ForEach_Closed Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_ForEach_Closed(t *testing.T) {$/;" f
-TestBucket_ForEach_ShortCircuit Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_ForEach_ShortCircuit(t *testing.T) {$/;" f
-TestBucket_Get_FromNode Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Get_FromNode(t *testing.T) {$/;" f
-TestBucket_Get_IncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Get_IncompatibleValue(t *testing.T) {$/;" f
-TestBucket_Get_NonExistent Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Get_NonExistent(t *testing.T) {$/;" f
-TestBucket_Nested Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Nested(t *testing.T) {$/;" f
-TestBucket_NextSequence Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_NextSequence(t *testing.T) {$/;" f
-TestBucket_NextSequence_Closed Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_NextSequence_Closed(t *testing.T) {$/;" f
-TestBucket_NextSequence_Persist Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_NextSequence_Persist(t *testing.T) {$/;" f
-TestBucket_NextSequence_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_NextSequence_ReadOnly(t *testing.T) {$/;" f
-TestBucket_Put Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put(t *testing.T) {$/;" f
-TestBucket_Put_Closed Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_Closed(t *testing.T) {$/;" f
-TestBucket_Put_EmptyKey Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_EmptyKey(t *testing.T) {$/;" f
-TestBucket_Put_IncompatibleValue Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_IncompatibleValue(t *testing.T) {$/;" f
-TestBucket_Put_KeyTooLarge Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_KeyTooLarge(t *testing.T) {$/;" f
-TestBucket_Put_Large Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_Large(t *testing.T) {$/;" f
-TestBucket_Put_Multiple Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_Multiple(t *testing.T) {$/;" f
-TestBucket_Put_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_ReadOnly(t *testing.T) {$/;" f
-TestBucket_Put_Repeat Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_Repeat(t *testing.T) {$/;" f
-TestBucket_Put_Single Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_Single(t *testing.T) {$/;" f
-TestBucket_Put_ValueTooLarge Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Put_ValueTooLarge(t *testing.T) {$/;" f
-TestBucket_Stats Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats(t *testing.T) {$/;" f
-TestBucket_Stats_EmptyBucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats_EmptyBucket(t *testing.T) {$/;" f
-TestBucket_Stats_Large Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats_Large(t *testing.T) {$/;" f
-TestBucket_Stats_Nested Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats_Nested(t *testing.T) {$/;" f
-TestBucket_Stats_RandomFill Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats_RandomFill(t *testing.T) {$/;" f
-TestBucket_Stats_Small Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestBucket_Stats_Small(t *testing.T) {$/;" f
-TestCanFireMultipleHooks Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func TestCanFireMultipleHooks(t *testing.T) {$/;" f
-TestClone Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestClone(t *testing.T) {$/;" f
-TestCombinedShortFlagArg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestCombinedShortFlagArg(t *testing.T) {$/;" f
-TestCombinedShortFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestCombinedShortFlags(t *testing.T) {$/;" f
-TestCommandParseDoesNotFailRequired Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestCommandParseDoesNotFailRequired(t *testing.T) {$/;" f
-TestCommandParseDoesNotResetFlagsToDefault Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestCommandParseDoesNotResetFlagsToDefault(t *testing.T) {$/;" f
-TestCommander Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestCommander(t *testing.T) {$/;" f
-TestComparison Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestComparison(t *testing.T) {$/;" f
-TestConcurrent Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestConcurrent(t *testing.T) {$/;" f
-TestConvertLevelToString Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestConvertLevelToString(t *testing.T) {$/;" f
-TestCookie Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestCookie(t *testing.T) {$/;" f
-TestCursor_Bucket Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Bucket(t *testing.T) {$/;" f
-TestCursor_Delete Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Delete(t *testing.T) {$/;" f
-TestCursor_EmptyBucket Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_EmptyBucket(t *testing.T) {$/;" f
-TestCursor_EmptyBucketReverse Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_EmptyBucketReverse(t *testing.T) {$/;" f
-TestCursor_Iterate_Leaf Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Iterate_Leaf(t *testing.T) {$/;" f
-TestCursor_LeafRootReverse Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_LeafRootReverse(t *testing.T) {$/;" f
-TestCursor_QuickCheck Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_QuickCheck(t *testing.T) {$/;" f
-TestCursor_QuickCheck_BucketsOnly Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_QuickCheck_BucketsOnly(t *testing.T) {$/;" f
-TestCursor_QuickCheck_BucketsOnly_Reverse Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_QuickCheck_BucketsOnly_Reverse(t *testing.T) {$/;" f
-TestCursor_QuickCheck_Reverse Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_QuickCheck_Reverse(t *testing.T) {$/;" f
-TestCursor_Restart Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Restart(t *testing.T) {$/;" f
-TestCursor_Seek Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Seek(t *testing.T) {$/;" f
-TestCursor_Seek_Large Godeps/_workspace/src/github.com/boltdb/bolt/cursor_test.go /^func TestCursor_Seek_Large(t *testing.T) {$/;" f
-TestDB Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^type TestDB struct {$/;" t
-TestDBStats_Sub Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDBStats_Sub(t *testing.T) {$/;" f
-TestDB_Batch Godeps/_workspace/src/github.com/boltdb/bolt/batch_test.go /^func TestDB_Batch(t *testing.T) {$/;" f
-TestDB_BatchFull Godeps/_workspace/src/github.com/boltdb/bolt/batch_test.go /^func TestDB_BatchFull(t *testing.T) {$/;" f
-TestDB_BatchTime Godeps/_workspace/src/github.com/boltdb/bolt/batch_test.go /^func TestDB_BatchTime(t *testing.T) {$/;" f
-TestDB_Batch_Panic Godeps/_workspace/src/github.com/boltdb/bolt/batch_test.go /^func TestDB_Batch_Panic(t *testing.T) {$/;" f
-TestDB_BeginRW Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_BeginRW(t *testing.T) {$/;" f
-TestDB_BeginRW_Closed Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_BeginRW_Closed(t *testing.T) {$/;" f
-TestDB_Begin_DatabaseNotOpen Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Begin_DatabaseNotOpen(t *testing.T) {$/;" f
-TestDB_Close_PendingTx_RO Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Close_PendingTx_RO(t *testing.T) { testDB_Close_PendingTx(t, false) }$/;" f
-TestDB_Close_PendingTx_RW Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Close_PendingTx_RW(t *testing.T) { testDB_Close_PendingTx(t, true) }$/;" f
-TestDB_Commit_WriteFail Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Commit_WriteFail(t *testing.T) {$/;" f
-TestDB_Consistency Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Consistency(t *testing.T) {$/;" f
-TestDB_Open_FileError Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Open_FileError(t *testing.T) {$/;" f
-TestDB_Open_FileTooSmall Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Open_FileTooSmall(t *testing.T) {$/;" f
-TestDB_Open_MetaInitWriteError Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Open_MetaInitWriteError(t *testing.T) {$/;" f
-TestDB_Put_VeryLarge Godeps/_workspace/src/github.com/boltdb/bolt/bucket_test.go /^func TestDB_Put_VeryLarge(t *testing.T) {$/;" f
-TestDB_Stats Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Stats(t *testing.T) {$/;" f
-TestDB_Update Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Update(t *testing.T) {$/;" f
-TestDB_Update_Closed Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Update_Closed(t *testing.T) {$/;" f
-TestDB_Update_ManualCommit Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Update_ManualCommit(t *testing.T) {$/;" f
-TestDB_Update_ManualRollback Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Update_ManualRollback(t *testing.T) {$/;" f
-TestDB_Update_Panic Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_Update_Panic(t *testing.T) {$/;" f
-TestDB_View_Error Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_View_Error(t *testing.T) {$/;" f
-TestDB_View_ManualCommit Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_View_ManualCommit(t *testing.T) {$/;" f
-TestDB_View_ManualRollback Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_View_ManualRollback(t *testing.T) {$/;" f
-TestDB_View_Panic Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestDB_View_Panic(t *testing.T) {$/;" f
-TestDefaultClient Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client_test.go /^func TestDefaultClient(t *testing.T) {$/;" f
-TestDefaultFieldsAreNotPrefixed Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestDefaultFieldsAreNotPrefixed(t *testing.T) {$/;" f
-TestDelims Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestDelims(t *testing.T) {$/;" f
-TestDelims Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^func TestDelims(t *testing.T) {$/;" f
-TestDir Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go /^func TestDir(t *testing.T) {$/;" f
-TestDispatchCallbackIsCalled Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestDispatchCallbackIsCalled(t *testing.T) {$/;" f
-TestDoubleLoggingDoesntPrefixPreviousFields Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestDoubleLoggingDoesntPrefixPreviousFields(t *testing.T) {$/;" f
-TestEmptyShortFlagIsAnError Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestEmptyShortFlagIsAnError(t *testing.T) {$/;" f
-TestEntryPanicf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go /^func TestEntryPanicf(t *testing.T) {$/;" f
-TestEntryPanicln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go /^func TestEntryPanicln(t *testing.T) {$/;" f
-TestEnum Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values_test.go /^func TestEnum(t *testing.T) {$/;" f
-TestEnumVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values_test.go /^func TestEnumVar(t *testing.T) {$/;" f
-TestErrorContextWithTreeCopy Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestErrorContextWithTreeCopy(t *testing.T) {$/;" f
-TestErrorHookShouldFireOnError Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func TestErrorHookShouldFireOnError(t *testing.T) {$/;" f
-TestErrorHookShouldntFireOnInfo Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func TestErrorHookShouldntFireOnInfo(t *testing.T) {$/;" f
-TestErrorNotLost Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestErrorNotLost(t *testing.T) {$/;" f
-TestErrorNotLostOnFieldNotNamedError Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestErrorNotLostOnFieldNotNamedError(t *testing.T) {$/;" f
-TestErrors Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestErrors(t *testing.T) {$/;" f
-TestExecError Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestExecError(t *testing.T) {$/;" f
-TestExecute Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestExecute(t *testing.T) {$/;" f
-TestExecuteError Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestExecuteError(t *testing.T) {$/;" f
-TestExecuteOnNewTemplate Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestExecuteOnNewTemplate(t *testing.T) {$/;" f
-TestExpand Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go /^func TestExpand(t *testing.T) {$/;" f
-TestFieldClashWithLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestFieldClashWithLevel(t *testing.T) {$/;" f
-TestFieldClashWithMsg Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestFieldClashWithMsg(t *testing.T) {$/;" f
-TestFieldClashWithTime Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestFieldClashWithTime(t *testing.T) {$/;" f
-TestFinalForPrintf Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestFinalForPrintf(t *testing.T) {$/;" f
-TestFormatTwoColumns Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage_test.go /^func TestFormatTwoColumns(t *testing.T) {$/;" f
-TestFormatTwoColumnsWide Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage_test.go /^func TestFormatTwoColumnsWide(t *testing.T) {$/;" f
-TestFreelist_allocate Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_allocate(t *testing.T) {$/;" f
-TestFreelist_free Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_free(t *testing.T) {$/;" f
-TestFreelist_free_overflow Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_free_overflow(t *testing.T) {$/;" f
-TestFreelist_read Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_read(t *testing.T) {$/;" f
-TestFreelist_release Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_release(t *testing.T) {$/;" f
-TestFreelist_write Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func TestFreelist_write(t *testing.T) {$/;" f
-TestGetSetLevelRace Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestGetSetLevelRace(t *testing.T) {$/;" f
-TestGzip Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestGzip(t *testing.T) {$/;" f
-TestHead Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestHead(t *testing.T) {$/;" f
-TestHeaders Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestHeaders(t *testing.T) {$/;" f
-TestHiddenCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage_test.go /^func TestHiddenCommand(t *testing.T) {$/;" f
-TestHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^type TestHook struct {$/;" t
-TestHookCanModifyEntry Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func TestHookCanModifyEntry(t *testing.T) {$/;" f
-TestHookFires Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go /^func TestHookFires(t *testing.T) {$/;" f
-TestInfo Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfo(t *testing.T) {$/;" f
-TestInfoCommand_Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^func TestInfoCommand_Run(t *testing.T) {$/;" f
-TestInfoShouldAddSpacesBetweenTwoNonStrings Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfoShouldAddSpacesBetweenTwoNonStrings(t *testing.T) {$/;" f
-TestInfoShouldNotAddSpacesBetweenStringAndNonstring Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfoShouldNotAddSpacesBetweenStringAndNonstring(t *testing.T) {$/;" f
-TestInfoShouldNotAddSpacesBetweenStrings Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfoShouldNotAddSpacesBetweenStrings(t *testing.T) {$/;" f
-TestInfolnShouldAddSpacesBetweenStringAndNonstring Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfolnShouldAddSpacesBetweenStringAndNonstring(t *testing.T) {$/;" f
-TestInfolnShouldAddSpacesBetweenStrings Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfolnShouldAddSpacesBetweenStrings(t *testing.T) {$/;" f
-TestInfolnShouldAddSpacesBetweenTwoNonStrings Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestInfolnShouldAddSpacesBetweenTwoNonStrings(t *testing.T) {$/;" f
-TestInterspersedFalse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestInterspersedFalse(t *testing.T) {$/;" f
-TestInterspersedTrue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestInterspersedTrue(t *testing.T) {$/;" f
-TestInvalidArgsDefaultCanBeOverridden Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go /^func TestInvalidArgsDefaultCanBeOverridden(t *testing.T) {$/;" f
-TestInvalidDefaultArgValueErrors Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestInvalidDefaultArgValueErrors(t *testing.T) {$/;" f
-TestInvalidDefaultFlagValueErrors Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestInvalidDefaultFlagValueErrors(t *testing.T) {$/;" f
-TestInvalidFlagDefaultCanBeOverridden Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestInvalidFlagDefaultCanBeOverridden(t *testing.T) {$/;" f
-TestIsEmpty Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestIsEmpty(t *testing.T) {$/;" f
-TestIssue10 Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestIssue10(t *testing.T) {$/;" f
-TestJSEscaping Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestJSEscaping(t *testing.T) {$/;" f
-TestJSONEntryEndsWithNewline Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go /^func TestJSONEntryEndsWithNewline(t *testing.T) {$/;" f
-TestLex Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^func TestLex(t *testing.T) {$/;" f
-TestLocalhostAddAndPrint Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go /^func TestLocalhostAddAndPrint(t *testing.T) {$/;" f
-TestLogEntryMessageReceived Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^func TestLogEntryMessageReceived(t *testing.T) {$/;" f
-TestLogEntryWithErrorReceived Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^func TestLogEntryWithErrorReceived(t *testing.T) {$/;" f
-TestLogEntryWithNonErrorTypeNotReceived Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^func TestLogEntryWithNonErrorTypeNotReceived(t *testing.T) {$/;" f
-TestLogstashFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go /^func TestLogstashFormatter(t *testing.T) {$/;" f
-TestMessageForExecuteEmpty Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestMessageForExecuteEmpty(t *testing.T) {$/;" f
-TestMetricBytesString Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go /^func TestMetricBytesString(t *testing.T) {$/;" f
-TestMultiExecute Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestMultiExecute(t *testing.T) {$/;" f
-TestMultiParse Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestMultiParse(t *testing.T) {$/;" f
-TestNegateNonBool Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestNegateNonBool(t *testing.T) {$/;" f
-TestNestedCommandWithArgAndMergedFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommandWithArgAndMergedFlags(t *testing.T) {$/;" f
-TestNestedCommandWithDuplicateFlagErrors Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommandWithDuplicateFlagErrors(t *testing.T) {$/;" f
-TestNestedCommandWithMergedFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommandWithMergedFlags(t *testing.T) {$/;" f
-TestNestedCommands Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommands(t *testing.T) {$/;" f
-TestNestedCommandsWithArgs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommandsWithArgs(t *testing.T) {$/;" f
-TestNestedCommandsWithFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func TestNestedCommandsWithFlags(t *testing.T) {$/;" f
-TestNoBool Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestNoBool(t *testing.T) {$/;" f
-TestNode_put Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_put(t *testing.T) {$/;" f
-TestNode_read_LeafPage Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_read_LeafPage(t *testing.T) {$/;" f
-TestNode_split Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_split(t *testing.T) {$/;" f
-TestNode_split_MinKeys Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_split_MinKeys(t *testing.T) {$/;" f
-TestNode_split_SinglePage Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_split_SinglePage(t *testing.T) {$/;" f
-TestNode_write_LeafPage Godeps/_workspace/src/github.com/boltdb/bolt/node_test.go /^func TestNode_write_LeafPage(t *testing.T) {$/;" f
-TestNoticeReceived Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go /^func TestNoticeReceived(t *testing.T) {$/;" f
-TestNumberParse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestNumberParse(t *testing.T) {$/;" f
-TestOpen Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen(t *testing.T) {$/;" f
-TestOpen_BadPath Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_BadPath(t *testing.T) {$/;" f
-TestOpen_Check Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_Check(t *testing.T) {$/;" f
-TestOpen_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_ReadOnly(t *testing.T) {$/;" f
-TestOpen_Size Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_Size(t *testing.T) {$/;" f
-TestOpen_Size_Large Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_Size_Large(t *testing.T) {$/;" f
-TestOpen_Timeout Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_Timeout(t *testing.T) {$/;" f
-TestOpen_Wait Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func TestOpen_Wait(t *testing.T) {$/;" f
-TestPage_dump Godeps/_workspace/src/github.com/boltdb/bolt/page_test.go /^func TestPage_dump(t *testing.T) {$/;" f
-TestPage_typ Godeps/_workspace/src/github.com/boltdb/bolt/page_test.go /^func TestPage_typ(t *testing.T) {$/;" f
-TestParse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestParse(t *testing.T) {$/;" f
-TestParseBase2Bytes Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go /^func TestParseBase2Bytes(t *testing.T) {$/;" f
-TestParseCopy Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func TestParseCopy(t *testing.T) {$/;" f
-TestParseExistingFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseExistingFile(t *testing.T) {$/;" f
-TestParseFiles Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestParseFiles(t *testing.T) {$/;" f
-TestParseFilesWithData Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestParseFilesWithData(t *testing.T) {$/;" f
-TestParseGlob Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestParseGlob(t *testing.T) {$/;" f
-TestParseGlobWithData Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestParseGlobWithData(t *testing.T) {$/;" f
-TestParseIP Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseIP(t *testing.T) {$/;" f
-TestParseLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestParseLevel(t *testing.T) {$/;" f
-TestParseMetricBytes Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go /^func TestParseMetricBytes(t *testing.T) {$/;" f
-TestParseStringMap Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseStringMap(t *testing.T) {$/;" f
-TestParseStrings Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseStrings(t *testing.T) {$/;" f
-TestParseTCPAddr Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseTCPAddr(t *testing.T) {$/;" f
-TestParseTCPAddrList Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseTCPAddrList(t *testing.T) {$/;" f
-TestParseURL Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestParseURL(t *testing.T) {$/;" f
-TestParserExpandFromFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser_test.go /^func TestParserExpandFromFile(t *testing.T) {$/;" f
-TestPgids_merge Godeps/_workspace/src/github.com/boltdb/bolt/page_test.go /^func TestPgids_merge(t *testing.T) {$/;" f
-TestPgids_merge_quick Godeps/_workspace/src/github.com/boltdb/bolt/page_test.go /^func TestPgids_merge_quick(t *testing.T) {$/;" f
-TestPos Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^func TestPos(t *testing.T) {$/;" f
-TestPrint Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestPrint(t *testing.T) {$/;" f
-TestQuoting Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go /^func TestQuoting(t *testing.T) {$/;" f
-TestRedefinition Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^func TestRedefinition(t *testing.T) {$/;" f
-TestRedirect Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestRedirect(t *testing.T) {$/;" f
-TestRequest Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestRequest(t *testing.T) {$/;" f
-TestRequiredFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestRequiredFlag(t *testing.T) {$/;" f
-TestRequiredFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestRequiredFlags(t *testing.T) {$/;" f
-TestRequiredWithEnvar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestRequiredWithEnvar(t *testing.T) {$/;" f
-TestRequiredWithEnvarMissingErrors Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestRequiredWithEnvarMissingErrors(t *testing.T) {$/;" f
-TestResponse Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestResponse(t *testing.T) {$/;" f
-TestSelectedCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestSelectedCommand(t *testing.T) {$/;" f
-TestSentryHandler Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^func TestSentryHandler(t *testing.T) {$/;" f
-TestSentryTags Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^func TestSentryTags(t *testing.T) {$/;" f
-TestSentryWithClient Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^func TestSentryWithClient(t *testing.T) {$/;" f
-TestShortFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go /^func TestShortFlag(t *testing.T) {$/;" f
-TestSimulate_10000op_1000p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10000op_1000p(t *testing.T) { testSimulate(t, 10000, 1000) }$/;" f
-TestSimulate_10000op_100p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10000op_100p(t *testing.T) { testSimulate(t, 10000, 100) }$/;" f
-TestSimulate_10000op_10p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10000op_10p(t *testing.T) { testSimulate(t, 10000, 10) }$/;" f
-TestSimulate_10000op_1p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10000op_1p(t *testing.T) { testSimulate(t, 10000, 1) }$/;" f
-TestSimulate_1000op_100p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_1000op_100p(t *testing.T) { testSimulate(t, 1000, 100) }$/;" f
-TestSimulate_1000op_10p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_1000op_10p(t *testing.T) { testSimulate(t, 1000, 10) }$/;" f
-TestSimulate_1000op_1p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_1000op_1p(t *testing.T) { testSimulate(t, 1000, 1) }$/;" f
-TestSimulate_100op_100p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_100op_100p(t *testing.T) { testSimulate(t, 100, 100) }$/;" f
-TestSimulate_100op_10p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_100op_10p(t *testing.T) { testSimulate(t, 100, 10) }$/;" f
-TestSimulate_100op_1p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_100op_1p(t *testing.T) { testSimulate(t, 100, 1) }$/;" f
-TestSimulate_10op_10p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10op_10p(t *testing.T) { testSimulate(t, 10, 10) }$/;" f
-TestSimulate_10op_1p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_10op_1p(t *testing.T) { testSimulate(t, 10, 1) }$/;" f
-TestSimulate_1op_1p Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 100, 1) }$/;" f
-TestSpecialFields Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^func TestSpecialFields(t *testing.T) {$/;" f
-TestStatsCommand_Run Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main_test.go /^func TestStatsCommand_Run(t *testing.T) {$/;" f
-TestStrings Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values_test.go /^func TestStrings(t *testing.T) {$/;" f
-TestStringsStringer Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go /^func TestStringsStringer(t *testing.T) {$/;" f
-TestSubCommandRequired Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestSubCommandRequired(t *testing.T) {$/;" f
-TestTimeout Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func TestTimeout(t *testing.T) {$/;" f
-TestTimestampFormat Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go /^func TestTimestampFormat(t *testing.T) {$/;" f
-TestTooManyArgs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestTooManyArgs(t *testing.T) {$/;" f
-TestTooManyArgsAfterCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestTooManyArgsAfterCommand(t *testing.T) {$/;" f
-TestTopLevelArgCantBeUsedWithCommands Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestTopLevelArgCantBeUsedWithCommands(t *testing.T) {$/;" f
-TestTopLevelArgWorks Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go /^func TestTopLevelArgWorks(t *testing.T) {$/;" f
-TestTree Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func TestTree(t *testing.T) {$/;" f
-TestTx_Bucket Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Bucket(t *testing.T) {$/;" f
-TestTx_Commit_Closed Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Commit_Closed(t *testing.T) {$/;" f
-TestTx_Commit_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Commit_ReadOnly(t *testing.T) {$/;" f
-TestTx_CopyFile Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CopyFile(t *testing.T) {$/;" f
-TestTx_CopyFile_Error_Meta Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CopyFile_Error_Meta(t *testing.T) {$/;" f
-TestTx_CopyFile_Error_Normal Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CopyFile_Error_Normal(t *testing.T) {$/;" f
-TestTx_CreateBucket Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucket(t *testing.T) {$/;" f
-TestTx_CreateBucketIfNotExists Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucketIfNotExists(t *testing.T) {$/;" f
-TestTx_CreateBucket_Closed Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucket_Closed(t *testing.T) {$/;" f
-TestTx_CreateBucket_Exists Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucket_Exists(t *testing.T) {$/;" f
-TestTx_CreateBucket_NameRequired Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucket_NameRequired(t *testing.T) {$/;" f
-TestTx_CreateBucket_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_CreateBucket_ReadOnly(t *testing.T) {$/;" f
-TestTx_Cursor Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Cursor(t *testing.T) {$/;" f
-TestTx_DeleteBucket Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_DeleteBucket(t *testing.T) {$/;" f
-TestTx_DeleteBucket_Closed Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_DeleteBucket_Closed(t *testing.T) {$/;" f
-TestTx_DeleteBucket_NotFound Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_DeleteBucket_NotFound(t *testing.T) {$/;" f
-TestTx_DeleteBucket_ReadOnly Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_DeleteBucket_ReadOnly(t *testing.T) {$/;" f
-TestTx_ForEach_NoError Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_ForEach_NoError(t *testing.T) {$/;" f
-TestTx_ForEach_WithError Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_ForEach_WithError(t *testing.T) {$/;" f
-TestTx_Get_Missing Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Get_Missing(t *testing.T) {$/;" f
-TestTx_OnCommit Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_OnCommit(t *testing.T) {$/;" f
-TestTx_OnCommit_Rollback Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_OnCommit_Rollback(t *testing.T) {$/;" f
-TestTx_Rollback_Closed Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func TestTx_Rollback_Closed(t *testing.T) {$/;" f
-TestUserSuppliedFieldDoesNotOverwriteDefaults Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestUserSuppliedFieldDoesNotOverwriteDefaults(t *testing.T) {$/;" f
-TestUserSuppliedLevelFieldHasPrefix Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestUserSuppliedLevelFieldHasPrefix(t *testing.T) {$/;" f
-TestUserSuppliedMsgFieldHasPrefix Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestUserSuppliedMsgFieldHasPrefix(t *testing.T) {$/;" f
-TestUserSuppliedTimeFieldHasPrefix Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestUserSuppliedTimeFieldHasPrefix(t *testing.T) {$/;" f
-TestWarn Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestWarn(t *testing.T) {$/;" f
-TestWithFieldsShouldAllowAssignments Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go /^func TestWithFieldsShouldAllowAssignments(t *testing.T) {$/;" f
-TestWritingToUDP Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go /^func TestWritingToUDP(t *testing.T) {$/;" f
-TextFormatter Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^type TextFormatter struct {$/;" t
-TextNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type TextNode struct {$/;" t
-TiB Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ TiB = Tebibyte$/;" c
-ToString Godeps/_workspace/src/github.com/alecthomas/units/util.go /^func ToString(n int64, scale int64, suffix, baseSuffix string) string {$/;" f
-ToString Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *Response) ToString() (string, error) {$/;" f
-Token Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^type Token struct {$/;" t
-TokenArg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenArg$/;" c
-TokenEOL Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenEOL$/;" c
-TokenEOLMarker Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenEOLMarker = Token{-1, TokenEOL, ""}$/;" v
-TokenError Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenError$/;" c
-TokenLong Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenLong$/;" c
-TokenShort Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^ TokenShort TokenType = iota$/;" c
-TokenType Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^type TokenType int$/;" t
-Tree Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type Tree struct {$/;" t
-Tree Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^type Tree struct {$/;" t
-TrueFalse Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func (u *U) TrueFalse(b bool) string {$/;" f
-Tx Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Tx() *Tx {$/;" f
-Tx Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^type Tx struct {$/;" t
-TxStats Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^type TxStats struct {$/;" t
-Type Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (d *DotNode) Type() NodeType {$/;" f
-Type Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *elseNode) Type() NodeType {$/;" f
-Type Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NilNode) Type() NodeType {$/;" f
-Type Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t NodeType) Type() NodeType {$/;" f
-Type Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (p *page) Type() string {$/;" f
-U Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type U struct {$/;" t
-URL Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) URL() (target **url.URL) {$/;" f
-URLList Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) URLList() (target *[]*url.URL) {$/;" f
-URLListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) URLListVar(target *[]*url.URL) {$/;" f
-URLQueryEscaper Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func URLQueryEscaper(args ...interface{}) string {$/;" f
-URLVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) URLVar(target **url.URL) {$/;" f
-USERAGENT Godeps/_workspace/src/github.com/ddliu/go-httpclient/example/main.go /^ USERAGENT = "my awsome httpclient"$/;" c
-USERAGENT Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ USERAGENT = "go-httpclient v" + VERSION$/;" c
-Uint64 Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Uint64() (target *uint64) {$/;" f
-Uint64List Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) Uint64List() (target *[]uint64) {$/;" f
-Uint64ListVar Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go /^func (p *parserMixin) Uint64ListVar(target *[]uint64) {$/;" f
-Uint64Var Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^func (p *parserMixin) Uint64Var(target *uint64) {$/;" f
-Update Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) Update(fn func(*Tx) error) error {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *CheckCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *DumpCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *InfoCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PageCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *PagesCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *StatsCommand) Usage() string {$/;" f
-Usage Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (m *Main) Usage() string {$/;" f
-Usage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Usage() {$/;" f
-Usage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^func (a *Application) Usage(args []string) {$/;" f
-UsageForContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^func (a *Application) UsageForContext(context *ParseContext) error {$/;" f
-UsageForContextWithTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^func (a *Application) UsageForContextWithTemplate(context *ParseContext, indent int, tmpl string) error {$/;" f
-UsageTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) UsageTemplate(template string) *Application {$/;" f
-UsageTemplate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func UsageTemplate(template string) *Application {$/;" f
-V Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type V struct {$/;" t
-VERSION Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^ VERSION = "0.5.0"$/;" c
-Validate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Validate(validator ApplicationValidator) *Application {$/;" f
-Validate Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *CmdClause) Validate(validator CmdClauseValidator) *CmdClause {$/;" f
-Value Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type Value interface {$/;" t
-VariableNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type VariableNode struct {$/;" t
-Version Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Version(version string) *Application {$/;" f
-Version Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go /^func Version(version string) *Application {$/;" f
-View Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) View(fn func(*Tx) error) error {$/;" f
-W Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^type W struct {$/;" t
-Warn Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warn(args ...interface{}) {$/;" f
-Warn Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warn(args ...interface{}) {$/;" f
-Warn Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warn(args ...interface{}) {$/;" f
-WarnLevel Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^ WarnLevel$/;" c
-Warnf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warnf(format string, args ...interface{}) {$/;" f
-Warnf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warnf(format string, args ...interface{}) {$/;" f
-Warnf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warnf(format string, args ...interface{}) {$/;" f
-Warning Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warning(args ...interface{}) {$/;" f
-Warning Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warning(args ...interface{}) {$/;" f
-Warning Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warning(args ...interface{}) {$/;" f
-Warningf Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warningf(format string, args ...interface{}) {$/;" f
-Warningf Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warningf(format string, args ...interface{}) {$/;" f
-Warningf Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warningf(format string, args ...interface{}) {$/;" f
-Warningln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warningln(args ...interface{}) {$/;" f
-Warningln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warningln(args ...interface{}) {$/;" f
-Warningln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warningln(args ...interface{}) {$/;" f
-Warnln Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) Warnln(args ...interface{}) {$/;" f
-Warnln Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func Warnln(args ...interface{}) {$/;" f
-Warnln Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) Warnln(args ...interface{}) {$/;" f
-WithCookie Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var WithCookie func(...*http.Cookie) *HttpClient$/;" v
-WithCookie Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) WithCookie(cookies ...*http.Cookie) *HttpClient {$/;" f
-WithField Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) WithField(key string, value interface{}) *Entry {$/;" f
-WithField Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func WithField(key string, value interface{}) *Entry {$/;" f
-WithField Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) WithField(key string, value interface{}) *Entry {$/;" f
-WithFields Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) WithFields(fields Fields) *Entry {$/;" f
-WithFields Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^func WithFields(fields Fields) *Entry {$/;" f
-WithFields Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go /^func (logger *Logger) WithFields(fields Fields) *Entry {$/;" f
-WithHeader Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var WithHeader func(string, string) *HttpClient$/;" v
-WithHeader Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) WithHeader(k string, v string) *HttpClient {$/;" f
-WithHeaders Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var WithHeaders func(map[string]string) *HttpClient$/;" v
-WithHeaders Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) WithHeaders(m map[string]string) *HttpClient {$/;" f
-WithNode Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^type WithNode struct {$/;" t
-WithOption Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var WithOption func(int, interface{}) *HttpClient$/;" v
-WithOption Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) WithOption(k int, v interface{}) *HttpClient {$/;" f
-WithOptions Godeps/_workspace/src/github.com/ddliu/go-httpclient/default_client.go /^var WithOptions func(Map) *HttpClient$/;" v
-WithOptions Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) WithOptions(m Map) *HttpClient {$/;" f
-WithTestDSN Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^func WithTestDSN(t *testing.T, tf func(string, <-chan *raven.Packet)) {$/;" f
-Writable Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) Writable() bool {$/;" f
-Writable Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) Writable() bool {$/;" f
-Write Godeps/_workspace/src/github.com/boltdb/bolt/tx_test.go /^func (f *failWriter) Write(p []byte) (n int, err error) {$/;" f
-WriteOpDuration Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (r *BenchResults) WriteOpDuration() time.Duration {$/;" f
-WriteOpsPerSecond Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (r *BenchResults) WriteOpsPerSecond() int {$/;" f
-WriteTo Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) {$/;" f
-Writer Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go /^func (logger *Logger) Writer() *io.PipeWriter {$/;" f
-Writer Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) Writer(w io.Writer) *Application {$/;" f
-_ Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go /^var _ StdLogger = &log.Logger{}$/;" v
-_ Godeps/_workspace/src/github.com/ddliu/go-httpclient/error.go /^ _ = iota$/;" c
-_TestCurrentUA Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func _TestCurrentUA(ch chan bool, t *testing.T, c *HttpClient, ua string) {$/;" f
-_TestProxy Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient_test.go /^func _TestProxy(t *testing.T) {$/;" f
-_assert Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func _assert(condition bool, msg string, v ...interface{}) {$/;" f
-_forEachPageNode Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) _forEachPageNode(pgid pgid, depth int, fn func(*page, *node, int)) {$/;" f
-accept Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) accept(valid string) bool {$/;" f
-acceptRun Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) acceptRun(valid string) {$/;" f
-accumulator Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type accumulator struct {$/;" t
-action Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) action() (n Node) {$/;" f
-add Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func add(args ...int) int {$/;" f
-add Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) add(treeSet map[string]*Tree) {$/;" f
-add Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (s *Stats) add(other *Stats) {$/;" f
-add Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (s *TxStats) add(other *TxStats) {$/;" f
-addCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func (c *cmdGroup) addCommand(name, help string) *CmdClause {$/;" f
-addFormFile Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func addFormFile(writer *multipart.Writer, name, path string) error{$/;" f
-addFuncs Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func addFuncs(out, in FuncMap) {$/;" f
-addParams Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func addParams(url_ string, params map[string]string) string {$/;" f
-addValueFuncs Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func addValueFuncs(out map[string]reflect.Value, in FuncMap) {$/;" f
-airbrake Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go /^package airbrake$/;" p
-airbrake Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^package airbrake$/;" p
-airbrakeHook Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go /^type airbrakeHook struct {$/;" t
-all Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) all() []pgid {$/;" f
-allocate Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) allocate(count int) (*page, error) {$/;" f
-allocate Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) allocate(n int) pgid {$/;" f
-allocate Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) allocate(count int) (*page, error) {$/;" f
-and Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func and(arg0 interface{}, args ...interface{}) interface{} {$/;" f
-app Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ app = kingpin.New("chat", "A command-line chat application.")$/;" v
-appdb caching/caching.go /^var appdb *bolt.DB$/;" v
-append Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *CommandNode) append(arg Node) {$/;" f
-append Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (l *ListNode) append(n Node) {$/;" f
-append Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p *PipeNode) append(command *CommandNode) {$/;" f
-appendKeyValue Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^func (f *TextFormatter) appendKeyValue(b *bytes.Buffer, key string, value interface{}) {$/;" f
-apply Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func apply(method string, url string) error {$/;" f
-applyActions Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) applyActions(context *ParseContext) error {$/;" f
-applyPOST Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func applyPOST() error {$/;" f
-applyPreActions Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) applyPreActions(context *ParseContext) error {$/;" f
-applyRequest Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^func applyRequest(req *http.Request) error {$/;" f
-applyValidators Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) applyValidators(context *ParseContext) (err error) {$/;" f
-argGroup Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^type argGroup struct {$/;" t
-assert Godeps/_workspace/src/github.com/boltdb/bolt/bolt_test.go /^func assert(tb testing.TB, condition bool, msg string, v ...interface{}) {$/;" f
-associate Godeps/_workspace/src/github.com/alecthomas/template/template.go /^func (t *Template) associate(new *Template, tree *parse.Tree) (bool, error) {$/;" f
-at Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) at(node parse.Node) {$/;" f
-atTerminator Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) atTerminator() bool {$/;" f
-atois Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func atois(strs []string) ([]int, error) {$/;" f
-backup Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) backup() {$/;" f
-backup Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) backup() {$/;" f
-backup2 Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) backup2(t1 item) {$/;" f
-backup3 Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) backup3(t2, t1 item) { \/\/ Reverse order: we're pushing back.$/;" f
-baseTimestamp Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^ baseTimestamp time.Time$/;" v
-basicKind Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func basicKind(v reflect.Value) (kind, error) {$/;" f
-batch Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^type batch struct {$/;" t
-beginRWTx Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) beginRWTx() (*Tx, error) {$/;" f
-beginTx Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) beginTx() (*Tx, error) {$/;" f
-benchBucketName Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^var benchBucketName = []byte("bench")$/;" v
-benchmark_FreelistRelease Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func benchmark_FreelistRelease(b *testing.B, size int) {$/;" f
-bigInt Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^ bigInt = fmt.Sprintf("0x%x", int(1<> 1)$/;" c
-maxMapSize Godeps/_workspace/src/github.com/boltdb/bolt/bolt_386.go /^const maxMapSize = 0x7FFFFFFF \/\/ 2GB$/;" c
-maxMapSize Godeps/_workspace/src/github.com/boltdb/bolt/bolt_amd64.go /^const maxMapSize = 0xFFFFFFFFFFFF \/\/ 256TB$/;" c
-maxMapSize Godeps/_workspace/src/github.com/boltdb/bolt/bolt_arm.go /^const maxMapSize = 0x7FFFFFFF \/\/ 2GB$/;" c
-maxMmapStep Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^const maxMmapStep = 1 << 30 \/\/ 1GB$/;" c
-maxUint Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ maxUint = ^uint(0)$/;" c
-maybeHelp Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) maybeHelp(context *ParseContext) {$/;" f
-memprofile Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^var cpuprofile, memprofile, blockprofile *os.File$/;" v
-merge Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (a pgids) merge(b pgids) pgids {$/;" f
-merge Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *flagGroup) merge(o *flagGroup) {$/;" f
-mergeArgs Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) mergeArgs(args *argGroup) {$/;" f
-mergeFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) mergeFlags(flags *flagGroup) {$/;" f
-mergeHeaders Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func mergeHeaders(headers ...map[string]string) map[string]string {$/;" f
-mergeOptions Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func mergeOptions(options ...map[int]interface{}) map[int]interface{} {$/;" f
-message Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^ message = "error message"$/;" c
-meta Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type meta struct {$/;" t
-meta Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) meta() *meta {$/;" f
-meta Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^type meta struct {$/;" t
-meta Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (p *page) meta() *meta {$/;" f
-metaPageFlag Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^ metaPageFlag = 0x04$/;" c
-metaPageFlag Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^ metaPageFlag = 0x04$/;" c
-metricBytesUnitMap Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ metricBytesUnitMap = MakeUnitMap("B", "B", 1000)$/;" v
-minFillPercent Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ minFillPercent = 0.1$/;" c
-minInt Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ minInt = -maxInt - 1$/;" c
-minKeys Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) minKeys() int {$/;" f
-minKeysPerPage Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^const minKeysPerPage = 2$/;" c
-minUint Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^ minUint = 0$/;" c
-miniTS Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^func miniTS() int {$/;" f
-mmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_unix.go /^func mmap(db *DB, sz int) error {$/;" f
-mmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_unix_solaris.go /^func mmap(db *DB, sz int) error {$/;" f
-mmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_windows.go /^func mmap(db *DB, sz int) error {$/;" f
-mmap Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) mmap(minsz int) error {$/;" f
-mmapSize Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) mmapSize(size int) (int, error) {$/;" f
-msAsync Godeps/_workspace/src/github.com/boltdb/bolt/bolt_openbsd.go /^ msAsync = 1 << iota \/\/ perform asynchronous writes$/;" c
-msInvalidate Godeps/_workspace/src/github.com/boltdb/bolt/bolt_openbsd.go /^ msInvalidate \/\/ invalidate cached data$/;" c
-msSync Godeps/_workspace/src/github.com/boltdb/bolt/bolt_openbsd.go /^ msSync \/\/ perform synchronous writes$/;" c
-msync Godeps/_workspace/src/github.com/boltdb/bolt/bolt_openbsd.go /^func msync(db *DB) error {$/;" f
-multiExecTests Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^var multiExecTests = []execTest{$/;" v
-multiParseTest Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^type multiParseTest struct {$/;" t
-multiParseTests Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^var multiParseTests = []multiParseTest{$/;" v
-multiText1 Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^const multiText1 = `$/;" c
-multiText2 Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^const multiText2 = `$/;" c
-munmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_unix.go /^func munmap(db *DB) error {$/;" f
-munmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_unix_solaris.go /^func munmap(db *DB) error {$/;" f
-munmap Godeps/_workspace/src/github.com/boltdb/bolt/bolt_windows.go /^func munmap(db *DB) error {$/;" f
-munmap Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) munmap() error {$/;" f
-mustContainKeys Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func mustContainKeys(b *bolt.Bucket, m map[string]string) {$/;" f
-myError Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^var myError = errors.New("my error")$/;" v
-ne Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func ne(arg1, arg2 interface{}) (bool, error) {$/;" f
-needsQuoting Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^func needsQuoting(text string) bool {$/;" f
-needsValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *FlagClause) needsValue() bool {$/;" f
-newAccumulator Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newAccumulator(slice interface{}, element func(value interface{}) Value) *accumulator {$/;" f
-newAction Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newAction(pos Pos, line int, pipe *PipeNode) *ActionNode {$/;" f
-newArg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func newArg(name, help string) *ArgClause {$/;" f
-newArgGroup Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go /^func newArgGroup() *argGroup {$/;" f
-newBenchCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newBenchCommand(m *Main) *BenchCommand {$/;" f
-newBool Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newBool(pos Pos, true bool) *BoolNode {$/;" f
-newBoolValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newBoolValue(p *bool) *boolValue {$/;" f
-newBucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func newBucket(tx *Tx) Bucket {$/;" f
-newBytesValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newBytesValue(p *units.Base2Bytes) *bytesValue {$/;" f
-newChain Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newChain(pos Pos, node Node) *ChainNode {$/;" f
-newCheckCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newCheckCommand(m *Main) *CheckCommand {$/;" f
-newCmdGroup Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func newCmdGroup(app *Application) *cmdGroup {$/;" f
-newCommand Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newCommand(pos Pos) *CommandNode {$/;" f
-newCommand Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go /^func newCommand(app *Application, name, help string) *CmdClause {$/;" f
-newDot Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newDot(pos Pos) *DotNode {$/;" f
-newDumpCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newDumpCommand(m *Main) *DumpCommand {$/;" f
-newDurationValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newDurationValue(p *time.Duration) *durationValue {$/;" f
-newElse Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newElse(pos Pos, line int) *elseNode {$/;" f
-newEnd Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newEnd(pos Pos) *endNode {$/;" f
-newEnumFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newEnumFlag(target *string, options ...string) *enumValue {$/;" f
-newEnumsFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newEnumsFlag(target *[]string, options ...string) *enumsValue {$/;" f
-newExistingDirValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newExistingDirValue(target *string) *fileStatValue {$/;" f
-newExistingFileOrDirValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newExistingFileOrDirValue(target *string) *fileStatValue {$/;" f
-newExistingFileValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newExistingFileValue(target *string) *fileStatValue {$/;" f
-newField Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newField(pos Pos, ident string) *FieldNode {$/;" f
-newFileStatValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newFileStatValue(p *string, predicate func(os.FileInfo) error) *fileStatValue {$/;" f
-newFileValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newFileValue(p **os.File, flag int, perm os.FileMode) *fileValue {$/;" f
-newFlag Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func newFlag(name, help string) *FlagClause {$/;" f
-newFlagGroup Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func newFlagGroup() *flagGroup {$/;" f
-newFloat64Value Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newFloat64Value(p *float64) *float64Value {$/;" f
-newFreelist Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func newFreelist() *freelist {$/;" f
-newIPValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newIPValue(p *net.IP) *ipValue {$/;" f
-newIf Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newIf(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *IfNode {$/;" f
-newInfoCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newInfoCommand(m *Main) *InfoCommand {$/;" f
-newInt Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func newInt(n int) *int {$/;" f
-newInt64Value Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newInt64Value(p *int64) *int64Value {$/;" f
-newIntSlice Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func newIntSlice(n ...int) *[]int {$/;" f
-newIntValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newIntValue(p *int) *intValue {$/;" f
-newList Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newList(pos Pos) *ListNode {$/;" f
-newNil Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newNil(pos Pos) *NilNode {$/;" f
-newNumber Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newNumber(pos Pos, text string, typ itemType) (*NumberNode, error) {$/;" f
-newPageCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newPageCommand(m *Main) *PageCommand {$/;" f
-newPagesCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newPagesCommand(m *Main) *PagesCommand {$/;" f
-newPipeline Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newPipeline(pos Pos, line int, decl []*VariableNode) *PipeNode {$/;" f
-newRange Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newRange(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *RangeNode {$/;" f
-newStatsCommand Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func newStatsCommand(m *Main) *StatsCommand {$/;" f
-newString Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func newString(s string) *string {$/;" f
-newString Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newString(pos Pos, orig, text string) *StringNode {$/;" f
-newStringMapValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newStringMapValue(p *map[string]string) *stringMapValue {$/;" f
-newStringValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newStringValue(p *string) *stringValue {$/;" f
-newTCPAddrValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newTCPAddrValue(p **net.TCPAddr) *tcpAddrValue {$/;" f
-newTemplate Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newTemplate(pos Pos, line int, name string, pipe *PipeNode) *TemplateNode {$/;" f
-newText Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newText(pos Pos, text string) *TextNode {$/;" f
-newURLListValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newURLListValue(p *[]*url.URL) *urlListValue {$/;" f
-newURLValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newURLValue(p **url.URL) *urlValue {$/;" f
-newUint64Value Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^func newUint64Value(p *uint64) *uint64Value {$/;" f
-newVariable Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newVariable(pos Pos, ident string) *VariableNode {$/;" f
-newWith Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *Tree) newWith(pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) *WithNode {$/;" f
-next Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) next() rune {$/;" f
-next Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) next() item {$/;" f
-next Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) next() (key []byte, value []byte, flags uint32) {$/;" f
-next Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) next() {$/;" f
-nextArg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) nextArg() *ArgClause {$/;" f
-nextItem Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) nextItem() item {$/;" f
-nextNonSpace Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) nextNonSpace() (token item) {$/;" f
-nextSibling Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) nextSibling() *node {$/;" f
-noError Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^ noError = true$/;" c
-noError Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^ noError = true$/;" c
-nocolor Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^ nocolor = 0$/;" c
-node Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) node(pgid pgid, parent *node) *node {$/;" f
-node Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) node() *node {$/;" f
-node Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^type node struct {$/;" t
-nodeElse Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ nodeElse \/\/ An else action. Not added to tree.$/;" c
-nodeEnd Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^ nodeEnd \/\/ An end action. Not added to tree.$/;" c
-nodes Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^type nodes []*node$/;" t
-not Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func not(arg interface{}) (truth bool) {$/;" f
-notAFunction Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) notAFunction(args []parse.Node, final reflect.Value) {$/;" f
-notice Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^type notice struct {$/;" t
-notice Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go /^type notice struct {$/;" t
-noticeError Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^ noticeError = make(chan NoticeError, 1)$/;" v
-nsearch Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) nsearch(key []byte) {$/;" f
-numChildren Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) numChildren() int {$/;" f
-numberTest Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^type numberTest struct {$/;" t
-numberTests Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^var numberTests = []numberTest{$/;" v
-ocaBaseURL ocaclient/ocaclient.go /^ ocaBaseURL = "http:\/\/www.oca.com.ar"$/;" c
-ocaclient ocaclient/ocaclient.go /^package ocaclient$/;" p
-odirect Godeps/_workspace/src/github.com/boltdb/bolt/bolt_linux.go /^var odirect = syscall.O_DIRECT$/;" v
-odirect Godeps/_workspace/src/github.com/boltdb/bolt/bolt_openbsd.go /^var odirect int$/;" v
-odirect Godeps/_workspace/src/github.com/boltdb/bolt/bolt_windows.go /^var odirect int$/;" v
-odirect Godeps/_workspace/src/github.com/boltdb/bolt/boltsync_unix.go /^var odirect int$/;" v
-ok Godeps/_workspace/src/github.com/boltdb/bolt/bolt_test.go /^func ok(tb testing.TB, err error) {$/;" f
-oldBytesUnitMap Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^ oldBytesUnitMap = MakeUnitMap("B", "B", 1024)$/;" v
-oneArg Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func oneArg(a string) string {$/;" f
-open caching/caching.go /^var open bool$/;" v
-openBucket Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) openBucket(value []byte) *Bucket {$/;" f
-operand Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) operand() Node {$/;" f
-or Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func or(arg0 interface{}, args ...interface{}) interface{} {$/;" f
-page Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type page struct {$/;" t
-page Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) page(id pgid) *page {$/;" f
-page Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^type page struct {$/;" t
-page Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) page(id pgid) *page {$/;" f
-pageElementSize Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) pageElementSize() int {$/;" f
-pageHeaderSize Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^const pageHeaderSize = int(unsafe.Offsetof(((*page)(nil)).ptr))$/;" c
-pageInBuffer Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) pageInBuffer(b []byte, id pgid) *page {$/;" f
-pageNode Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) pageNode(id pgid) (*page, *node) {$/;" f
-pages Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^type pages []*page$/;" t
-panicked Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^type panicked struct {$/;" t
-paramsToString Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func paramsToString(params map[string]string) string {$/;" f
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^package parse$/;" p
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^package parse$/;" p
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^package parse$/;" p
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) parse(treeSet map[string]*Tree) (next Node) {$/;" f
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^package parse$/;" p
-parse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^package parse$/;" p
-parse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *flagGroup) parse(context *ParseContext) error {$/;" f
-parse Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func parse(context *ParseContext, app *Application) (selected []string, err error) {$/;" f
-parseAndExecute Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go /^func parseAndExecute(app *Application, context *ParseContext) (string, error) {$/;" f
-parseControl Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) parseControl(allowElseIf bool, context string) (pos Pos, line int, pipe *PipeNode, list, elseList *ListNode) {$/;" f
-parseDefinition Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) parseDefinition(treeSet map[string]*Tree) {$/;" f
-parseFiles Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func parseFiles(t *Template, filenames ...string) (*Template, error) {$/;" f
-parseGlob Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^func parseGlob(t *Template, pattern string) (*Template, error) {$/;" f
-parseMap Godeps/_workspace/src/github.com/ddliu/go-httpclient/util.go /^func parseMap(m Map) (map[int]interface{}, map[string]string) {$/;" f
-parseTest Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^type parseTest struct {$/;" t
-parseTests Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^var parseTests = []parseTest{$/;" v
-parserMixin Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go /^type parserMixin struct {$/;" t
-patchEnv Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go /^func patchEnv(key, value string) func() {$/;" f
-peek Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) peek() rune {$/;" f
-peek Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) peek() item {$/;" f
-peekNonSpace Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) peekNonSpace() (token item) {$/;" f
-pending_count Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) pending_count() int {$/;" f
-pgid Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type pgid uint64$/;" t
-pgid Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^type pgid uint64$/;" t
-pgids Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^type pgids []pgid$/;" t
-pipeline Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) pipeline(context string) (pipe *PipeNode) {$/;" f
-pop Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) pop(mark int) {$/;" f
-pop Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) pop() *Token {$/;" f
-popVars Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) popVars(n int) {$/;" f
-post Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ post = app.Command("post", "Post a message to a channel.")$/;" v
-post Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^ post = kingpin.Command("post", "POST a resource.")$/;" v
-postBinaryFile Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^ postBinaryFile = post.Flag("data-binary", "File with binary data to POST.").File()$/;" v
-postChannel Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ postChannel = post.Arg("channel", "Channel to post to.").Required().String()$/;" v
-postData Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^ postData = post.Flag("data", "Key-value data to POST").Short('d').PlaceHolder("KEY:VALUE").StringMap()$/;" v
-postImage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ postImage = post.Flag("image", "Image to post.").File()$/;" v
-postText Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ postText = post.Arg("text", "Text to post.").Strings()$/;" v
-postURL Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^ postURL = post.Arg("url", "URL to POST to.").Required().URL()$/;" v
-preIndent Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^ preIndent = " "$/;" v
-prefixFieldClashes Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go /^func prefixFieldClashes(data Fields) {$/;" f
-prepareJar Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func prepareJar(options map[int]interface{}) (http.CookieJar, error) {$/;" f
-prepareRedirect Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func prepareRedirect(options map[int]interface{}) (func(req *http.Request, via []*http.Request) error, error) {$/;" f
-prepareRequest Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func prepareRequest(method string, url_ string, headers map[string]string, $/;" f
-prepareTransport Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func prepareTransport(options map[int]interface{}) (http.RoundTripper, error) {$/;" f
-prevSibling Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) prevSibling() *node {$/;" f
-printColored Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, keys []string, timestampFormat string) {$/;" f
-printValue Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) printValue(n parse.Node, v reflect.Value) {$/;" f
-printableValue Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func printableValue(v reflect.Value) (interface{}, bool) {$/;" f
-printstack Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func printstack() {$/;" f
-procGetConsoleMode Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go /^ procGetConsoleMode = kernel32.NewProc("GetConsoleMode")$/;" v
-push Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) push(name string, value reflect.Value) {$/;" f
-push Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func (p *ParseContext) push(token *Token) *Token {$/;" f
-put Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) put(oldKey, newKey, value []byte, pgid pgid, flags uint32) {$/;" f
-qconfig Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func qconfig() *quick.Config {$/;" f
-qcount Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int$/;" v
-qmaxitems Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int$/;" v
-qmaxksize Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int$/;" v
-qmaxvsize Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int$/;" v
-qseed Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^var qcount, qseed, qmaxitems, qmaxksize, qmaxvsize int$/;" v
-rand Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func (db *QuickDB) rand(m map[string]interface{}, keys *[][]byte) {$/;" f
-randByteSlice Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^func randByteSlice(rand *rand.Rand, minSize, maxSize int) []byte {$/;" f
-randKey Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func randKey() []byte {$/;" f
-randKeys Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func randKeys() [][]byte {$/;" f
-randValue Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func randValue() []byte {$/;" f
-randomPgids Godeps/_workspace/src/github.com/boltdb/bolt/freelist_test.go /^func randomPgids(n int) []pgid {$/;" f
-rangeControl Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) rangeControl() Node {$/;" f
-raw Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ raw = "`" + `abc\\n\\t\\" ` + "`"$/;" v
-read Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) read(p *page) {$/;" f
-read Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) read(p *page) {$/;" f
-rebalance Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) rebalance() {$/;" f
-rebalance Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) rebalance() {$/;" f
-recover Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) recover(errp *error) {$/;" f
-red Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^ red = 31$/;" c
-register Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ register = app.Command("register", "Register a new user.")$/;" v
-registerName Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ registerName = register.Arg("name", "Name of user.").Required().String()$/;" v
-registerNick Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ registerNick = register.Arg("nick", "Nickname for user.").Required().String()$/;" v
-reindex Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) reindex() {$/;" f
-release Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) release(txid txid) {$/;" f
-reload Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) reload(p *page) {$/;" f
-remainderArg Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type remainderArg interface {$/;" t
-removeChild Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) removeChild(target *node) {$/;" f
-removeTx Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (db *DB) removeTx(tx *Tx) {$/;" f
-reset Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^func (this *HttpClient) reset() {$/;" f
-revtestdata Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^type revtestdata []testdataitem$/;" t
-rightComment Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^ rightComment = "*\/"$/;" c
-rightDelim Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^ rightDelim = "}}"$/;" c
-rollback Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) rollback(txid txid) {$/;" f
-rollback Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) rollback() {$/;" f
-root Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) root() *node {$/;" f
-run Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) run() {$/;" f
-run Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^func (b *batch) run() {$/;" f
-run Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/modular/main.go /^func (l *LsCommand) run(c *kingpin.ParseContext) error {$/;" f
-runReads Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runReads(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runReadsSequential Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runReadsSequential(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runReadsSequentialNested Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runReadsSequentialNested(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWrites Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWrites(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWritesNestedWithSource Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesNestedWithSource(db *bolt.DB, options *BenchOptions, results *BenchResults, keySource func() uint32) error {$/;" f
-runWritesRandom Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesRandom(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWritesRandomNested Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesRandomNested(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWritesSequential Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesSequential(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWritesSequentialNested Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesSequentialNested(db *bolt.DB, options *BenchOptions, results *BenchResults) error {$/;" f
-runWritesWithSource Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) runWritesWithSource(db *bolt.DB, options *BenchOptions, results *BenchResults, keySource func() uint32) error {$/;" f
-rvFloats Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type rvFloats struct{ rvs }$/;" t
-rvInts Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type rvInts struct{ rvs }$/;" t
-rvStrings Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type rvStrings struct{ rvs }$/;" t
-rvUints Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type rvUints struct{ rvs }$/;" t
-rvs Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type rvs []reflect.Value$/;" t
-safelyCall Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^func safelyCall(fn func(*Tx) error, tx *Tx) (err error) {$/;" f
-scanNumber Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^func (l *lexer) scanNumber() bool {$/;" f
-search Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) search(key []byte, pgid pgid) {$/;" f
-searchNode Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) searchNode(key []byte, n *node) {$/;" f
-searchPage Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) searchPage(key []byte, p *page) {$/;" f
-seek Godeps/_workspace/src/github.com/boltdb/bolt/cursor.go /^func (c *Cursor) seek(seek []byte) (key []byte, value []byte, flags uint32) {$/;" f
-serverIP Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go /^ serverIP = app.Flag("server", "Server address.").Default("127.0.0.1").IP()$/;" v
-server_name Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go /^ server_name = "testserver.internal"$/;" c
-setDefaults Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) setDefaults(context *ParseContext) error {$/;" f
-setValues Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) setValues(context *ParseContext) (selected []string, err error) {$/;" f
-setVar Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) setVar(n int, value reflect.Value) {$/;" f
-settings settings/settings.go /^package settings$/;" p
-severityMap Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go /^ severityMap = map[logrus.Level]raven.Severity{$/;" v
-siUnits Godeps/_workspace/src/github.com/alecthomas/units/util.go /^ siUnits = []string{"", "K", "M", "G", "T", "P", "E"}$/;" v
-simplifyComplex Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NumberNode) simplifyComplex() {$/;" f
-simulateGetHandler Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func simulateGetHandler(tx *bolt.Tx, qdb *QuickDB) {$/;" f
-simulateHandler Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^type simulateHandler func(tx *bolt.Tx, qdb *QuickDB)$/;" t
-simulatePutHandler Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func simulatePutHandler(tx *bolt.Tx, qdb *QuickDB) {$/;" f
-size Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) size() int {$/;" f
-size Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) size() int {$/;" f
-sizeLessThan Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) sizeLessThan(v int) bool {$/;" f
-smallFields Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go /^var smallFields = Fields{$/;" v
-smtpPassword main.go /^ smtpPassword = kingpin.Flag("smtp-pass", "Sets the SMTP password").Required().OverrideDefaultFromEnvar("GOCAFIER_SMTP_PASSWORD").String()$/;" v
-smtpUser main.go /^ smtpUser = kingpin.Flag("smtp-user", "Sets the SMTP username").Required().OverrideDefaultFromEnvar("GOCAFIER_SMTP_USER").String()$/;" v
-sortKeys Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func sortKeys(v []reflect.Value) []reflect.Value {$/;" f
-spill Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) spill() error {$/;" f
-spill Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) spill() error {$/;" f
-split Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) split(pageSize int) []*node {$/;" f
-splitIndex Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) splitIndex(threshold int) (index, sz int) {$/;" f
-splitTwo Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) splitTwo(pageSize int) (*node, *node) {$/;" f
-sprintlnn Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go /^func (entry *Entry) sprintlnn(args ...interface{}) string {$/;" f
-startAirbrakeServer Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^func startAirbrakeServer(t *testing.T) *httptest.Server {$/;" f
-startParse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) startParse(funcs []map[string]interface{}, lex *lexer) {$/;" f
-startProfiling Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) startProfiling(options *BenchOptions) {$/;" f
-state Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type state struct {$/;" t
-stateFn Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go /^type stateFn func(*lexer) stateFn$/;" t
-statsFlag Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^var statsFlag = flag.Bool("stats", false, "show performance stats")$/;" v
-std Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go /^ std = New()$/;" v
-stopParse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) stopParse() {$/;" f
-stopProfiling Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (cmd *BenchCommand) stopProfiling() {$/;" f
-stringKind Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^ stringKind$/;" c
-stringMapRegex Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^var stringMapRegex = regexp.MustCompile("[:=]")$/;" v
-stringMapValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type stringMapValue map[string]string$/;" t
-stringValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type stringValue string$/;" t
-stringer Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func stringer(s fmt.Stringer) string {$/;" f
-sum64 Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (m *meta) sum64() uint64 {$/;" f
-tEOF Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tEOF = item{itemEOF, 0, ""}$/;" v
-tElideNewline Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tElideNewline = item{itemElideNewline, 0, "\\\\"}$/;" v
-tFor Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tFor = item{itemIdentifier, 0, "for"}$/;" v
-tLeft Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tLeft = item{itemLeftDelim, 0, "{{"}$/;" v
-tLeftDelim Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tLeftDelim = item{itemLeftDelim, 0, "$$"}$/;" v
-tLpar Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tLpar = item{itemLeftParen, 0, "("}$/;" v
-tPipe Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tPipe = item{itemPipe, 0, "|"}$/;" v
-tQuote Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tQuote = item{itemString, 0, `"abc \\n\\t\\" "`}$/;" v
-tRange Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tRange = item{itemRange, 0, "range"}$/;" v
-tRawQuote Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tRawQuote = item{itemRawString, 0, raw}$/;" v
-tRight Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tRight = item{itemRightDelim, 0, "}}"}$/;" v
-tRightDelim Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tRightDelim = item{itemRightDelim, 0, "@@"}$/;" v
-tRpar Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tRpar = item{itemRightParen, 0, ")"}$/;" v
-tSpace Godeps/_workspace/src/github.com/alecthomas/template/parse/lex_test.go /^ tSpace = item{itemSpace, 0, " "}$/;" v
-tVal Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^var tVal = &T{$/;" v
-tcpAddrValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type tcpAddrValue struct {$/;" t
-tempfile Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func tempfile() string {$/;" f
-template Godeps/_workspace/src/github.com/alecthomas/template/doc.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/helper.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^package template$/;" p
-template Godeps/_workspace/src/github.com/alecthomas/template/template.go /^package template$/;" p
-templateContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^type templateContext struct {$/;" t
-templateControl Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) templateControl() Node {$/;" f
-templateFile Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go /^type templateFile struct {$/;" t
-templateFileExecTests Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go /^var templateFileExecTests = []execTest{$/;" v
-templateParseContext Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go /^type templateParseContext struct {$/;" t
-template_test Godeps/_workspace/src/github.com/alecthomas/template/example_test.go /^package template_test$/;" p
-template_test Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go /^package template_test$/;" p
-template_test Godeps/_workspace/src/github.com/alecthomas/template/examplefunc_test.go /^package template_test$/;" p
-term Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) term() Node {$/;" f
-testAPIKey Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^ testAPIKey = "abcxyz"$/;" c
-testDB_Close_PendingTx Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func testDB_Close_PendingTx(t *testing.T, writable bool) {$/;" f
-testEnv Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^ testEnv = "development"$/;" c
-testExecute Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func testExecute(execTests []execTest, template *Template, t *testing.T) {$/;" f
-testParse Godeps/_workspace/src/github.com/alecthomas/template/parse/parse_test.go /^func testParse(doCopy bool, t *testing.T) {$/;" f
-testSimulate Godeps/_workspace/src/github.com/boltdb/bolt/simulation_test.go /^func testSimulate(t *testing.T, threadCount, parallelism int) {$/;" f
-testTemplates Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^const testTemplates = `{{define "one"}}one{{end}}{{define "two"}}two{{end}}`$/;" c
-testdata Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^type testdata []testdataitem$/;" t
-testdataitem Godeps/_workspace/src/github.com/boltdb/bolt/quick_test.go /^type testdataitem struct {$/;" t
-textFormat Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^var textFormat = "%s" \/\/ Changed to "%q" in tests for better error messages.$/;" v
-textOrAction Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) textOrAction() Node {$/;" f
-tickerTime main.go /^ tickerTime = kingpin.Flag("ticker-time", "Poller interval in secs").Default("3600s").OverrideDefaultFromEnvar("GOCAFIER_PULL_TIME").Duration()$/;" v
-timeout Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat1/main.go /^ timeout = kingpin.Flag("timeout", "Timeout waiting for ping.").Default("5s").OverrideDefaultFromEnvar("PING_TIMEOUT").Short('t').Duration()$/;" v
-timeout Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go /^ timeout = kingpin.Flag("timeout", "Set connection timeout.").Short('t').Default("5s").Duration()$/;" v
-timeout Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/ping/main.go /^ timeout = kingpin.Flag("timeout", "Timeout waiting for ping.").OverrideDefaultFromEnvar("PING_TIMEOUT").Required().Short('t').Duration()$/;" v
-tmpl Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/genrepeated/main.go /^ tmpl = `package kingpin$/;" c
-tokenize Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go /^func tokenize(args []string) *ParseContext {$/;" f
-transportOptions Godeps/_workspace/src/github.com/ddliu/go-httpclient/httpclient.go /^var transportOptions = []int {$/;" v
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (a *ActionNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BoolNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (b *BranchNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *ChainNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (c *CommandNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (d *DotNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *elseNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (e *endNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (f *FieldNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (i *IdentifierNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (l *ListNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NilNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (n *NumberNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (p *PipeNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (s *StringNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TemplateNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (t *TextNode) tree() *Tree {$/;" f
-tree Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go /^func (v *VariableNode) tree() *Tree {$/;" f
-treeTemplate Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^const treeTemplate = `$/;" c
-trigger Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^func (b *batch) trigger() {$/;" f
-trunc Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func trunc(b []byte, length int) []byte {$/;" f
-truncDuration Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func truncDuration(d time.Duration) string {$/;" f
-truth Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^func truth(a interface{}) bool {$/;" f
-trySolo Godeps/_workspace/src/github.com/boltdb/bolt/batch.go /^var trySolo = errors.New("batch function returned an error and should be re-run solo")$/;" v
-txid Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^type txid uint64$/;" t
-txid Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^type txid uint64$/;" t
-typ Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (p *page) typ() string {$/;" f
-typeOf Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func typeOf(arg interface{}) string {$/;" f
-u64tob Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func u64tob(v uint64) []byte {$/;" f
-uint64Value Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type uint64Value uint64$/;" t
-uintKind Godeps/_workspace/src/github.com/alecthomas/template/funcs.go /^ uintKind$/;" c
-uintValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type uintValue uint$/;" t
-unexpected Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) unexpected(token item, context string) {$/;" f
-unintendedMsg Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go /^ unintendedMsg = "Airbrake will not see this string"$/;" c
-units Godeps/_workspace/src/github.com/alecthomas/units/bytes.go /^package units$/;" p
-units Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go /^package units$/;" p
-units Godeps/_workspace/src/github.com/alecthomas/units/doc.go /^package units$/;" p
-units Godeps/_workspace/src/github.com/alecthomas/units/si.go /^package units$/;" p
-units Godeps/_workspace/src/github.com/alecthomas/units/util.go /^package units$/;" p
-urlListValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type urlListValue []*url.URL$/;" t
-urlValue Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go /^type urlValue struct {$/;" t
-useVar Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) useVar(pos Pos, name string) Node {$/;" f
-validate Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (m *meta) validate() error {$/;" f
-validateBatchBench Godeps/_workspace/src/github.com/boltdb/bolt/batch_benchmark_test.go /^func validateBatchBench(b *testing.B, db *TestDB) {$/;" f
-validateRequired Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) validateRequired(context *ParseContext) error {$/;" f
-validateType Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) validateType(value reflect.Value, typ reflect.Type) reflect.Value {$/;" f
-value Godeps/_workspace/src/github.com/boltdb/bolt/cmd/bolt/main.go /^func (n *leafPageElement) value() []byte {$/;" f
-value Godeps/_workspace/src/github.com/boltdb/bolt/page.go /^func (n *leafPageElement) value() []byte {$/;" f
-valueString Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func valueString(v string) string {$/;" f
-varValue Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) varValue(name string) reflect.Value {$/;" f
-variable Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^type variable struct {$/;" t
-verbose Godeps/_workspace/src/github.com/boltdb/bolt/batch_example_test.go /^const verbose = false$/;" c
-version Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^const version = 2$/;" c
-version main.go /^ version = "1.0.0"$/;" c
-vfunc Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func vfunc(V, *V) string {$/;" f
-visibleFlags Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go /^func (f *flagGroup) visibleFlags() int {$/;" f
-walk Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) walk(dot reflect.Value, node parse.Node) {$/;" f
-walkIfOrWith Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) walkIfOrWith(typ parse.NodeType, dot reflect.Value, pipe *parse.PipeNode, list, elseList *parse.ListNode) {$/;" f
-walkRange Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) walkRange(dot reflect.Value, r *parse.RangeNode) {$/;" f
-walkTemplate Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^func (s *state) walkTemplate(dot reflect.Value, t *parse.TemplateNode) {$/;" f
-warn Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func warn(v ...interface{}) { fmt.Fprintln(os.Stderr, v...) }$/;" f
-warn Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func warn(v ...interface{}) { fmt.Fprintln(os.Stderr, v...) }$/;" f
-warnf Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func warnf(msg string, v ...interface{}) { fmt.Fprintf(os.Stderr, msg+"\\n", v...) }$/;" f
-warnf Godeps/_workspace/src/github.com/boltdb/bolt/db_test.go /^func warnf(msg string, v ...interface{}) { fmt.Fprintf(os.Stderr, msg+"\\n", v...) }$/;" f
-withControl Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go /^func (t *Tree) withControl() Node {$/;" f
-write Godeps/_workspace/src/github.com/boltdb/bolt/bucket.go /^func (b *Bucket) write() []byte {$/;" f
-write Godeps/_workspace/src/github.com/boltdb/bolt/db.go /^func (m *meta) write(p *page) {$/;" f
-write Godeps/_workspace/src/github.com/boltdb/bolt/freelist.go /^func (f *freelist) write(p *page) error {$/;" f
-write Godeps/_workspace/src/github.com/boltdb/bolt/node.go /^func (n *node) write(p *page) {$/;" f
-write Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) write() error {$/;" f
-writeMeta Godeps/_workspace/src/github.com/boltdb/bolt/tx.go /^func (tx *Tx) writeMeta() error {$/;" f
-writeUsage Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go /^func (a *Application) writeUsage(context *ParseContext, err error) {$/;" f
-writerFinalizer Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go /^func writerFinalizer(writer *io.PipeWriter) {$/;" f
-writerScanner Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go /^func (logger *Logger) writerScanner(reader *io.PipeReader) {$/;" f
-yellow Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go /^ yellow = 33$/;" c
-zero Godeps/_workspace/src/github.com/alecthomas/template/exec.go /^var zero reflect.Value$/;" v
-zeroArgs Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go /^func zeroArgs() string {$/;" f