Lines Matching +full:- +full:j
10 * http://www.apache.org/licenses/LICENSE-2.0
33 // This type should be directly cast-able with most popular third party UUID
52 buf[8] = '-'
54 buf[13] = '-'
56 buf[18] = '-'
58 buf[23] = '-'
66 return b - '0', true
68 return b - 'a' + 10, true
70 return b - 'A' + 10, true
91 // (8-4-4-4-12/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx),
98 if len(s) != 36 || s[8] != '-' || s[13] != '-' || s[18] != '-' || s[23] != '-' {
102 for i, j := range []int{
109 u[i], ok = hexToByte(s[j], s[j+1])
124 // var NameSpaceDNSUUID = thrift.Must(thrift.ParseTuuid("6ba7b810-9dad-11d1-80b4-00c04fd430c8"))