Home | History | Annotate | Download | only in base64

Lines Matching refs:ref

49 func stdRef(ref string) string {
50 return ref
54 func urlRef(ref string) string {
55 ref = strings.Replace(ref, "+", "-", -1)
56 ref = strings.Replace(ref, "/", "_", -1)
57 return ref
61 func rawRef(ref string) string {
62 return strings.TrimRight(ref, "=")
66 func rawUrlRef(ref string) string {
67 return rawRef(urlRef(ref))
73 func funnyRef(ref string) string {
74 return strings.Replace(ref, "=", "@", -1)