Lines Matching +full:helper +full:- +full:string +full:- +full:parser
7 // http://www.apache.org/licenses/LICENSE-2.0
33 // This is necessary when not using Blaze/Bazel, as we don't have a solution for referencing non-Go
36 t.Helper()
47 Algorithm string `json:"algorithm"`
48 GeneratorVersion string `json:"generatorVersion"`
50 Notes map[string]string `json:"notes"`
58 Type string `json:"type"`
67 Comment string `json:"comment"`
68 Result string `json:"result"`
69 Flags []string `json:"flags"`
72 // HexBytes is a helper type for unmarshalling a byte sequence represented as a
73 // hex encoded string.
76 // UnmarshalText converts a hex encoded string into a sequence of bytes.
78 decoded, err := hex.DecodeString(string(text))
92 func PopulateSuite(suite interface{}, filename string) error { argument
101 parser := json.NewDecoder(f)
102 if err := parser.Decode(suite); err != nil {